diff --git a/Manifest.files.gz b/Manifest.files.gz index eab92e5fa852..0b82b58fccf6 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 d93abe162056..1ddaf3efd842 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/conky/conky-1.11.6-r1.ebuild b/app-admin/conky/conky-1.11.6-r1.ebuild deleted file mode 100644 index 91a172007104..000000000000 --- a/app-admin/conky/conky-1.11.6-r1.ebuild +++ /dev/null @@ -1,192 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-3 ) - -inherit cmake linux-info lua-single readme.gentoo-r1 xdg - -DESCRIPTION="An advanced, highly configurable system monitor for X" -HOMEPAGE="https://github.com/brndnmtthws/conky" -SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3 BSD LGPL-2.1 MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" -IUSE="apcupsd bundled-toluapp cmus curl doc hddtemp ical iconv imlib iostats - ipv6 irc lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax - ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype - vim-syntax weather-metar webserver wifi X xmms2" - -COMMON_DEPEND=" - X? ( - x11-libs/libX11 - x11-libs/libXdamage - x11-libs/libXinerama - x11-libs/libXfixes - x11-libs/libXext - ) - cmus? ( media-sound/cmus ) - curl? ( net-misc/curl ) - ical? ( dev-libs/libical:= ) - iconv? ( virtual/libiconv ) - imlib? ( media-libs/imlib2[X] ) - irc? ( net-libs/libircclient ) - lua-cairo? ( x11-libs/cairo[X] ) - lua-imlib? ( media-libs/imlib2[X] ) - lua-rsvg? ( gnome-base/librsvg ) - mysql? ( dev-db/mysql-connector-c ) - ncurses? ( sys-libs/ncurses:= ) - nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) - pulseaudio? ( media-sound/pulseaudio ) - rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) - systemd? ( sys-apps/systemd ) - truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) - wifi? ( net-wireless/wireless-tools ) - weather-metar? ( net-misc/curl ) - webserver? ( net-libs/libmicrohttpd ) - xmms2? ( media-sound/xmms2 ) - ${LUA_DEPS} -" -RDEPEND=" - ${COMMON_DEPEND} - apcupsd? ( sys-power/apcupsd ) - hddtemp? ( app-admin/hddtemp ) - moc? ( media-sound/moc ) - nano-syntax? ( app-editors/nano ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" -DEPEND=" - ${COMMON_DEPEND} - doc? ( app-text/docbook2X dev-libs/libxslt ) -" - -REQUIRED_USE=" - imlib? ( X ) - nvidia? ( X ) - truetype? ( X ) - lua-cairo? ( X bundled-toluapp ) - lua-imlib? ( X bundled-toluapp ) - lua-rsvg? ( X bundled-toluapp ) -" - -CONFIG_CHECK="~IPV6" - -DOCS=( README.md AUTHORS ) - -PATCHES=( - "${FILESDIR}"/${P}-fpermissive.patch -) - -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS="You can find sample configurations at ${ROOT}/usr/share/doc/${PF}. -To customize, copy to \${XDG_CONFIG_HOME}/conky/conky.conf -and edit it to your liking. - -There are pretty html docs available at the conky homepage -or in ${ROOT}/usr/share/doc/${PF}/html when built with USE=doc. - -Also see https://wiki.gentoo.org/wiki/Conky/HOWTO" - -pkg_setup() { - use ipv6 && linux-info_pkg_setup - - lua-single_pkg_setup -} - -src_prepare() { - cmake_src_prepare - - xdg_environment_reset - - sed -i -e "s|find_program(APP_MAN man)|set(APP_MAN $(which man) CACHE FILEPATH MAN_BINARY)|" \ - cmake/ConkyPlatformChecks.cmake || die -} - -src_configure() { - local mycmakeargs - - if use X; then - mycmakeargs=( - -DBUILD_ARGB=ON - -DBUILD_X11=ON - -DBUILD_XDAMAGE=ON - -DBUILD_XDBE=ON - -DBUILD_XINERAMA=ON - -DBUILD_XSHAPE=ON - -DOWN_WINDOW=ON - ) - else - mycmakeargs=( - -DBUILD_X11=OFF - ) - fi - - mycmakeargs+=( - -DBUILD_APCUPSD=$(usex apcupsd) - -DBUILD_AUDACIOUS=OFF - -DBUILD_BUILTIN_CONFIG=ON - -DBUILD_CMUS=$(usex cmus) - -DBUILD_CURL=$(usex curl) - -DBUILD_DOCS=$(usex doc) - -DBUILD_HDDTEMP=$(usex hddtemp) - -DBUILD_HTTP=$(usex webserver) - -DBUILD_I18N=ON - -DBUILD_IBM=$(usex thinkpad) - -DBUILD_ICAL=$(usex ical) - -DBUILD_ICONV=$(usex iconv) - -DBUILD_IMLIB2=$(usex imlib) - -DBUILD_IOSTATS=$(usex iostats) - -DBUILD_IPV6=$(usex ipv6) - -DBUILD_IRC=$(usex irc) - -DBUILD_JOURNAL=$(usex systemd) - -DBUILD_LUA_CAIRO=$(usex lua-cairo) - -DBUILD_LUA_IMLIB2=$(usex lua-imlib) - -DBUILD_LUA_RSVG=$(usex lua-rsvg) - -DBUILD_MATH=$(usex math) - -DBUILD_MOC=$(usex moc) - -DBUILD_MPD=$(usex mpd) - -DBUILD_MYSQL=$(usex mysql) - -DBUILD_NCURSES=$(usex ncurses) - -DBUILD_NVIDIA=$(usex nvidia) - -DBUILD_OLD_CONFIG=ON - -DBUILD_PORT_MONITORS=$(usex portmon) - -DBUILD_PULSEAUDIO=$(usex pulseaudio) - -DBUILD_RSS=$(usex rss) - -DBUILD_WEATHER_METAR=$(usex weather-metar) - -DBUILD_WLAN=$(usex wifi) - -DBUILD_XFT=$(usex truetype) - -DBUILD_XMMS2=$(usex xmms2) - -DDOC_PATH=/usr/share/doc/${PF} - -DMAINTAINER_MODE=OFF - -DRELEASE=ON - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins "${S}"/extras/vim/ftdetect/conkyrc.vim - - insinto /usr/share/vim/vimfiles/syntax - doins "${S}"/extras/vim/syntax/conkyrc.vim - fi - - if use nano-syntax; then - insinto /usr/share/nano/ - doins "${S}"/extras/nano/conky.nanorc - fi - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog - - xdg_pkg_postinst -} diff --git a/app-admin/graylog/Manifest b/app-admin/graylog/Manifest index d60b8532ae70..0020ac241a18 100644 --- a/app-admin/graylog/Manifest +++ b/app-admin/graylog/Manifest @@ -1 +1,2 @@ DIST graylog-3.3.8.tgz 129314297 BLAKE2B 21eaf45b396b11ad5c42efad790390b643505ac7ecc24332813784443ba3b5aeed911fae07beb270f598341d577469f9a5fdbe92101e64939e6646884b7f7fc8 SHA512 feda3dafc3af249e54e8240ea20a8fd4e96c80901b45842cf8ec4ee7a5b33646a391a19a23a06b0e5fb4bf29c0d1c8d7cb87f2ee169ef17ac5b38fbd00682ead +DIST graylog-4.0.0_rc2.tar.gz 163146127 BLAKE2B a2b80110927ddad94e17ee20aa620564dd71b060a1a6332c6491e82b54c962971f6626f6161a479e7d3d7d2483b6d66b0fbf0d4c4534b12a721fb543cdc8977d SHA512 48260976c2167ebf36141df7d0cf219c1281dbeb7f5033d3976865c1d360b179519466696d8690f9d9c1a377888774db9775eec6a05857159fad7689d8e81d4f diff --git a/app-admin/graylog/graylog-4.0.0_rc2.ebuild b/app-admin/graylog/graylog-4.0.0_rc2.ebuild new file mode 100644 index 000000000000..27a8a1c01f2a --- /dev/null +++ b/app-admin/graylog/graylog-4.0.0_rc2.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PV="4.0.0-rc.2" + +DESCRIPTION="Free and open source log management" +HOMEPAGE="https://www.graylog.org" +SRC_URI="https://downloads.graylog.org/releases/graylog/graylog-${MY_PV}.tgz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +#KEYWORDS="~amd64 ~ppc64 ~x86" +RESTRICT="strip" + +RDEPEND="!app-admin/graylog2 + acct-group/graylog + acct-user/graylog + >=virtual/jdk-1.8:*" + +DOCS=( + COPYING README.markdown UPGRADING.rst +) + +GRAYLOG_DATA_DIR="/var/lib/graylog" +GRAYLOG_INSTALL_DIR="/usr/share/graylog" +QA_PREBUILT="${GRAYLOG_INSTALL_DIR}/lib/sigar/libsigar*" + +S="${WORKDIR}/graylog-${MY_PV}" + +src_prepare() { + default + + # Stick to architecture of build host + if ! use amd64; then + rm -r lib/sigar/libsigar-amd64-*.so || die "Failed in removing AMD64 support libraries" + fi + if ! use ppc64; then + rm -r lib/sigar/libsigar-ppc64-*.so || die "Failed in removing PPC64 support libraries" + fi + if ! use x86; then + rm -r lib/sigar/libsigar-x86-*.so || die "Failed in removing X86 support libraries" + fi + # Currently unsupported platforms + # QA warning galore but testing/patches welcome + rm lib/sigar/libsigar-*freebsd*so \ + lib/sigar/libsigar-*solaris*so \ + lib/sigar/libsigar-*hpux*.sl \ + lib/sigar/libsigar-*macosx*.dylib \ + lib/sigar/libsigar-ia64-*.so \ + lib/sigar/libsigar-ppc-*.so \ + lib/sigar/libsigar-s390x*.so \ + lib/sigar/*winnt* || die "Failed in removing unsupported platform libraries" + + # gentoo specific paths + sed -i "s@\(node_id_file = \).*@\1${GRAYLOG_DATA_DIR}/node-id@g; \ + s@\(message_journal_dir = \).*@\1${GRAYLOG_DATA_DIR}/data/journal@g;" \ + graylog.conf.example || die +} + +src_install() { + default + + insinto /etc/graylog + doins graylog.conf.example + + insinto "${GRAYLOG_INSTALL_DIR}" + doins graylog.jar + doins -r lib plugin + + keepdir "${GRAYLOG_DATA_DIR}" + + newconfd "${FILESDIR}/graylog.confd" graylog + newinitd "${FILESDIR}/graylog.initd" graylog +} + +pkg_postinst() { + ewarn "Graylog does not depend on need.net any more (#439092)." + ewarn + ewarn "Please configure rc_need according to your binding address in:" + ewarn "/etc/conf.d/graylog" +} diff --git a/app-admin/logstash-bin/logstash-bin-7.10.0.ebuild b/app-admin/logstash-bin/logstash-bin-7.10.0-r1.ebuild similarity index 78% rename from app-admin/logstash-bin/logstash-bin-7.10.0.ebuild rename to app-admin/logstash-bin/logstash-bin-7.10.0-r1.ebuild index e016d18660d0..2003a547d375 100644 --- a/app-admin/logstash-bin/logstash-bin-7.10.0.ebuild +++ b/app-admin/logstash-bin/logstash-bin-7.10.0-r1.ebuild @@ -31,17 +31,16 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default - rm vendor/jruby/lib/jni/aarch64-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/arm-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/i386-SunOS/libjffi-1.2.so \ - vendor/jruby/lib/jni/mips64el-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/ppc64-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/ppc64le-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/sparcv9-Linux/libjffi-1.2.so \ - vendor/jruby/lib/jni/sparcv9-SunOS/libjffi-1.2.so \ - vendor/jruby/lib/jni/x86_64-DragonFlyBSD/libjffi-1.2.so \ - vendor/jruby/lib/jni/x86_64-FreeBSD/libjffi-1.2.so \ - vendor/jruby/lib/jni/x86_64-SunOS/libjffi-1.2.so || die + local d + for d in aarch64-Linux arm-Linux Darwin i386-Linux i386-SunOS \ + i386-Windows mips64el-Linux ppc64-AIX ppc64le-Linux ppc64-Linux \ + ppc-AIX sparcv9-Linux sparcv9-SunOS x86_64-DragonFlyBSD \ + x86_64-FreeBSD x86_64-OpenBSD x86_64-SunOS x86_64-Windows; do + rm -r vendor/jruby/lib/jni/$d || die + done + + # remove bundled java + rm -r jdk || die } src_install() { diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest index e722769a3ce1..2ac160e40881 100644 --- a/app-admin/salt/Manifest +++ b/app-admin/salt/Manifest @@ -1,6 +1,6 @@ DIST salt-2019.2.7.tar.gz 14576515 BLAKE2B 4b2476c874a806de8664abd7852d5f856fc1946cc021d3ec8d206f69ec3cd809fe156d4d916d00304c36aad1dfab3a60309eb87d21ce7bb9afc7e8ea77ac23aa SHA512 e9a0d1ada0172239a31c6a8a628e71367aba072c06fe5420f4b864b9c67da89edd03f95abd46fd9ae414c2262b4e7e5c7f53c606f9f3f58e4c84129f2ed43c9e DIST salt-3000.2-py38-misc.patch.gz 6250 BLAKE2B 68fff80a042e6bf208ea2d9692da7a7b1e29572f1ec3c850c14743bbf2821d231f933ec4e6d6eaad12acee0b7666888a37a72872b2b082c92d8db9de988fbbec SHA512 6d4a66323a423e630f7cc73b566ed96c452c8fc3d72c25a2dd86033c4774c1c8e8b8701e1d4ee92994d4148c398d704f419023e26d8b40c8fdd63f9d79d9d52f -DIST salt-3000.2.tar.gz 15231513 BLAKE2B 2090d0f52f953a42f1685ad190750e9c76ad6e862a3272444fef063a7605f69a6c542f04165a41fb9cdaa126a878cc133d4857faa70edc5eac4bf49bdde937ab SHA512 88e8876ed8cd18e942c2194686cda68f40fa49e69e317ca488bf58e095bcf6cdf8771d93eba7960038941cc5863e13a4eea4dad5256c12da7cd8288a2c61f59d DIST salt-3000.5.tar.gz 15229450 BLAKE2B 135e9b9dcc461ac898231ce46e6a1359e6d60a43822320950bc0b83057f768dadf55320dd73df72d5bc917f324eef4661e6f75d8eb8e84aef958bd2df8924cfc SHA512 2579f65c24d22d77132057bd8cf37040d7d149624745dd68b4c44318be786580dcc34bf563f90d7de9ef5b726b2453bef4d8639bc8fbd9c5e691500520335317 -DIST salt-3001.2.tar.gz 14549535 BLAKE2B 1a69d3af0b9522943b226006b7a48b51b3de5f638aa0afe3aef12ddafd39fe0c30fc883922b2b05e789a83f07e521e4eb8dda5f8671ad0cafd1caf409f5a7f20 SHA512 5b05ed333f621965b4e94c0050118c037cf17ed142bb11c7985bf2a693be4cbcee41d6d43cb8c8ab043804f00b4332492ac03e8ca79c8de545ab8b7df7102558 +DIST salt-3001.3.tar.gz 14553356 BLAKE2B 50d073d39826fb15cb424df3e55c2308dd18391c13a5c4a3fb01c1e1ecd8636dd45fdf34b1937563d069e51141fc40f48f77eaec6b1e1d6f9802418e611b20b1 SHA512 a3c0f019fbe1f1edac11af291667f06597dbf4badeb0026107dcab4937efcb306ca6d3ba20195ff9fea5ee7a995db1c3a79236de3e990fc809c305e7f05e1c9d DIST salt-3002.1.tar.gz 15753988 BLAKE2B d084dc650b8bc92b4ebdb145a41a39bfbd034064fad65e364260eca84d7105fb645ad8f6cea2cc1b6affb1abf21a9858ab6fb526eaf4ecd8f76c70d1384c7edc SHA512 8fc02d0b47dad60f96eb4442b0e8a31f04d796f12b845c8142135593af4c7ea9c2d9335a3f520f8858951f87b0e8cc6be70d383fde2d93a6d529e077bcc87114 +DIST salt-3002.2.tar.gz 15765855 BLAKE2B b26895ababc8551e01baa806c5a0e41dab9a379e47d2289b5c3c529ef762c69631d7ed8b32339ec66c3929c5883782131eb56d1bfbcc743829c4f0199a900ca1 SHA512 0f617a07475347b1bb0d1c6059de541e102103182820dfd6f64f4c281d660e68358eb1ab7171a637e16cef9fea2517c8356df9c449f9bbc92538aa86c316f652 diff --git a/app-admin/salt/salt-3001.2.ebuild b/app-admin/salt/salt-3001.3.ebuild similarity index 100% rename from app-admin/salt/salt-3001.2.ebuild rename to app-admin/salt/salt-3001.3.ebuild diff --git a/app-admin/salt/salt-3000.2-r4.ebuild b/app-admin/salt/salt-3002.2.ebuild similarity index 81% rename from app-admin/salt/salt-3000.2-r4.ebuild rename to app-admin/salt/salt-3002.2.ebuild index 648c82a92c41..59838e3e5792 100644 --- a/app-admin/salt/salt-3000.2-r4.ebuild +++ b/app-admin/salt/salt-3002.2.ebuild @@ -2,8 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +PYTHON_COMPAT=( python3_{7..8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit systemd distutils-r1 DESCRIPTION="Salt is a remote execution and configuration manager" @@ -16,9 +16,8 @@ if [[ ${PV} == 9999* ]]; then EGIT_BRANCH="develop" SRC_URI="" else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz - https://dev.gentoo.org/~chutzpah/dist/salt/salt-3000.2-py38-misc.patch.gz" - KEYWORDS="amd64 x86" + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" fi LICENSE="Apache-2.0" @@ -29,16 +28,18 @@ IUSE="cheetah cherrypy ldap libcloud libvirt genshi gnupg keyring mako RDEPEND=" sys-apps/pciutils - dev-python/distro[${PYTHON_USEDEP}] + >=dev-python/distro-1.5[${PYTHON_USEDEP}] dev-python/jinja[${PYTHON_USEDEP}] dev-python/libnacl[${PYTHON_USEDEP}] - >=dev-python/msgpack-0.5[${PYTHON_USEDEP}] - =dev-python/msgpack-1.0.0[${PYTHON_USEDEP}] + >=dev-python/pycryptodome-3.9.8[${PYTHON_USEDEP}] + dev-python/pycryptodomex[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/markupsafe[${PYTHON_USEDEP}] >=dev-python/requests-1.0.0[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + dev-python/watchdog[${PYTHON_USEDEP}] libcloud? ( >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] ) mako? ( dev-python/mako[${PYTHON_USEDEP}] ) ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] ) @@ -84,12 +85,10 @@ BDEPEND=" dev-python/psutil[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}] - dev-python/pytest-helpers-namespace[${PYTHON_USEDEP}] - >=dev-python/pytest-salt-2018.12.8[${PYTHON_USEDEP}] + >=dev-python/pytest-salt-factories-0.93.0[${PYTHON_USEDEP}] dev-python/pytest-tempdir[${PYTHON_USEDEP}] - >=dev-python/SaltTesting-2016.5.11[${PYTHON_USEDEP}] - dev-python/virtualenv[${PYTHON_USEDEP}] - !x86? ( >=dev-python/boto3-1.2.1[${PYTHON_USEDEP}] ) + >=dev-python/virtualenv-20.0.20[${PYTHON_USEDEP}] + !x86? ( >=dev-python/boto3-1.3.15[${PYTHON_USEDEP}] ) )" DOCS=( README.rst AUTHORS ) @@ -99,27 +98,17 @@ REQUIRED_USE="|| ( raet zeromq ) RESTRICT="!test? ( test ) x86? ( test )" PATCHES=( - "${FILESDIR}/salt-2017.7.0-dont-realpath-tmpdir.patch" "${FILESDIR}/salt-2019.2.0-skip-tests-that-oom-machine.patch" - "${FILESDIR}/salt-3000.1-tests.patch" - "${FILESDIR}/salt-3000.2-tests.patch" - - # https://github.com/saltstack/salt/pull/55410 - "${FILESDIR}/salt-3000.2-py38.patch" - - # https://github.com/saltstack/salt/pull/55900 - "${FILESDIR}/salt-3000.2-py38-abc.patch" - - # misc py38 fixups - "${WORKDIR}/salt-3000.2-py38-misc.patch" - "${FILESDIR}/salt-3000.2-py38-logwarn.patch" + "${FILESDIR}/salt-3002-dont-realpath-on-tmpdir.patch" + "${FILESDIR}/salt-3002-tests.patch" ) -python_prepare() { +python_prepare_all() { # remove tests with external dependencies that may not be available rm tests/unit/{test_zypp_plugins.py,utils/test_extend.py} || die rm tests/unit/modules/test_{file,boto_{vpc,secgroup,elb}}.py || die rm tests/unit/states/test_boto_vpc.py || die + rm tests/support/gitfs.py tests/unit/runners/test_git_pillar.py || die # tests that require network access rm tests/unit/{states,modules}/test_zcbuildout.py || die @@ -127,13 +116,14 @@ python_prepare() { # make sure pkg_resources doesn't bomb because pycrypto isn't installed find . -name '*.txt' -print0 | xargs -0 sed -e '/pycrypto>/ d' -i || die + distutils-r1_python_prepare_all +} + +python_prepare() { einfo "Fixing collections.abc warnings for ${EPYTHON}" local abc abc="$("${EPYTHON}" -c 'import collections.abc; print("|".join((c for c in dir(collections.abc) if not c.startswith("_"))))')" || die find -name '*.py' -type f -print0 | xargs -0 sed -r -e "s:collections\\.(${abc}):collections.abc.\\1:g" -i || die - - # allow the use of the renamed msgpack - sed -i '/^msgpack/d' requirements/base.txt || die } python_install_all() { diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index ff9484f778e3..e8b3f5eb9d28 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/torrentzip/files/torrentzip-0.9-autoconf-quote.patch b/app-arch/torrentzip/files/torrentzip-0.9-autoconf-quote.patch new file mode 100644 index 000000000000..f1f15ced173e --- /dev/null +++ b/app-arch/torrentzip/files/torrentzip-0.9-autoconf-quote.patch @@ -0,0 +1,8 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -1,4 +1,4 @@ +-AC_INIT([TorrentZip], [0.0], [StatMan, shindakun, Ultrasubmarine, r3nh03k ], [trrntzip]) ++AC_INIT([TorrentZip], [0.9], [[StatMan, shindakun, Ultrasubmarine, r3nh03k ]], [trrntzip]) + + AM_INIT_AUTOMAKE + AM_CONFIG_HEADER(config.h) diff --git a/app-arch/torrentzip/torrentzip-0.9-r1.ebuild b/app-arch/torrentzip/torrentzip-0.9-r1.ebuild new file mode 100644 index 000000000000..522a52f4749c --- /dev/null +++ b/app-arch/torrentzip/torrentzip-0.9-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Create identical zip archives over multiple systems" +HOMEPAGE="https://sourceforge.net/projects/trrntzip" +SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="sys-libs/zlib" +DEPEND="${RDEPEND}" + +DOCS=(README AUTHORS) + +PATCHES=("${FILESDIR}/${P}-autoconf-quote.patch") + +src_prepare() { + default + export CPPFLAGS+=" -DOF\\(args\\)=args" + eautoreconf +} diff --git a/app-benchmarks/Manifest.gz b/app-benchmarks/Manifest.gz index a32eec0939e4..e622d03f3430 100644 Binary files a/app-benchmarks/Manifest.gz and b/app-benchmarks/Manifest.gz differ diff --git a/app-benchmarks/wrk/files/wrk-4.1.0-r100-makefile.patch b/app-benchmarks/wrk/files/wrk-4.1.0-r100-makefile.patch new file mode 100644 index 000000000000..d3c838d08003 --- /dev/null +++ b/app-benchmarks/wrk/files/wrk-4.1.0-r100-makefile.patch @@ -0,0 +1,64 @@ +--- a/Makefile ++++ b/Makefile +@@ -1,5 +1,5 @@ +-CFLAGS += -std=c99 -Wall -O2 -D_REENTRANT +-LIBS := -lpthread -lm -lssl -lcrypto ++CFLAGS += -std=c99 -Wall -D_REENTRANT ++LIBS := -lm -lssl -lcrypto -lpthread + + TARGET := $(shell uname -s | tr '[A-Z]' '[a-z]' 2>/dev/null || echo unknown) + +@@ -24,15 +24,13 @@ + + ODIR := obj + OBJ := $(patsubst %.c,$(ODIR)/%.o,$(SRC)) $(ODIR)/bytecode.o $(ODIR)/version.o +-LIBS := -lluajit-5.1 $(LIBS) ++LIBS := $(LUA_LIBS) $(LIBS) + + DEPS := + CFLAGS += -I$(ODIR)/include +-LDFLAGS += -L$(ODIR)/lib + + ifneq ($(WITH_LUAJIT),) +- CFLAGS += -I$(WITH_LUAJIT)/include +- LDFLAGS += -L$(WITH_LUAJIT)/lib ++ CFLAGS += $(WITH_LUAJIT) + else + CFLAGS += -I$(ODIR)/include/luajit-2.1 + DEPS += $(ODIR)/lib/libluajit-5.1.a +@@ -40,7 +38,6 @@ + + ifneq ($(WITH_OPENSSL),) + CFLAGS += -I$(WITH_OPENSSL)/include +- LDFLAGS += -L$(WITH_OPENSSL)/lib + else + DEPS += $(ODIR)/lib/libssl.a + endif +@@ -51,15 +48,14 @@ + $(RM) -rf $(BIN) obj/* + + $(BIN): $(OBJ) +- @echo LINK $(BIN) +- @$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) ++ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + + $(OBJ): config.h Makefile $(DEPS) | $(ODIR) + + $(ODIR): + @mkdir -p $@ + +-$(ODIR)/bytecode.o: src/wrk.lua ++$(ODIR)/bytecode.c: src/wrk.lua + @echo LUAJIT $< + @$(SHELL) -c 'PATH=obj/bin:$(PATH) luajit -b $(CURDIR)/$< $(CURDIR)/$@' + +@@ -67,8 +63,7 @@ + @echo 'const char *VERSION="$(VER)";' | $(CC) -xc -c -o $@ - + + $(ODIR)/%.o : %.c +- @echo CC $< +- @$(CC) $(CFLAGS) -c -o $@ $< ++ $(CC) $(CFLAGS) -c -o $@ $< + + # Dependencies + diff --git a/app-benchmarks/wrk/wrk-4.1.0-r100.ebuild b/app-benchmarks/wrk/wrk-4.1.0-r100.ebuild new file mode 100644 index 000000000000..0d5fbb0e91f7 --- /dev/null +++ b/app-benchmarks/wrk/wrk-4.1.0-r100.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-1 luajit ) + +inherit lua-single + +DESCRIPTION="A HTTP benchmarking tool" +HOMEPAGE="https://www.github.com/wg/wrk" +SRC_URI="https://www.github.com/wg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="Apache-2.0 BSD MIT" +SLOT="0" +IUSE="libressl" +REQUIRED_USE="${LUA_REQUIRED_USE}" + +RDEPEND=" + libressl? ( dev-libs/libressl:0= ) + !libressl? ( dev-libs/openssl:0= ) + ${LUA_DEPS} +" + +DEPEND="${RDEPEND}" + +DOCS=( "CHANGES" "NOTICE" "README.md" "SCRIPTING" ) + +PATCHES=( "${FILESDIR}/${P}-r100-makefile.patch" ) + +src_compile() { + myemakeargs=( + CC="$(tc-getCC)" + LUA_LIBS="$(lua_get_LIBS)" + VER="${PV}" + WITH_LUAJIT="$(lua_get_CFLAGS)" + WITH_OPENSSL="/usr" + ) + + emake "${myemakeargs[@]}" +} + +src_install() { + dobin wrk + + insinto /usr/share/wrk + doins -r scripts + + einstalldocs +} diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 7735c464c4b8..a6ebfb0a9c77 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/mit-krb5/Manifest b/app-crypt/mit-krb5/Manifest index dfcf9ea639c5..01cfe46566a3 100644 --- a/app-crypt/mit-krb5/Manifest +++ b/app-crypt/mit-krb5/Manifest @@ -1 +1,2 @@ DIST krb5-1.18.2.tar.gz 8713927 BLAKE2B f0eb34e67adcb86f347c59ec6ef74970a57530cc56336a84909f852cd6135079ea89828e77c906a272f54e0faf6a4a0497f2b648446eb9d048d1c51e4ec513af SHA512 7cbb1b28e677fea3e0794e93951f3caaa2c49bb1175dd187951e72a466cc69d96c3b833d838000fe911c1a437d96a558e550f27c53a8b332fb9dfc7cbb7ec44c +DIST krb5-1.18.3.tar.gz 8715312 BLAKE2B 4f6ad4a529e7578e83d82b43c2cada33bce1dca5081ec826ee06a713f82520b783f72ec56d2ce289e10d1ddcfaa079491e43f21c035b214d244bb80e6b2a1c9f SHA512 cf0bf6cf8f622fa085954e6da998d952cf64dc7ccc319972ed81ea0542089cabf2d0e8243df84da01ad6f40584768ca2f02d108630c6741fa7b3d7d98c887c01 diff --git a/app-crypt/mit-krb5/mit-krb5-1.18.2-r1.ebuild b/app-crypt/mit-krb5/mit-krb5-1.18.3.ebuild similarity index 97% rename from app-crypt/mit-krb5/mit-krb5-1.18.2-r1.ebuild rename to app-crypt/mit-krb5/mit-krb5-1.18.3.ebuild index 626da606a476..61ce1944b46e 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.18.2-r1.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.18.3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7,8,9} ) inherit autotools flag-o-matic multilib-minimal python-any-r1 systemd toolchain-funcs MY_P="${P/mit-}" @@ -14,7 +14,7 @@ SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz" LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 || ( BSD-2 GPL-2+ )" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="cpu_flags_x86_aes doc +keyutils libressl lmdb nls openldap +pkinit selinux +threads test xinetd" # Test suite requires network access diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz index 49730591c934..d3afc0f243db 100644 Binary files a/app-doc/Manifest.gz and b/app-doc/Manifest.gz differ diff --git a/app-doc/geant-docs/Manifest b/app-doc/geant-docs/Manifest index b88950b0fee5..d3ade9741fc6 100644 --- a/app-doc/geant-docs/Manifest +++ b/app-doc/geant-docs/Manifest @@ -1,18 +1,14 @@ -DIST BookFAQ-4.10.5_p2.pdf 183943 BLAKE2B a66e170d52d2b06e20d0521d45ae5e0fb2113db8b4fadcc17706328430a44dff0406eb781c95cd14cf84baea877f05dc8bf7276bd5d9bdeca03c4edee04ef65a SHA512 2273ef07e42a86fee916bca385f9fe1f850d263b343629392991c3bc34da8fb5c2e5490707f34dcdb2d138487ec15e2f01254dde545a49a98fa491618d66234a DIST BookFAQ-4.10.6.pdf 183227 BLAKE2B 50065fea13a2f5fed0e0de52b316968da05ebaf7fc8704fd9860b07ac83af9423ff2937a5b134a987b32dfec108b86548e4b0e0bcaddb1608850f336dc38ba7b SHA512 99a80740dd996d0a5f6ad198d82b9cbf991dac13096f4220530a9e87103791b65a43c887797efb261e2e461a0a89e652f18665095a661e68d1bbd763d8385d6d -DIST BookForAppliDev-4.10.05.pdf 3724808 BLAKE2B 7e50455cd3c49d1cf9bc2d60626af208f09000b20213d22d57c96c6d109f82f3a2e05fb55b798d5676cf092da74f1a8a6c52eb081ce7badbb8cb41118b4181d8 SHA512 32a4c1e5b93a79696e579d09d5c9c1e2123bf3f7fc99b2b96a0feb6c6b141d47d3241b24dabcb7725a2966d8d293765c7b8a03ba866021c4474ecb67f7719873 -DIST BookForApplicationDevelopers-4.10.5_p2.pdf 3724808 BLAKE2B 7e50455cd3c49d1cf9bc2d60626af208f09000b20213d22d57c96c6d109f82f3a2e05fb55b798d5676cf092da74f1a8a6c52eb081ce7badbb8cb41118b4181d8 SHA512 32a4c1e5b93a79696e579d09d5c9c1e2123bf3f7fc99b2b96a0feb6c6b141d47d3241b24dabcb7725a2966d8d293765c7b8a03ba866021c4474ecb67f7719873 +DIST BookFAQ-4.10.6c.pdf 183227 BLAKE2B 50065fea13a2f5fed0e0de52b316968da05ebaf7fc8704fd9860b07ac83af9423ff2937a5b134a987b32dfec108b86548e4b0e0bcaddb1608850f336dc38ba7b SHA512 99a80740dd996d0a5f6ad198d82b9cbf991dac13096f4220530a9e87103791b65a43c887797efb261e2e461a0a89e652f18665095a661e68d1bbd763d8385d6d DIST BookForApplicationDevelopers-4.10.6.pdf 3731281 BLAKE2B 40a7ba97dbde79bbdfcf800922bad6e8678818fcb49d175a1f8514dff1c893036fddc9f5a04710961a9612fa7d5ce9e422e5bf12d025f665cc60c29af4094b23 SHA512 1b78eb945bd8819daa0d218d069e9a799736ce8e8added481038e4c61619f533491b5d1119791e0adefb5c5bf0eedcc36435b23120ea3276977c459d20e1ee3c -DIST BookForToolDev-4.10.05.pdf 7380134 BLAKE2B c75ea70339eaf3a57b6baf2070eaff3ce0d91668f8201b380442b1bee00da5de22694a9a35996b1b2ced17a17f07a8498a95c2364711dfe994ac81352dbb7fd3 SHA512 7c716248ee3e72ca7159fd7913fdd8f3fa2428dc3d2b4c2082e324c93405d4d666a55eed30df22e058a0c68c25abd72c7bf24d1fc781e63a20708f43101c1973 -DIST BookForToolkitDevelopers-4.10.5_p2.pdf 7380134 BLAKE2B c75ea70339eaf3a57b6baf2070eaff3ce0d91668f8201b380442b1bee00da5de22694a9a35996b1b2ced17a17f07a8498a95c2364711dfe994ac81352dbb7fd3 SHA512 7c716248ee3e72ca7159fd7913fdd8f3fa2428dc3d2b4c2082e324c93405d4d666a55eed30df22e058a0c68c25abd72c7bf24d1fc781e63a20708f43101c1973 +DIST BookForApplicationDevelopers-4.10.6c.pdf 3731281 BLAKE2B 40a7ba97dbde79bbdfcf800922bad6e8678818fcb49d175a1f8514dff1c893036fddc9f5a04710961a9612fa7d5ce9e422e5bf12d025f665cc60c29af4094b23 SHA512 1b78eb945bd8819daa0d218d069e9a799736ce8e8added481038e4c61619f533491b5d1119791e0adefb5c5bf0eedcc36435b23120ea3276977c459d20e1ee3c DIST BookForToolkitDevelopers-4.10.6.pdf 7331646 BLAKE2B f5ef48bf09284e1207dbfd9513c096dba0595dd357caf45f52aa164206fb0c24935844b3b45f95d606339756c0a9bd558965b78de7cb62abc5bfd74a2b01bfbd SHA512 e108577c2d3dba45422fd5523b2a6fc222457e0cae76e34ebb2d1f4692b4ff9714a8a9f1ae95307aaae528b86373a844821a4a073733185ee56a3df94ce6e24a -DIST BookInstalGuide-4.10.05.pdf 329532 BLAKE2B e367ae17b11105a5324899e6fc1e4117c4586e4d617cf3aa8c97ebe2820ee9ee339a30f96174b41b14344d30dde6a84ca9639901facec5e85526349cf3623328 SHA512 cf60fcb34f245605ffea364c30cccd69e756e53801c23c51e01daa1f02da5fbda319210e4bf9154786b423248d3a579abd403f0c2ff9911ae9d3b7d91d314d26 -DIST Geant4InstallationGuide-4.10.5_p2.pdf 329532 BLAKE2B e367ae17b11105a5324899e6fc1e4117c4586e4d617cf3aa8c97ebe2820ee9ee339a30f96174b41b14344d30dde6a84ca9639901facec5e85526349cf3623328 SHA512 cf60fcb34f245605ffea364c30cccd69e756e53801c23c51e01daa1f02da5fbda319210e4bf9154786b423248d3a579abd403f0c2ff9911ae9d3b7d91d314d26 +DIST BookForToolkitDevelopers-4.10.6c.pdf 7331646 BLAKE2B f5ef48bf09284e1207dbfd9513c096dba0595dd357caf45f52aa164206fb0c24935844b3b45f95d606339756c0a9bd558965b78de7cb62abc5bfd74a2b01bfbd SHA512 e108577c2d3dba45422fd5523b2a6fc222457e0cae76e34ebb2d1f4692b4ff9714a8a9f1ae95307aaae528b86373a844821a4a073733185ee56a3df94ce6e24a DIST Geant4InstallationGuide-4.10.6.pdf 327501 BLAKE2B 9379ce8243dcdc08f764f7217b86d1dd414c649cfc163702a16e883774be9ea2242b8f326672be0088dd180de727c95539227d8d17002f0bf79e74ecf5a5955c SHA512 3c480f493d093d22c6cf4378ddcebd7d192684a4202597fe04640e695cecc7ec36fb403311eae8a59fd88a5136d5734fadf03174b3391cdc06744a7b91834caa -DIST IntroductionToGeant4-4.10.5_p2.pdf 143798 BLAKE2B fa8d4e3899ca6dc7d0db0cd6cca0ed765ec6dc4b3ef96f9d0145b602ef38ed63fd888ac06047356432616f367fe8c8df9c71f48637d7bcce7defe8a8744ab2e0 SHA512 9249d2d5555093e71b5b1fdd199477cb246d574692a8f02338c762c71aa1f9a143840cbc9539d6f45cba492b3977ccc11cc6a632cf50b7e42aa693d6efaf921a +DIST Geant4InstallationGuide-4.10.6c.pdf 327501 BLAKE2B 9379ce8243dcdc08f764f7217b86d1dd414c649cfc163702a16e883774be9ea2242b8f326672be0088dd180de727c95539227d8d17002f0bf79e74ecf5a5955c SHA512 3c480f493d093d22c6cf4378ddcebd7d192684a4202597fe04640e695cecc7ec36fb403311eae8a59fd88a5136d5734fadf03174b3391cdc06744a7b91834caa DIST IntroductionToGeant4-4.10.6.pdf 142963 BLAKE2B 69b3594fbe888c4d00cf41f27a20a4127df970d4b58da68ab921245b7a888f3d3e439c6bc2fd2b32b7720aef6e867159ea1dcc22a66f4fb91c78c7a8c60ff255 SHA512 ef04dfc8ef49f05d3eaeb625fa61d74c6b59dd1b3504d63ddf6a0c80dd547ca03f5ce0cd28fdd7e9f1638bb91ce7dbea059cc5ae26ed776d78767cddf8b237be -DIST PhysicsListGuide-4.10.5_p2.pdf 345493 BLAKE2B d2eb008b0e3ee754e0339eda24649e99c41a01e7f2ce41a44fd518d7a17c1d15b484c803a14692c28ebd4c162aa6463548f38088c4549dc1657b912c856d37a9 SHA512 fe94a355f49b61fcfd12948bbdad834f284f0086151cb8d097efebd4dd34c4cd84641f9b77d440e9d658d1fb0d00d4e512d452ae99c298a197df6ea5e468b678 +DIST IntroductionToGeant4-4.10.6c.pdf 142963 BLAKE2B 69b3594fbe888c4d00cf41f27a20a4127df970d4b58da68ab921245b7a888f3d3e439c6bc2fd2b32b7720aef6e867159ea1dcc22a66f4fb91c78c7a8c60ff255 SHA512 ef04dfc8ef49f05d3eaeb625fa61d74c6b59dd1b3504d63ddf6a0c80dd547ca03f5ce0cd28fdd7e9f1638bb91ce7dbea059cc5ae26ed776d78767cddf8b237be DIST PhysicsListGuide-4.10.6.pdf 343740 BLAKE2B f53d7e06692af87aeee32a43406ff8388bc491e3cdfb37c41106e6d0848433ab3ab8c12da2160dc4a89593998f40d3447a026e1b294e989c902352f01e941d68 SHA512 58ffc1ed365f14cd03dce76ce98a6ef54d52bb4b4fa5d6906e64cbb8e81045e2ed980815760d5a25b95883c01ec081bfc8a21def2b43f9b61964cb50a79b5bfd -DIST PhysicsReferenceManual-4.10.05.pdf 19527078 BLAKE2B 1ac3dde2f9d039ac5f7bdffe4027e4117a9db71e4916f9dddedf6fde0390e33cf1a99f4f0d11708ed2dc2a3fb25cab3d15935d0f83a6a69c58ebf65dc53beb9e SHA512 cf1a5abb91d2c24502f3a37d4413d99c0555239c5e777505f8c8f17b81d90c2236766252ec563422d9b551787098e267a0b1595fd34588dfe0fd04945681881f -DIST PhysicsReferenceManual-4.10.5_p2.pdf 19527078 BLAKE2B 1ac3dde2f9d039ac5f7bdffe4027e4117a9db71e4916f9dddedf6fde0390e33cf1a99f4f0d11708ed2dc2a3fb25cab3d15935d0f83a6a69c58ebf65dc53beb9e SHA512 cf1a5abb91d2c24502f3a37d4413d99c0555239c5e777505f8c8f17b81d90c2236766252ec563422d9b551787098e267a0b1595fd34588dfe0fd04945681881f +DIST PhysicsListGuide-4.10.6c.pdf 343740 BLAKE2B f53d7e06692af87aeee32a43406ff8388bc491e3cdfb37c41106e6d0848433ab3ab8c12da2160dc4a89593998f40d3447a026e1b294e989c902352f01e941d68 SHA512 58ffc1ed365f14cd03dce76ce98a6ef54d52bb4b4fa5d6906e64cbb8e81045e2ed980815760d5a25b95883c01ec081bfc8a21def2b43f9b61964cb50a79b5bfd DIST PhysicsReferenceManual-4.10.6.pdf 19489188 BLAKE2B 4323a460a62a9cb7a1bf575489ab02f15bb96dfe017a19d71e15f6d3a06ed8355246c2d5f362601ca5dff9cfad1e0032a85cc8aac88e150dca36308925016efe SHA512 7e42749e578809e89ed589498e18e15fa2a62cac61668e628c77af093a85454d79a5738f4ca034c73a2fb7c67afb9a563e9ffc16a20d85fdbab9f57b6bda4d55 +DIST PhysicsReferenceManual-4.10.6c.pdf 19489188 BLAKE2B 4323a460a62a9cb7a1bf575489ab02f15bb96dfe017a19d71e15f6d3a06ed8355246c2d5f362601ca5dff9cfad1e0032a85cc8aac88e150dca36308925016efe SHA512 7e42749e578809e89ed589498e18e15fa2a62cac61668e628c77af093a85454d79a5738f4ca034c73a2fb7c67afb9a563e9ffc16a20d85fdbab9f57b6bda4d55 diff --git a/app-doc/geant-docs/geant-docs-4.10.05.ebuild b/app-doc/geant-docs/geant-docs-4.10.05.ebuild deleted file mode 100644 index 11d491f9b3bb..000000000000 --- a/app-doc/geant-docs/geant-docs-4.10.05.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="User documentation for Geant4 physics simulation toolkit" -HOMEPAGE="https://geant4.web.cern.ch/support/user_documentation" -SRC_DOC="http://cern.ch/geant4-userdoc/UsersGuides" -SRC_URI=" - ${SRC_DOC}/InstallationGuide/fo/Geant4InstallationGuide.pdf -> BookInstalGuide-${PV}.pdf - ${SRC_DOC}/ForApplicationDeveloper/fo/BookForApplicationDevelopers.pdf -> BookForAppliDev-${PV}.pdf - ${SRC_DOC}/ForToolkitDeveloper/fo/BookForToolkitDevelopers.pdf -> BookForToolDev-${PV}.pdf - ${SRC_DOC}/PhysicsReferenceManual/fo/PhysicsReferenceManual.pdf -> PhysicsReferenceManual-${PV}.pdf -" - -LICENSE="geant4" -SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -S="${DISTDIR}" - -src_install() { - local d - for d in *pdf; do newdoc ${d} ${d/-${PV}}; done - echo GEANT_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" >> 99geant-doc || die - doenvd 99geant-doc -} diff --git a/app-doc/geant-docs/geant-docs-4.10.6.ebuild b/app-doc/geant-docs/geant-docs-4.10.6.ebuild index 56ae17a3ab7e..b215540487bf 100644 --- a/app-doc/geant-docs/geant-docs-4.10.6.ebuild +++ b/app-doc/geant-docs/geant-docs-4.10.6.ebuild @@ -27,7 +27,7 @@ SRC_URI=" LICENSE="geant4" SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="" S="${DISTDIR}" diff --git a/app-doc/geant-docs/geant-docs-4.10.5_p2.ebuild b/app-doc/geant-docs/geant-docs-4.10.6c.ebuild similarity index 88% rename from app-doc/geant-docs/geant-docs-4.10.5_p2.ebuild rename to app-doc/geant-docs/geant-docs-4.10.6c.ebuild index 0d7981b98b65..b215540487bf 100644 --- a/app-doc/geant-docs/geant-docs-4.10.5_p2.ebuild +++ b/app-doc/geant-docs/geant-docs-4.10.6c.ebuild @@ -3,9 +3,7 @@ EAPI=7 -# Note: documentation patch releases are not the same as Geant4 patch releases - -MY_PV=V$(ver_cut 2-3)-$(ver_cut 5).0 +MY_PV=V$(ver_cut 2-3) DESCRIPTION="User documentation for Geant4 physics simulation toolkit" HOMEPAGE="https://geant4.web.cern.ch/support/user_documentation" @@ -29,7 +27,7 @@ SRC_URI=" LICENSE="geant4" SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="" S="${DISTDIR}" diff --git a/app-doc/geant-docs/metadata.xml b/app-doc/geant-docs/metadata.xml index 447371907610..7bccd71dfa13 100644 --- a/app-doc/geant-docs/metadata.xml +++ b/app-doc/geant-docs/metadata.xml @@ -1,12 +1,12 @@ - - amadio@gentoo.org - Guilherme Amadio - - - sci-physics@gentoo.org - Gentoo Physics Project - + + amadio@gentoo.org + Guilherme Amadio + + + sci-physics@gentoo.org + Gentoo Physics Project + diff --git a/app-doc/kicad-doc/Manifest b/app-doc/kicad-doc/Manifest index ae35da6a22b3..a5f67bb2e64c 100644 --- a/app-doc/kicad-doc/Manifest +++ b/app-doc/kicad-doc/Manifest @@ -1,2 +1,3 @@ DIST kicad-doc-5.1.6.tar.bz2 74202367 BLAKE2B b4d4ff704bf59c7663469f5c4a314a44f1762f8ae5a9fb3abb1a2e8eb54c5dd843f3d095d7e60d0ae541d9e51241fa35ae28c56a495cd0c7e0874d5b1a473296 SHA512 6fae707154aa662689c5da03696d30ebc7442a6d2706cb14d470e91675d0f77c3eb9dd716d29b1eccde5cb0ff39a582a497be2d65d5e34e40defe2fdf97093e0 DIST kicad-doc-5.1.7.tar.bz2 74202031 BLAKE2B caa6f6403fe984230cbb1d0b0a75355621f9e371976774e66aac2216994249397082ef8699f0adced0696344a256edd5d47c42ce8d789ebf624d702008f0600a SHA512 72dcfdf3d943dc73bb4f30c9dc9f0cfe7a0c3f8749a04b04624c47e2b69f6be29627e2768d008980ae9ac691aa56c97529edc15741c72e261e4c2c6f3e7b32b4 +DIST kicad-doc-5.1.8.tar.bz2 74199662 BLAKE2B f1077202a5a5c263f5cb8bf00f4f33ab0515e5abe15ab18bc21de742d6c4e0eafa5e3b1eb9cd12d45446b7a47654c44a67ec980af8ce0ed5d7f3261628c91f24 SHA512 763951f91b3a86d940fc508fc20846752bd2c7a4520e820e37708feb0054993d84a365df5abe10b5c26799479754ca19366456f3eba2ff3ee6acee34908dd699 diff --git a/app-doc/kicad-doc/kicad-doc-5.1.8.ebuild b/app-doc/kicad-doc/kicad-doc-5.1.8.ebuild new file mode 100644 index 000000000000..973e10fb41bc --- /dev/null +++ b/app-doc/kicad-doc/kicad-doc-5.1.8.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools manuals" +HOMEPAGE="https://docs.kicad.org/" +SRC_URI="https://gitlab.com/kicad/services/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-3+ CC-BY-3.0 ) GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="html +pdf" + +LANG_USE=" l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja l10n_pl l10n_ru l10n_zh" +IUSE+=${LANG_USE} +REQUIRED_USE="|| ( html pdf ) ^^ ( ${LANG_USE} )" +unset LANG_USE + +BDEPEND=" + >=app-text/asciidoc-8.6.9 + >=app-text/dblatex-0.3.10 + >=app-text/po4a-0.45 + >=sys-devel/gettext-0.18 + dev-perl/Unicode-LineBreak + dev-util/source-highlight + l10n_ca? ( dev-texlive/texlive-langspanish ) + l10n_de? ( dev-texlive/texlive-langgerman ) + l10n_en? ( dev-texlive/texlive-langenglish ) + l10n_es? ( dev-texlive/texlive-langspanish ) + l10n_fr? ( dev-texlive/texlive-langfrench ) + l10n_it? ( dev-texlive/texlive-langitalian ) + l10n_ja? ( dev-texlive/texlive-langjapanese media-fonts/vlgothic ) + l10n_pl? ( dev-texlive/texlive-langpolish ) + l10n_ru? ( dev-texlive/texlive-langcyrillic ) + l10n_zh? ( dev-texlive/texlive-langchinese )" + +src_configure() { + local mycmakeargs=( + -DBUILD_FORMATS="$(usev html);$(usev pdf)" + -DSINGLE_LANGUAGE="${L10N}" + -DKICAD_DOC_PATH="${EPREFIX}/usr/share/doc/${P}/help" + ) + cmake_src_configure +} diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 7138382f1ae8..fd5cdc385e7c 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/xen-tools/xen-tools-4.14.0-r3.ebuild b/app-emulation/xen-tools/xen-tools-4.14.0-r4.ebuild similarity index 99% rename from app-emulation/xen-tools/xen-tools-4.14.0-r3.ebuild rename to app-emulation/xen-tools/xen-tools-4.14.0-r4.ebuild index dec7829740ea..55976ee7f22f 100644 --- a/app-emulation/xen-tools/xen-tools-4.14.0-r3.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.14.0-r4.ebuild @@ -93,7 +93,10 @@ COMMON_DEPEND=" " DEPEND="${COMMON_DEPEND} + app-misc/pax-utils + dev-lang/perl >=sys-kernel/linux-headers-4.11 + x11-libs/pixman $(python_gen_cond_dep ' dev-python/lxml[${PYTHON_MULTI_USEDEP}] pam? ( dev-python/pypam[${PYTHON_MULTI_USEDEP}] ) @@ -113,8 +116,6 @@ DEPEND="${COMMON_DEPEND} system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) - dev-lang/perl - app-misc/pax-utils doc? ( app-text/ghostscript-gpl app-text/pandoc @@ -127,7 +128,6 @@ DEPEND="${COMMON_DEPEND} hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= - x11-libs/pixman sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index 64d013388a0d..5810b801f1ba 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 b0e97bdac960..be8a7c453931 100644 --- a/app-misc/OpenRGB/Manifest +++ b/app-misc/OpenRGB/Manifest @@ -1,2 +1 @@ -DIST OpenRGB-release_0.3.tar.bz2 2146596 BLAKE2B fc9228d8746770440b7d6bace1a858fed6e2b2db63b84f0e403352e1bd46dd594f24d929da447acdeee22a08a9e2e5394a58107643630c5e38c9780fd02bf2f4 SHA512 53924f315fd6f35ed8530798ed5fadd6171a0e896567173e95c9ac258cfc959db6d920730e606f9fceb9d360c9c87709d65e12ba00652f500d6c2f39506c9a44 DIST OpenRGB-release_0.4.tar.bz2 2195819 BLAKE2B 6416e143707e5ae48d0f26d205e1cc27571299d7d4b8483d18cc03db237d71ebc3574973fc1540dacc24662c536888e575e89db417e52dc9672d412fe41c540b SHA512 9ecdf0a0aec5916b1c705c1ad0bd567f46f9b0a4409211cb195ec7a4bfbc95c80bde13798839d23e867ed613cb34c6e9629da4aac942490f58ca9528f5f0a8bd diff --git a/app-misc/OpenRGB/OpenRGB-0.3-r3.ebuild b/app-misc/OpenRGB/OpenRGB-0.3-r3.ebuild deleted file mode 100644 index 53974fb65739..000000000000 --- a/app-misc/OpenRGB/OpenRGB-0.3-r3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils udev - -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" -IUSE="udev" - -DEPEND=" - dev-libs/hidapi:= - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtwidgets:5= - virtual/libusb:1 -" -RDEPEND="${DEPEND}" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/OpenRGB-0.2-build-system.patch" -) - -src_prepare() { - default - rm -rf dependencies/{hidapi,libusb}* || die -} - -src_configure() { - eqmake5 -} - -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/OpenRGB-9999.ebuild b/app-misc/OpenRGB/OpenRGB-9999.ebuild index f8119c80c919..1499b76f7273 100644 --- a/app-misc/OpenRGB/OpenRGB-9999.ebuild +++ b/app-misc/OpenRGB/OpenRGB-9999.ebuild @@ -20,28 +20,31 @@ LICENSE="GPL-2" SLOT="0" IUSE="udev" -DEPEND=" +RDEPEND=" dev-libs/hidapi:= - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtwidgets:5= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 virtual/libusb:1 " -RDEPEND="${DEPEND}" +DEPEND=" + ${RDEPEND} + dev-cpp/nlohmann_json +" BDEPEND=" virtual/pkgconfig " src_prepare() { default - rm -rf dependencies/{hidapi,libusb}* || die + rm -r dependencies/{hidapi,libusb,json}* || die if [[ ${PV} != *9999* ]]; then eapply "${FILESDIR}/OpenRGB-0.2-build-system.patch" fi } src_configure() { - eqmake5 + eqmake5 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" } src_install() { diff --git a/app-misc/lirc/lirc-0.10.1-r4.ebuild b/app-misc/lirc/lirc-0.10.1-r4.ebuild index 8f0fc1468435..1c7393516243 100644 --- a/app-misc/lirc/lirc-0.10.1-r4.ebuild +++ b/app-misc/lirc/lirc-0.10.1-r4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit eutils flag-o-matic linux-info python-single-r1 systemd xdg-utils diff --git a/app-misc/livecd-tools/Manifest b/app-misc/livecd-tools/Manifest index 8d3906824eb9..7fcd03179815 100644 --- a/app-misc/livecd-tools/Manifest +++ b/app-misc/livecd-tools/Manifest @@ -1,2 +1 @@ -DIST livecd-tools-2.6.tar.bz2 11555 BLAKE2B 732cb5f17c0684d778925268cf326b57c36ecde333f177b6cfd51219f1a89d2866df19b1d1a997219fa3e8358eea33c7f87fb53118d5ecfc75671f89a08ce8a6 SHA512 5bf8b293909abda87ae892b92c996a4d64830f2b2b00efed2529beb6d01d6b6aef4703db0ef26087cacc1e48f20cd0ade37f4eecfa6e2bfd90471722dc06f3b1 DIST livecd-tools-2.8.tar.bz2 9991 BLAKE2B 4cee552aa384736a3c67b638d3a90efc64414c50112951a0021d84e811a836a803d2dd782f4e0af37e5ce02c7cefc0a06053d0debc3365ef7fe531f14903937e SHA512 66e74fccca4174352050a73b9b94f35084b76f6a768490d0d47ca2ffc590f32a53beb7f71d46bcacaf19a466cb5e3dc884cfd45de601c444326546b138d8300e diff --git a/app-misc/livecd-tools/livecd-tools-2.6.ebuild b/app-misc/livecd-tools/livecd-tools-2.6.ebuild deleted file mode 100644 index df1da9997a4d..000000000000 --- a/app-misc/livecd-tools/livecd-tools-2.6.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="git://anongit.gentoo.org/proj/livecd-tools.git" - inherit git-r3 -else - SRC_URI="https://gitweb.gentoo.org/proj/livecd-tools.git/snapshot/${P}.tar.bz2" - KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ppc ppc64 sparc x86" -fi - -DESCRIPTION="Gentoo LiveCD tools for autoconfiguration of hardware" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" - -SLOT="0" -LICENSE="GPL-2" -IUSE="" - -RDEPEND="dev-util/dialog - net-dialup/mingetty - >=sys-apps/baselayout-2 - >=sys-apps/openrc-0.8.2-r1 - sys-apps/pciutils - sys-apps/gawk - sys-apps/sed -" - -pkg_setup() { - ewarn "This package is designed for use on the LiveCD only and will do" - ewarn "unspeakably horrible and unexpected things on a normal system." - ewarn "YOU HAVE BEEN WARNED!!!" -} - -src_install() { - doconfd conf.d/* - doinitd init.d/* - dosbin net-setup - into / - dosbin livecd-functions.sh -} diff --git a/app-misc/nnn/Manifest b/app-misc/nnn/Manifest index 1daf00584d7a..b1993b4240a4 100644 --- a/app-misc/nnn/Manifest +++ b/app-misc/nnn/Manifest @@ -14,3 +14,4 @@ DIST nnn-3.1.tar.gz 110005 BLAKE2B 13acf91c3333c00a1524e4bc819870768272509b6d6ae DIST nnn-3.2.tar.gz 143122 BLAKE2B 1d5cb823d274e0ca8d15be75a6df149697d81abd5c60a4b7c6335317d77f5a071b917e3322b618924ad792defe3333d38e58fda0195bc0ed79bf72df371171b5 SHA512 9cdc8d0d74162ddd4b90f69a4f558a25845732497ebdb129159fda658a799a949fe237013bf69a2d6a649433254ba2ed4c65f8f10cddd119f713c1d5518ea378 DIST nnn-3.3.tar.gz 148795 BLAKE2B 71aa01c6882b3ea95331cb97d309218b65b8a1ab515a026a49b90b9dfd3cf5eed9b1337bb1d1d39a4b3f9e21f4d2bc0f24b29c380b8b66a9e9d5e42139bfa387 SHA512 34b772b4a876f7b31fb7badc1d7854faacebf266e4bda29cba0d2ee8e6728b5e7a842a0964a7d28d82d39053c8325dcafe6dafeaae43e7a7cfcc0e5d5dc719e9 DIST nnn-3.4.tar.gz 194844 BLAKE2B 5b41196af67720a3485bd68b6c08e4ab41e8308d5ed0e279ed4b215acf1cbe0e10ee3a39b47b74115111003ef5a3d9871c71bb54e3778bfbc6597eb7de751deb SHA512 91b19e9a4581c6367b5c90b8294232fb77d86df348a6b4bce0df2336cac14493bf48cad52e02e5b6b0027c2ea14e3b9f15cc70d78abe82687172169b958ca918 +DIST nnn-3.5.tar.gz 205980 BLAKE2B 4c49fb0feb4f04075fd64d0b42643256cceec84185df2fa78d5d1fc04177b446b443ea3843434d844206ebc120820ff97b33f7703a76aed85af044f14f985621 SHA512 87710ca251906d22afc8d329675675c81fdf1d6e71f4f4991ab36868105906b6d45c2c84dd118beafa79644a0677a66bfa346ffe9a4516082d899c5148c5cffd diff --git a/app-misc/nnn/nnn-3.5.ebuild b/app-misc/nnn/nnn-3.5.ebuild new file mode 100644 index 000000000000..bf0ab9b6eb44 --- /dev/null +++ b/app-misc/nnn/nnn-3.5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit bash-completion-r1 toolchain-funcs + +DESCRIPTION="The missing terminal file browser for X" +HOMEPAGE="https://github.com/jarun/nnn" +SRC_URI="https://github.com/jarun/nnn/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" + +DEPEND="sys-libs/ncurses:0= + sys-libs/readline:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + tc-export CC + sed -i -e '/strip/d' Makefile || die "sed failed" + +} + +src_install() { + emake PREFIX="/usr" DESTDIR="${D}" install + + newbashcomp misc/auto-completion/bash/nnn-completion.bash nnn + + insinto /usr/share/fish/vendor_completions.d + doins misc/auto-completion/fish/nnn.fish + + insinto /usr/share/zsh/site-functions + doins misc/auto-completion/zsh/_nnn + + einstalldocs +} diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 2866ede326b8..d458a0f79596 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/ledger/Manifest b/app-office/ledger/Manifest index 6a76f7654522..9e2188a1bb44 100644 --- a/app-office/ledger/Manifest +++ b/app-office/ledger/Manifest @@ -1 +1,2 @@ DIST ledger-3.2.0.tar.gz 790404 BLAKE2B 081ca5d857238aecbeae5a0ba3267864442a8c1772a71b1894f5a9fb33173f9a0bd488ad4db3844fce8172268e516ebb92ba0556ced6e67b2a089fbb5adfde36 SHA512 580f4f39d7c3cd2bd1d05bcc36b127cfb311219f39fe50dbf23f582f73dd986729d4b5fa76bfd89cd5db9bfdfcdd5dca5b9d6b24766650040e45b881726e65ea +DIST ledger-3.2.1.tar.gz 790959 BLAKE2B a25b08f37c6bcf409fb60e0bcc6e11021515fe17f7eb6f23781bd7a7c16b58ac92d4684e5936901ed87f2f5be4df427bd95fe856f8e7eff1e2609329866de71a SHA512 526c60cee354c9d2ead38cef3b89b349467e41fa3ec0927b51e7246a3352f19f0f81574211f20ba9bac5915590b870b9f9478a103ab661d3d9a10f41c52f4512 diff --git a/app-office/ledger/ledger-3.2.1.ebuild b/app-office/ledger/ledger-3.2.1.ebuild new file mode 100644 index 000000000000..04e737f4bf0e --- /dev/null +++ b/app-office/ledger/ledger-3.2.1.ebuild @@ -0,0 +1,113 @@ +# 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} ) +CMAKE_REMOVE_MODULES_LIST=( FindPython Support ) +inherit bash-completion-r1 check-reqs cmake python-single-r1 + +DESCRIPTION="Double-entry accounting system with a command-line reporting interface" +HOMEPAGE="https://www.ledger-cli.org/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RESTRICT="test" + +CHECKREQS_MEMORY=8G + +RDEPEND=" + dev-libs/boost:=[python?] + dev-libs/gmp:0= + dev-libs/mpfr:0= + python? ( + $(python_gen_cond_dep ' + dev-libs/boost:=[${PYTHON_USEDEP}] + dev-python/cheetah3:=[${PYTHON_USEDEP}] + ') + ${PYTHON_DEPS} + ) +" +DEPEND="${RDEPEND} + dev-libs/utfcpp + doc? ( + dev-texlive/texlive-fontsrecommended + sys-apps/texinfo + virtual/texi2dvi + ) +" + +pkg_pretend() { + if use python; then + check-reqs_pkg_pretend + fi +} + +pkg_setup() { + if use python; then + check-reqs_pkg_setup + python-single-r1_pkg_setup + fi +} + +src_prepare() { + cmake_src_prepare + + # Want to type "info ledger" not "info ledger3" + sed -i -e 's/ledger3/ledger/g' \ + doc/{CMakeLists.txt,ledger3.texi} test/CheckTexinfo.py \ + tools/{cleanup.sh,gendocs.sh,prepare-commit-msg,spellcheck.sh} \ + || die "Failed to update info file name in file contents" + + mv doc/ledger{3,}.texi || die "Failed to rename info file name" + + rm -r lib/utfcpp || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCS="$(usex doc)" + -DBUILD_WEB_DOCS="$(usex doc)" + -DUSE_PYTHON="$(usex python)" + -DCMAKE_INSTALL_DOCDIR="/usr/share/doc/${PF}" + -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON + -DBUILD_DEBUG="$(usex debug)" + -DUTFCPP_PATH="${ESYSROOT}/usr/include/utf8cpp" + ) + if use python; then + mycmakeargs+=( + -DPython_EXECUTABLE="${PYTHON}" + -DPython_INCLUDE_DIR="$(python_get_includedir)" + ) + fi + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + + use doc && cmake_src_compile doc +} + +src_install() { + cmake_src_install + + newbashcomp contrib/${PN}-completion.bash ${PN} +} + +pkg_postinst() { + elog + elog "Since version 3, vim support is released separately." + elog "See https://github.com/ledger/vim-ledger" + elog + elog "For Emacs mode, emerge app-emacs/ledger-mode" +} + +# rainy day TODO: +# - IUSE test diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index 468dd76a148f..15084bf31e9a 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest index 719625df217f..e1815e619a5c 100644 --- a/app-portage/eix/Manifest +++ b/app-portage/eix/Manifest @@ -1,4 +1,3 @@ DIST eix-0.34.10.tar.xz 630356 BLAKE2B 6336652dbb3703295693dea40cb2d2a2d5c7fc17d28150faae07b566cccfddb8d103b83c5db34e839434b1fbbe0ff87a08c4af84d2f80c5e9b786d88d5743f96 SHA512 35270b7fafe6a13ebb33271b3baba07f61928d9c9c40aafabc47d8f7bd4a8d44e1013004361e9cf81e8517d5b1a8a3010d18c6fcac02dcc8b44dc443762f82a3 DIST eix-0.34.11.tar.xz 629932 BLAKE2B 7b203a4763a880379e5bafe086f70aeca6ad508cd558cc53d53683d8ee4a85111ba9fdea9fa81cd9c3939dd01ea392876b2714257138fd40a2c6b124e0fdbc90 SHA512 518dee499ed27acd39ea4c26e7b94a1098408b1d8cf6bc593e5e4b06aa973ae664e155886681c1e90e4a89afe8b54e05f8bd08d6ace2a2e1559fa613e5a351e7 -DIST eix-0.34.4.tar.xz 628516 BLAKE2B 0c7cb4d7cd13d7715ba35cc0edd38e549fd1d1618bfdcacb272ee8325a844276a6df59a701ab2b4ecc693e5dad2d95c96c000e96eb8bce72709baf22f3fa490f SHA512 a96714fba8324529bf63de63f9eb11cc76da05e3d43c5eedad49079b6e3a1960376bd5d3bc116dba49bc7f694c7588741e518438936abd4b37edfe0a097ecd3d DIST eix-0.34.9.tar.xz 629672 BLAKE2B ba9a5de98f74baa711e7483e284980c0fe5e956512de590954bf848f6cf6baad5db899256e927e7cb984d7276157fa9c42052cc8fb1ccc52e5e530cc31d39d84 SHA512 5cb00c813bc31971a0cfd77cae0c676040d33f24963cb241274918d2e381956ca949593e0637d81040a9751db0a925552913188cc25ada9a90c6007c31f72e43 diff --git a/app-portage/eix/eix-0.34.4.ebuild b/app-portage/eix/eix-0.34.4.ebuild deleted file mode 100644 index 27581250b045..000000000000 --- a/app-portage/eix/eix-0.34.4.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools bash-completion-r1 flag-o-matic tmpfiles - -DESCRIPTION="Search and query ebuilds" -HOMEPAGE="https://github.com/vaeth/eix/" -SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="GPL-2" -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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug doc nls sqlite" - -BOTHDEPEND="nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3:= )" -RDEPEND="${BOTHDEPEND} - >=app-shells/push-2.0-r1 - >=app-shells/quoter-3.0_p2-r1" -DEPEND="${BOTHDEPEND} - app-arch/xz-utils - nls? ( sys-devel/gettext )" - -pkg_setup() { - # remove stale cache file to prevent collisions - local old_cache=${EROOT}/var/cache/${PN} - if [[ -f ${old_cache} ]]; then - rm "${old_cache}" || die - fi -} - -src_prepare() { - default - sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die - - sed -e "/eixf_source=/s:push.sh:cat \"${EPREFIX}/usr/share/push/push.sh\":" \ - -e "/eixf_source=/s:quoter_pipe.sh:cat \"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \ - -i src/eix-functions.sh.in || die - sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \ - -i src/Makefile.am || die - - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable debug paranoic-asserts) - $(use_enable nls) - $(use_with doc extra-doc) - $(use_with sqlite) - --without-protobuf - - # default configuration - $(use_with prefix always-accept-keywords) - --with-dep-default - --with-required-use-default - - # paths - --with-portage-rootpath="${ROOTPATH}" - --with-eprefix-default="${EPREFIX}" - - # build a single executable with symlinks - --disable-separate-binaries - --disable-separate-tools - - # used purely to control/disrespect *FLAGS - --disable-debugging - --disable-new_dialect - --disable-optimization - --disable-strong-optimization - --disable-security - --disable-nopie-security - --disable-strong-security - ) - - econf "${myconf[@]}" -} - -src_install() { - default - dobashcomp bash/eix - dotmpfiles tmpfiles.d/eix.conf - - rm -r "${ED}"/usr/bin/eix-functions.sh || die -} - -pkg_postinst() { - tmpfiles_process eix.conf - - local obs=${EROOT}/var/cache/eix.previous - if [[ -f ${obs} ]]; then - ewarn "Found obsolete ${obs}, please remove it" - fi -} - -pkg_postrm() { - if [[ ! -n ${REPLACED_BY_VERSION} ]]; then - rm -rf "${EROOT}/var/cache/${PN}" || die - fi -} diff --git a/app-portage/euses/euses-2.6.0.ebuild b/app-portage/euses/euses-2.6.0.ebuild index f5a95611896f..a218983e68e0 100644 --- a/app-portage/euses/euses-2.6.0.ebuild +++ b/app-portage/euses/euses-2.6.0.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86" S=${WORKDIR} diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest index c4860f775fe1..619ed92d89ae 100644 --- a/app-portage/gpyutils/Manifest +++ b/app-portage/gpyutils/Manifest @@ -1,2 +1 @@ -DIST gpyutils-0.4.3.tar.gz 19951 BLAKE2B 2d15c6c714a7f75be4a5398b7287d6281a201f1b5806c6cac34093cd74ae3449fcd103d023edc54ab088807e8a7b24e08bb223ae9f40d156ade97706cf4b9355 SHA512 02067d6d075afc6670eea75a0e9ed12bf02eecb623accd010701c45d4176bb23b1dd0fb9eda3a4e899d3fb90581c5f3fc46b5fc8760b491c31fddf592aa7a291 DIST gpyutils-0.4.5.tar.gz 20037 BLAKE2B f628c11e0ae2c9bb02a024e1b7dcab7092e7b01c14078683c47a8ca00d71021b988c51d80ab8b322891f9ecd4bb11c7bfe7d300f3bcbe489a977b18244ead085 SHA512 f68c87b5a35aece182bf2f9f93fe89f061dd49b4b75fabb7637038aee1e5301797af1d889a75829048eeb05dda0233461a2f2600e185214600a282cea50d1d3c diff --git a/app-portage/gpyutils/gpyutils-0.4.3.ebuild b/app-portage/gpyutils/gpyutils-0.4.3.ebuild deleted file mode 100644 index ac5c7dac4d64..000000000000 --- a/app-portage/gpyutils/gpyutils-0.4.3.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 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{6..9} ) - -inherit distutils-r1 - -DESCRIPTION="Utitilies for maintaining Python packages" -HOMEPAGE="https://github.com/mgorny/gpyutils/" -SRC_URI="https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=app-portage/gentoopm-0.3.1[${PYTHON_USEDEP}]" - -python_test() { - esetup.py test -} diff --git a/app-portage/gpyutils/gpyutils-0.4.5.ebuild b/app-portage/gpyutils/gpyutils-0.4.5.ebuild index 7743cba96661..9d9f29ecbc57 100644 --- a/app-portage/gpyutils/gpyutils-0.4.5.ebuild +++ b/app-portage/gpyutils/gpyutils-0.4.5.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=">=app-portage/gentoopm-0.3.2[${PYTHON_USEDEP}]" diff --git a/app-portage/pfl/pfl-3.1-r1.ebuild b/app-portage/pfl/pfl-3.1-r1.ebuild index 10d1e5238d22..2d75e642e856 100644 --- a/app-portage/pfl/pfl-3.1-r1.ebuild +++ b/app-portage/pfl/pfl-3.1-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/portagefilelist/client/archive/${PV}.tar.gz -> ${P}. LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="amd64 arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="+network-cron" DEPEND="" diff --git a/app-portage/pfl/pfl-3.1.ebuild b/app-portage/pfl/pfl-3.1.ebuild deleted file mode 100644 index 3a7b609facc4..000000000000 --- a/app-portage/pfl/pfl-3.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{6,7,8} ) -PYTHON_REQ_USE="xml" - -inherit distutils-r1 systemd - -DESCRIPTION="Searchable online file/package database for Gentoo" -HOMEPAGE="http://www.portagefilelist.de https://github.com/portagefilelist/client" -SRC_URI="https://github.com/portagefilelist/client/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="+network-cron" - -DEPEND="" -RDEPEND=" - ${DEPEND} - dev-python/requests[${PYTHON_USEDEP}] - net-misc/curl - sys-apps/portage[${PYTHON_USEDEP}] - network-cron? ( sys-apps/util-linux[caps] ) -" - -S="${WORKDIR}/client-${PV}" - -python_install_all() { - if use network-cron ; then - exeinto /etc/cron.weekly - doexe cron/pfl - fi - - systemd_dounit systemd/pfl.{service,timer} - - keepdir /var/lib/${PN} - - distutils-r1_python_install_all -} - -pkg_postinst() { - if [[ ! -e "${EROOT}/var/lib/${PN}/pfl.info" ]]; then - touch "${EROOT}/var/lib/${PN}/pfl.info" || die - fi - chown -R portage:portage "${EROOT}/var/lib/${PN}" || die - chmod 775 "${EROOT}/var/lib/${PN}" || die -} diff --git a/app-portage/portage-utils/portage-utils-0.90.1.ebuild b/app-portage/portage-utils/portage-utils-0.90.1.ebuild index 5ab8212f96da..5bf21867d195 100644 --- a/app-portage/portage-utils/portage-utils-0.90.1.ebuild +++ b/app-portage/portage-utils/portage-utils-0.90.1.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage-utils.git" else SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz" - 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" + 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" fi RDEPEND=" diff --git a/app-shells/Manifest.gz b/app-shells/Manifest.gz index 2eb290ba981d..df439522299c 100644 Binary files a/app-shells/Manifest.gz and b/app-shells/Manifest.gz differ diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest index 429fcec7cb55..446d7e6d496a 100644 --- a/app-shells/bash/Manifest +++ b/app-shells/bash/Manifest @@ -8,7 +8,7 @@ DIST bash-4.2.tar.gz 7009201 BLAKE2B 52a4432ae401121ff187487a75a6541ce001c24d7d2 DIST bash-4.3.tar.gz 7955839 BLAKE2B 398461e90a1ab6fd726b1a9db41c4c2a1e184034e3b96029bd17097338f1f9869d1c2216bde0b5b3c8e561629824348a0da3045cc425914e8e024180a175efe4 SHA512 a852b8e46ee55568dce9d23a30a9dbd1c770c2d2a4bc91e1c3177d723b31b32c5d69d19704a93f165891b409b9dd2cc65723372044e2bd0ee49ed59a11512651 DIST bash-4.4.tar.gz 9377313 BLAKE2B ac0e481dd4f2d5b91eea4f0156f1fc398ef8bd1ccd941366aa9b041be576114c51e1ff1431ec871e96fb72257c2a05a0ebcbd88c43c221610fef7dfdb2502fc0 SHA512 73de3b425faaac55e45456b0f6f6d8077b5dfa7bb76e0d1894a19361b4a2b6bd4fbbe182117ddbfe9b07b4d898fba03537c261badc9533dd3c0da891764c7f29 DIST bash-5.0.tar.gz 10135110 BLAKE2B a6c4d79144aa0c0f4a9433d618085c0d46b792b1de429b161f9f0266b55c099e13e44416c0886758a6f29411f5ceb79bfb0ec4eda47473f2713ae0b8081d6d3e SHA512 bb4519f06e278f271d08722b531e49d2e842cc3e0b02a6b3eee422e2efcb5b6226111af43f5e5eae56beb85ac8bfebcd6a4aacbabb8f609e529aa4d571890864 -DIST bash-5.1-rc2.tar.gz 10401614 BLAKE2B 691d5213084b01fa17f5dad31116c9549ca33eddfa1e44db3fe694b808badb5f70f51c008d31b616d444d02a4d1683473b442a8dd9a56b602069a166a3017cf1 SHA512 35b11357a0c3d00bc0c6383411ea3efe7fbc77ed39dea6b69c6a0ad57e844cec8ba9ee19a1df29bca08d26596e98d8090673e8d934e5189278fb13de701b8b98 +DIST bash-5.1-rc3.tar.gz 10402411 BLAKE2B 0347d9b6eab98aab0941f838cea6447c5703b0957631b32bede6aa1ab94f3f5e728441708092872aa1fff85a02aabc98490b5d13b3ddb824b7ed3cdcc8ac0c1b SHA512 44717b843d3bbae057147eb9ca28e83d3f4290f832fb1674ffc4c0bcffcb9999929947d9798e0dfcc6e3aa8dc63412698fde28b306ce9ac41482e22fb327387f DIST bash205b-001 1132 BLAKE2B 0c5eef29777d54ef05957ea3d63b1556fb380bd20c238dc28993d822b37bc4e78ff4048ad069f6b8cd25da77ccdeb7aecd86c4349cb9d81e5e94c7001eeae5e6 SHA512 5ce4357468821b05e747201f3aa57225ad8f540c9e2c87051720490e039c30b478b9b662a68f14a0800fefe40184e4495e2645665200f9d75e9a115b2ac08071 DIST bash205b-002 755 BLAKE2B 6a6ed5679d451f02f8104b345c1722d11718ce3b4043b581c17786d40d8da69a34786fb56d0c363dba277b8e9dd33f12f70c9cc73a9fc39ba4a8319406f0458d SHA512 46947b0229478d5c2cfeff68b8ebc00e4ef0c8b94e336ca12f72b4490ba3622c0240c01c17c1641c3b07adc2c64ec94d6d780365e8990768ec8888f3a9526883 DIST bash205b-003 2356 BLAKE2B b7887d00d92fd298cd07a15e1c73b516dabd22ecd74c97091636dd97a0cd55024ed698e5cc924c4311d994dd326b1ad074bea35e7650cf9cf4e25c60d2713fa7 SHA512 74528ca5d165b812d299f1c69b47757bd677c0b22ce4217e155cd641708b02364a93c6709fb57b546b376b36da74429a61493921c7c199563da40ddcf1c1f399 diff --git a/app-shells/bash/bash-5.1_rc2.ebuild b/app-shells/bash/bash-5.1_rc3.ebuild similarity index 99% rename from app-shells/bash/bash-5.1_rc2.ebuild rename to app-shells/bash/bash-5.1_rc3.ebuild index 218a51579c91..afb1bae1d19b 100644 --- a/app-shells/bash/bash-5.1_rc2.ebuild +++ b/app-shells/bash/bash-5.1_rc3.ebuild @@ -34,7 +34,7 @@ patches() { } # The version of readline this bash normally ships with. -READLINE_VER="8.1_rc2" +READLINE_VER="8.1_rc3" DESCRIPTION="The standard GNU Bourne again shell" HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html" diff --git a/app-shells/yash/yash-2.50.ebuild b/app-shells/yash/yash-2.50.ebuild index bf89ed32fa99..8d0249caa129 100644 --- a/app-shells/yash/yash-2.50.ebuild +++ b/app-shells/yash/yash-2.50.ebuild @@ -27,6 +27,7 @@ src_configure() { sh ./configure \ --prefix="${EPREFIX}"/usr \ + --exec-prefix="${EPREFIX}" \ $(use_enable nls) \ CC=$(tc-getCC) \ LINGUAS="$(l10n_get_locales | sed "s/en/en@quot en@boldquot/")" \ diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index a1f5eed3fc99..65f14b7caec6 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/libgepub/libgepub-0.6.0.ebuild b/app-text/libgepub/libgepub-0.6.0.ebuild index 9685b374db7e..84648bc55554 100644 --- a/app-text/libgepub/libgepub-0.6.0.ebuild +++ b/app-text/libgepub/libgepub-0.6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/libgepub" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="+introspection" RDEPEND=" diff --git a/app-text/nuspell/Manifest b/app-text/nuspell/Manifest index 3510812e1b34..077b48aee0ac 100644 --- a/app-text/nuspell/Manifest +++ b/app-text/nuspell/Manifest @@ -1,3 +1,4 @@ DIST nuspell-3.1.2.tar.gz 379029 BLAKE2B 80f773ffdcbfbeee0dd13cd325bb4fec5efa5b54ece92ac1589c418aab46c925419e9e1bc7e257a8320e24399f49bb867600679e34a5e40070b01a660578c92c SHA512 ed5206cb9ffa7e4ec6843988a75627d4ae7d5170444b6e7bd3496c1bf61c25412c4e68864800f2ad238d014b4e50d25282f367de2900f8a230f3ecc9ae5772be DIST nuspell-4.0.0.tar.gz 379136 BLAKE2B 90aebe8318cd28240dfb7c1b034b2c045ac208c6d25344a3f2fc2f1a38995a1d6f81e70399c644c70255fbbb30f61e340808d1a71dfccab1726f89b742cf7b65 SHA512 2b08e30c4ac91a243c74f21eaf4a8d55d8b1c834e0f293fea76a9f02660f2ee89fe4d4071b1b9ed97b8c1db80b0645c71f8746738d97fc3ae779a65dc1583d3b DIST nuspell-4.0.1.tar.gz 379342 BLAKE2B be52797ddd737c523a6141fc1c2683690cfcd1aa09e6548d7eed593ab023d2b45d3538f2a9964a7c2b4abc6506c67058cdc2479ec12ae5438ffe9faa00f0680c SHA512 122616fd24c2de35000ba12d680d3617e7fe97881d33febbcb106ce70d3bac356a00d90680a1bc8ee631ed532ace0f4b4f9fce4760a25b0f7fc1d60553e74528 +DIST nuspell-4.1.0.tar.gz 380814 BLAKE2B 500da0797e4f0d1939afd8451b734f309b5c58e66532150614dd3463eda95ab421094e6c0485396b7ef1dd4b7fc03cadf10316d9cfdb1390b2769ddcc963d8b3 SHA512 d0c01dd73fefd8b9c800e6419fe916e55a53b8b19f5848d3766cdcb50383fdcd9e9bb49362b5cea4d9d2d7fda21aed055f28cb47b006e2049b2a904355f7f9ed diff --git a/app-text/nuspell/nuspell-4.1.0.ebuild b/app-text/nuspell/nuspell-4.1.0.ebuild new file mode 100644 index 000000000000..f38131dbab56 --- /dev/null +++ b/app-text/nuspell/nuspell-4.1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Spell checker library and CLI for complex natural languages" +HOMEPAGE="https://nuspell.github.io/ https://github.com/nuspell/nuspell" +SRC_URI="https://github.com/nuspell/nuspell/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0/4" # due to libnuspell.so.4 +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND="dev-libs/icu" +DEPEND="${RDEPEND} + doc? ( app-text/pandoc ) + test? ( >=dev-cpp/catch-2.3.0:0 ) + >=dev-libs/boost-1.62[icu,nls]" + +DOCS=( CHANGELOG.md ) + +RESTRICT="!test? ( test )" + +src_prepare() { + rm -R external/Catch2/ || die + if ! use test ; then + rm -R external/hunspell/ || die + fi + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + + cmake_src_configure +} + +pkg_postinst() { + einfo + einfo 'Nuspell needs language packs and/or dictionaries to be of use' + einfo 'e.g. package app-dicts/myspell-en or one of its siblings.' + einfo + einfo 'Besides MySpell dictionaries, for other options please' + einfo 'see https://nuspell.github.io/#languages-and-users .' + einfo +} diff --git a/app-vim/Manifest.gz b/app-vim/Manifest.gz index 8643d81d1445..0e0a0d558712 100644 Binary files a/app-vim/Manifest.gz and b/app-vim/Manifest.gz differ diff --git a/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild b/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild index 542416719fbc..a5bfffb40832 100644 --- a/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild +++ b/app-vim/omnicppcomplete/omnicppcomplete-0.41.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1520" SRC_URI="https://www.vim.org/scripts/download_script.php?src_id=7722 -> ${P}.zip" LICENSE="vim.org" -KEYWORDS="amd64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 ppc ppc64 x86" IUSE="" DEPEND="app-arch/unzip" diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index 48ec4fba7805..dbfea9720ea6 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/catch/Manifest b/dev-cpp/catch/Manifest index 078ea1be0db8..55fca7ae5df5 100644 --- a/dev-cpp/catch/Manifest +++ b/dev-cpp/catch/Manifest @@ -1,4 +1,3 @@ DIST Catch-1.12.2.tar.gz 377265 BLAKE2B bc27b4daee950f8fb93d65f3aed032e72bc856ee27a8dc28c35b89e33f414d68ba4cf00951e476688eddf9e4c0514036bd6916fa6cfa9e3359e6c625984f114f SHA512 ed963cdca9fe307ee02928677f81cafcb41cd607faaa315182fdf898d0f2aa28f0be2141bd642f46fdfac400c38f6d065e00a595a1e5879fe2335c4a3851e844 +DIST Catch2-2.13.3.tar.gz 655431 BLAKE2B 4343dab41818a4c85b875752b8d86a0dd1a46ce8c94d6773cee210a133f164b669053973c6678228b3afb356e25a3e705c8220b138c247a230e624b3f2412784 SHA512 caf0e3a39a2b5983346c2709ce06113da62881780117021c64db987d6c5190c41a9070fb70caa0ee6957cfef0baad87fff4e6558c9fea4fa464e82882fe17d55 DIST Catch2-2.5.0.tar.gz 549328 BLAKE2B a32941a043a654228cc541dc675ad789f5b938ebc2d3177d1657f66f68fb175bec8c88a60ecba00e84eca74a7506dc83aed74ac89f7dde83213284eb4a497225 SHA512 420f1d1a5ea7b69be9fb316a8abe1fb7c7e78d44a982e883748f1e0c8d2a435c1518b6022742716019558a740f8b31977ed6a786b0293e0504206b016801cfe8 -DIST Catch2-2.7.0.tar.gz 569753 BLAKE2B cec11d79c85ac8a5577467ceb4722a2441a1dbd2fbe42fb06324113d2a6f9fadc12de351735900817274520bf8533ec245ba0a3686c8c1b4813cf3136d6d552f SHA512 ab6c816642a92418c76c8ddabf17eb0c19bef1dc6ac2405c820280d670ef1d78c9ae89909f5a36bf063f0939d253b7c6b5e845c1ac4e63b338927e125dee950d -DIST Catch2-2.9.1.tar.gz 626539 BLAKE2B b68f17dba65cc8d1a842b105e5aa6a32e713df8d34c32b918e0588e6b87b8e3ae56f9130d1590795489afe2e29035c262a05795d0ee44c9e9ace2e814801821d SHA512 ea18eef1fece72518c8a46b89727f5d0545a15038957087324abe6421c682693379476ff46106132f080677ebcc1c9ead51a9cf25dced3bb576a33e4f6fae4f6 diff --git a/dev-cpp/catch/catch-2.9.1.ebuild b/dev-cpp/catch/catch-2.13.3.ebuild similarity index 87% rename from dev-cpp/catch/catch-2.9.1.ebuild rename to dev-cpp/catch/catch-2.13.3.ebuild index 77dac8be453e..87bf6c59f3c9 100644 --- a/dev-cpp/catch/catch-2.9.1.ebuild +++ b/dev-cpp/catch/catch-2.13.3.ebuild @@ -3,9 +3,9 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) -inherit cmake-utils python-any-r1 +inherit cmake python-any-r1 if [[ ${PV} == *9999 ]]; then inherit git-r3 @@ -15,7 +15,7 @@ else SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - S=${WORKDIR}/${MY_P} + S="${WORKDIR}/${MY_P}" fi DESCRIPTION="Modern C++ header-only framework for unit-tests" @@ -40,5 +40,5 @@ src_configure() { use test && mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}") - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-cpp/catch/catch-2.7.0.ebuild b/dev-cpp/catch/catch-2.7.0.ebuild deleted file mode 100644 index 2467542c7d9b..000000000000 --- a/dev-cpp/catch/catch-2.7.0.ebuild +++ /dev/null @@ -1,44 +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} ) - -inherit cmake-utils python-any-r1 - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/catchorg/Catch2.git" -else - MY_P=${PN^}2-${PV} - SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~x86" - - S=${WORKDIR}/${MY_P} -fi - -DESCRIPTION="Modern C++ header-only framework for unit-tests" -HOMEPAGE="https://github.com/catchorg/Catch2" - -LICENSE="Boost-1.0" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( ${PYTHON_DEPS} )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DCATCH_ENABLE_WERROR=OFF - -DBUILD_TESTING=$(usex test) - ) - use test && - mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}") - - cmake-utils_src_configure -} diff --git a/dev-cpp/catch/catch-9999.ebuild b/dev-cpp/catch/catch-9999.ebuild index 07de51f32521..338bc2c2b371 100644 --- a/dev-cpp/catch/catch-9999.ebuild +++ b/dev-cpp/catch/catch-9999.ebuild @@ -3,9 +3,9 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) -inherit cmake-utils python-any-r1 +inherit cmake python-any-r1 if [[ ${PV} == *9999 ]]; then inherit git-r3 @@ -13,9 +13,9 @@ if [[ ${PV} == *9999 ]]; then else MY_P=${PN^}2-${PV} SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - S=${WORKDIR}/${MY_P} + S="${WORKDIR}/${MY_P}" fi DESCRIPTION="Modern C++ header-only framework for unit-tests" @@ -36,9 +36,10 @@ src_configure() { local mycmakeargs=( -DCATCH_ENABLE_WERROR=OFF -DBUILD_TESTING=$(usex test) + -DCATCH_DEVELOPMENT_BUILD=$(usex test) ) use test && mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}") - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index f000bbe7028b..1aab74d90437 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/phpmyadmin/Manifest b/dev-db/phpmyadmin/Manifest index e5c17f4b3c5d..512cc71bd582 100644 --- a/dev-db/phpmyadmin/Manifest +++ b/dev-db/phpmyadmin/Manifest @@ -1,3 +1,2 @@ -DIST phpMyAdmin-4.9.5-all-languages.tar.xz 6138948 BLAKE2B 63631e8207d1cfb71a2299752bb10ab55d13f630ee0d913a4ed6bdf0a16320fa72945bc7c8a63e0e705eb45a569c60fffd48c204eabe1b980a33ab93fac7c798 SHA512 555f07f087d8bcddd114df0b86fa21872f14f45c31e0f63eea499e76fdebdfd8abebcc88662887418e80ddebfea73d6aaac17856cf433d1855423b5145865d1a DIST phpMyAdmin-4.9.6-all-languages.tar.xz 4978288 BLAKE2B 73f7cf5da8ec55fb39d5ea1c007d640f521c9b4490c820ef3f2660000f37af751d7e9a9d08d04405497b9e69642c53f6b28f5f84b5401e437bcf3419c2d2323b SHA512 4aa35ae627edfcf99af83a30e328b8b9ccdfa129ae9d16c2672ace234aa8a416ad8840af5bc9998e44b9e26b07abd195cfba1b4c784b0bc6509f5e8e548e62f1 DIST phpMyAdmin-5.0.3-all-languages.tar.xz 6786864 BLAKE2B 737df7cc7c2bdeda89f81d2d5d61857f5f9c0f1e69c4679df6f728c0df8d50fde589971e5e4cd371f2f33d766cdd17cca5580ccb7b75cecb0122ce49dcf52a05 SHA512 e03b0fcd1998570c243a41bcb9e1bf46c1da8fdb99b8e54ba4de3e7e22ff0d847468f16137b011f22eb2ee58d92debd66f2f0ec1b403775aef879a3f8978ebf1 diff --git a/dev-db/phpmyadmin/phpmyadmin-4.9.5.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.9.5.ebuild deleted file mode 100644 index 4f82904cb1fa..000000000000 --- a/dev-db/phpmyadmin/phpmyadmin-4.9.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit eutils webapp - -MY_PV=${PV/_/-} -MY_PN="phpMyAdmin" -MY_P="${MY_PN}-${MY_PV}-all-languages" - -DESCRIPTION="Web-based administration for MySQL database in PHP" -HOMEPAGE="https://www.phpmyadmin.net/" -SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos" -IUSE="setup" - -RDEPEND=" - dev-lang/php[ctype,filter,json(+),session,unicode] - || ( - dev-lang/php[mysqli] - dev-lang/php[mysql] - ) - virtual/httpd-php:* -" - -need_httpd_cgi - -S="${WORKDIR}"/${MY_P} - -pkg_setup() { - webapp_pkg_setup -} - -src_install() { - webapp_src_preinst - - dodoc README RELEASE-DATE-${MY_PV} ChangeLog - rm -f LICENSE README* RELEASE-DATE-${MY_PV} - - if ! use setup; then - rm -rf setup || die "Cannot remove setup utility" - elog "The phpMyAdmin setup utility has been removed." - elog "It is a regular target of various exploits. If you need it, set USE=setup." - else - elog "You should consider disabling the setup USE flag" - elog "to exclude the setup utility if you don't use it." - elog "It regularly is the target of various exploits." - fi - - insinto "${MY_HTDOCSDIR#${EPREFIX}}" - doins -r . - - webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php - webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt - webapp_src_install -} diff --git a/dev-db/phpmyadmin/phpmyadmin-4.9.6.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.9.6.ebuild index 7bfdc2708637..4f82904cb1fa 100644 --- a/dev-db/phpmyadmin/phpmyadmin-4.9.6.ebuild +++ b/dev-db/phpmyadmin/phpmyadmin-4.9.6.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://www.phpmyadmin.net/" SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz" LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos" IUSE="setup" RDEPEND=" diff --git a/dev-embedded/Manifest.gz b/dev-embedded/Manifest.gz index b1f0383a62d6..f254a9fdcc71 100644 Binary files a/dev-embedded/Manifest.gz and b/dev-embedded/Manifest.gz differ diff --git a/dev-embedded/stlink/stlink-1.6.0.ebuild b/dev-embedded/stlink/stlink-1.6.0.ebuild index 7d2549c15a32..0c5402c06feb 100644 --- a/dev-embedded/stlink/stlink-1.6.0.ebuild +++ b/dev-embedded/stlink/stlink-1.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils udev +inherit udev xdg cmake DESCRIPTION="stm32 discovery line linux programmer" HOMEPAGE="https://github.com/texane/stlink" @@ -17,13 +17,12 @@ fi LICENSE="BSD" SLOT="0" -IUSE="" RDEPEND="virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_configure() { local mycmakeargs=( @@ -33,5 +32,5 @@ src_configure() { -DLIB_INSTALL_DIR:PATH="$(get_libdir)" ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild index cadef633bb8a..0c5402c06feb 100644 --- a/dev-embedded/stlink/stlink-9999.ebuild +++ b/dev-embedded/stlink/stlink-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 -inherit cmake-utils udev +inherit udev xdg cmake DESCRIPTION="stm32 discovery line linux programmer" HOMEPAGE="https://github.com/texane/stlink" @@ -11,19 +11,18 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/texane/stlink.git" inherit git-r3 else - SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz" + SRC_URI="https://github.com/texane/stlink/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" fi LICENSE="BSD" SLOT="0" -IUSE="" RDEPEND="virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_configure() { local mycmakeargs=( @@ -33,5 +32,5 @@ src_configure() { -DLIB_INSTALL_DIR:PATH="$(get_libdir)" ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-go/Manifest.gz b/dev-go/Manifest.gz index 7c5af1fe3ee4..cb70b8e76ade 100644 Binary files a/dev-go/Manifest.gz and b/dev-go/Manifest.gz differ diff --git a/dev-go/go-bindata/metadata.xml b/dev-go/go-bindata/metadata.xml index ed3952c19107..3477a0700af7 100644 --- a/dev-go/go-bindata/metadata.xml +++ b/dev-go/go-bindata/metadata.xml @@ -3,6 +3,6 @@ - jteeuwen/go-bindata + go-bindata/go-bindata diff --git a/dev-haskell/Manifest.gz b/dev-haskell/Manifest.gz index 7e615cfd130b..af131aab3f37 100644 Binary files a/dev-haskell/Manifest.gz and b/dev-haskell/Manifest.gz differ diff --git a/dev-haskell/yesod-core/Manifest b/dev-haskell/yesod-core/Manifest index a311d01ae6bb..7a6daa51ab59 100644 --- a/dev-haskell/yesod-core/Manifest +++ b/dev-haskell/yesod-core/Manifest @@ -1 +1 @@ -DIST yesod-core-1.6.18.5.tar.gz 100191 BLAKE2B 55ec54c6a79dc45ac3b4c8ef4d4d0f0ea111130f1f49ee88dea4848a95921eff8822607f0ebbc740b0562eeb0ccdc9e7ee9febe851e4ce9f9e451369c62c993f SHA512 4e9c739792714d6dd39ad8dc0659a8feb2f89b8b500f440d1bfae4b5e3497a8081e743bb3303b5d6c86bb80a6220becfd1b1af782be8165f3ba1d938f4beb65f +DIST yesod-core-1.6.18.7.tar.gz 100141 BLAKE2B 0d00fffcc4371868f02ec5ec1fe4f5af15369f62b7bf88562e8c092b3988824cbbe26defd574f2514d23fca983f81cc951b75f564213f568d244069e352cc198 SHA512 fde155df74588d2eb9824e0f423b666228a1b681a83c4f30e194c8816667cd6e4fefb7cddcd66f6ff2ca745ad3ef8daee439a133b017d8583167b54a698a12a1 diff --git a/dev-haskell/yesod-core/yesod-core-1.6.18.5.ebuild b/dev-haskell/yesod-core/yesod-core-1.6.18.7.ebuild similarity index 98% rename from dev-haskell/yesod-core/yesod-core-1.6.18.5.ebuild rename to dev-haskell/yesod-core/yesod-core-1.6.18.7.ebuild index 69579f186ba8..8398bc10dcff 100644 --- a/dev-haskell/yesod-core/yesod-core-1.6.18.5.ebuild +++ b/dev-haskell/yesod-core/yesod-core-1.6.18.7.ebuild @@ -9,7 +9,7 @@ CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal DESCRIPTION="Creation of type-safe, RESTful web applications" -HOMEPAGE="http://www.yesodweb.com/" +HOMEPAGE="https://www.yesodweb.com/" SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index b43befef05d1..754641fe9df7 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/erlang/Manifest b/dev-lang/erlang/Manifest index 58cc8207403d..5de91a4721df 100644 --- a/dev-lang/erlang/Manifest +++ b/dev-lang/erlang/Manifest @@ -2,6 +2,7 @@ DIST erlang-23.0.3.tar.gz 56388263 BLAKE2B 58f41ab2956c93fbabc6b91f89e3c3f3c23a7 DIST erlang-23.0.4.tar.gz 56394805 BLAKE2B 10a4e9e3084ad2d1bb10fa736d86eb03fa6b249f83b9d06bfef4c37f99ad86dd1415c2fbaa1524cddaf57dd228d25f388fa9fe9f5b4a03ba7477080e11020fb1 SHA512 53d4b7a5e76113bb3a9695a266e58dbebb57887b1eea4e8acb56bb85d194295231d739719d526dfc6d1f0bf745d7f059fdf5ec9dc79859f5b16a75c4d0a6b348 DIST erlang-23.1.1.tar.gz 56498218 BLAKE2B cd513a2d45aecc12503df8765e0f4170001373c0e6b35b4c01d7471906408558a3b6bbf9c189858fce3cb8fd7020270813550e2099f04c8094afc49dcd070016 SHA512 572164e601796bc7b0df3818c859b23872f148dcc72f44f611d9d5684b0c9974b00496aa0fd521dc01d0d3481556b6641d3cbd859bd7bfadefd15115728d16d9 DIST erlang-23.1.2.tar.gz 56501379 BLAKE2B ebedf3ebec4b5c4b6818b1f5279536059bdf58eba98bd3328952f2ff4ce3d121443b377a2cd2fc0537135daf8d986428905d6321bd26a626456949e68dd3b5e7 SHA512 c6f097c5cfb3a188b7c5e411a2cbd3f95eab50be18292a5e84d5f628dfb791497800d79810367e9d1ac1c8e6aa5c7622c9bef5e58eef02226a77b5307742360e +DIST erlang-23.1.3.tar.gz 56501389 BLAKE2B a9a463d71c286e51abdf5c1404228909b4e20e8477997a0de6a223cec166192aecb23d76ad81e6b37cac8309d94972408d265fa7653d1ba4942bf76bf2f417bf SHA512 ae88070b226df54c22693887352d3e0bd8cc3f77a872731cf52b59c386c0416efdc7f00db2690f4ab566e95d31fc828e4039ae1e9914fe35220d354c12bf086c DIST erlang_doc_html_23.0.tar.gz 36238699 BLAKE2B bce5fb1d766d3a795728cf7c00529129690f52e5dbe7363095cb7e63d5331a4dfc05c2042d24f10c7f3facbd187284aa323a92c0ed7515c1750aee4cd890fbd4 SHA512 bd0b1adf8639674d31152024e1351105249c6e6f93f28362e9e4b66ce6daadbe5eef5917a5889c926130e81bd000cfc44895ebaa309bf9a0c1c125713b715927 DIST erlang_doc_html_23.1.tar.gz 36285075 BLAKE2B e2e24ac4cecfc9c10853fd3718e8e332579a91bf25eaaf9e0fc2044d89bcd6d03fd251d6a8ab64a86439f1244e275ef398701b47933a741d4e64016838db48aa SHA512 c8fecb08344c9c7a4c7b911ac4f73e2d8c0c3778d665098c3377e055346a7ecfcc378bca28dff768c36dc7bf7447308f4fb58273875c22f2d6cd896fd6232656 DIST erlang_doc_man_23.0.tar.gz 1383486 BLAKE2B 63a9989c26797fe07fbd0ccca0d8425d94bc60a86fa93b5332c8d1f3e12a0071d9e6d4759be73bf44bf35dd14723b9e6707a84ba834e1775bc28aeec1edbe168 SHA512 81575ce7b267f5bb48bd844808e8edd4e373640bbc481372b288602eb9d3c9917e6c7c040c035b63a2f6edf437c3d826d6afdf5801765b51d9edd4a3b2a5b16f diff --git a/dev-lang/erlang/erlang-23.0.4.ebuild b/dev-lang/erlang/erlang-23.0.4.ebuild index e0cd7fb3cee3..d5356fa36a45 100644 --- a/dev-lang/erlang/erlang-23.0.4.ebuild +++ b/dev-lang/erlang/erlang-23.0.4.ebuild @@ -22,7 +22,7 @@ LICENSE="Apache-2.0" # same build of ERTS that was used when compiling the code. See # http://erlang.org/doc/system_principles/misc.html for more information. SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets" RDEPEND=" diff --git a/dev-lang/erlang/erlang-23.1.3.ebuild b/dev-lang/erlang/erlang-23.1.3.ebuild new file mode 100644 index 000000000000..a809e52a684b --- /dev/null +++ b/dev-lang/erlang/erlang-23.1.3.ebuild @@ -0,0 +1,159 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +WX_GTK_VER="3.0-gtk3" + +inherit elisp-common java-pkg-opt-2 systemd wxwidgets + +# NOTE: If you need symlinks for binaries please tell maintainers or +# open up a bug to let it be created. + +UPSTREAM_V="$(ver_cut 1-2)" + +DESCRIPTION="Erlang programming language, runtime environment and libraries (OTP)" +HOMEPAGE="https://www.erlang.org/" +SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz + http://erlang.org/download/otp_doc_man_${UPSTREAM_V}.tar.gz -> ${PN}_doc_man_${UPSTREAM_V}.tar.gz + doc? ( http://erlang.org/download/otp_doc_html_${UPSTREAM_V}.tar.gz -> ${PN}_doc_html_${UPSTREAM_V}.tar.gz )" + +LICENSE="Apache-2.0" +# We use this subslot because Compiled HiPE Code can be loaded on the exact +# same build of ERTS that was used when compiling the code. See +# http://erlang.org/doc/system_principles/misc.html for more information. +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets" + +RDEPEND=" + acct-group/epmd + acct-user/epmd + sys-libs/ncurses:0 + sys-libs/zlib + emacs? ( >=app-editors/emacs-23.1:* ) + java? ( >=virtual/jdk-1.8:* ) + odbc? ( dev-db/unixODBC ) + sctp? ( net-misc/lksctp-tools ) + ssl? ( + !libressl? ( >=dev-libs/openssl-0.9.7d:0= ) + libressl? ( dev-libs/libressl:0= ) + ) + systemd? ( sys-apps/systemd ) + wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X,opengl] ) +" +DEPEND="${RDEPEND} + dev-lang/perl +" + +S="${WORKDIR}/otp-OTP-${PV}" + +PATCHES=( + "${FILESDIR}"/18.2.1-wx3.0.patch + "${FILESDIR}"/${PN}-22.0-dont-ignore-LDFLAGS.patch + "${FILESDIR}"/${PN}-23.1.2-ac2.70.patch +) + +SITEFILE=50"${PN}"-gentoo.el + +src_prepare() { + default + + ./otp_build autoconf || die +} + +src_configure() { + use wxwidgets && setup-wxwidgets + + local myconf=( + --disable-builtin-zlib + $(use_enable hipe) + $(use_enable kpoll kernel-poll) + $(use_with java javac) + $(use_enable sctp) + $(use_with ssl ssl "${EPREFIX}"/usr) + $(use_enable ssl dynamic-ssl-lib) + $(use_enable systemd) + $(usex wxwidgets "--with-wx-config=${WX_CONFIG}" "--with-wxdir=/dev/null") + ) + econf "${myconf[@]}" +} + +src_compile() { + emake + + if use emacs ; then + pushd lib/tools/emacs &>/dev/null || die + elisp-compile *.el + popd &>/dev/null || die + fi +} + +extract_version() { + local path="$1" + local var_name="$2" + sed -n -e "/^${var_name} = \(.*\)$/s::\1:p" "${S}/${path}/vsn.mk" || die "extract_version() failed" +} + +src_install() { + local erl_libdir_rel="$(get_libdir)/erlang" + local erl_libdir="/usr/${erl_libdir_rel}" + local erl_interface_ver="$(extract_version lib/erl_interface EI_VSN)" + local erl_erts_ver="$(extract_version erts VSN)" + local my_manpath="/usr/share/${PN}/man" + + [[ -z "${erl_erts_ver}" ]] && die "Couldn't determine erts version" + [[ -z "${erl_interface_ver}" ]] && die "Couldn't determine interface version" + + emake INSTALL_PREFIX="${D}" install + + if use doc ; then + # Note: we explicitly install docs into: + # /usr/share/doc/${PF}/{doc,lib,erts-*} + # To maintain that layout we gather everything in 'html-docs'. + # See bug #684376. + mkdir html-docs || die + mv "${WORKDIR}"/doc "${WORKDIR}"/lib "${WORKDIR}"/erts-* html-docs/ || die + local DOCS=( "AUTHORS" "HOWTO"/* "README.md" "CONTRIBUTING.md" html-docs/. ) + docompress -x /usr/share/doc/${PF} + else + local DOCS=("README.md") + fi + + einstalldocs + + dosym "../${erl_libdir_rel}/bin/erl" /usr/bin/erl + dosym "../${erl_libdir_rel}/bin/erlc" /usr/bin/erlc + dosym "../${erl_libdir_rel}/bin/escript" /usr/bin/escript + dosym "../${erl_libdir_rel}/lib/erl_interface-${erl_interface_ver}/bin/erl_call" /usr/bin/erl_call + dosym "../${erl_libdir_rel}/erts-${erl_erts_ver}/bin/beam.smp" /usr/bin/beam.smp + + ## Clean up the no longer needed files + rm "${ED}/${erl_libdir}/Install" || die + + insinto "${my_manpath}" + doins -r "${WORKDIR}"/man/* + # extend MANPATH, so the normal man command can find it + # see bug 189639 + newenvd - "90erlang" <<-_EOF_ + MANPATH="${my_manpath}" + _EOF_ + + if use emacs ; then + elisp-install erlang lib/tools/emacs/*.{el,elc} + sed -e "s:/usr/share:${EPREFIX}/usr/share:g" \ + "${FILESDIR}/${SITEFILE}" > "${T}/${SITEFILE}" || die + elisp-site-file-install "${T}/${SITEFILE}" + fi + + newinitd "${FILESDIR}"/epmd.init-r2 epmd + newconfd "${FILESDIR}"/epmd.confd-r2 epmd + use systemd && systemd_newunit "${FILESDIR}"/epmd.service-r1 epmd.service +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index b24d769494c5..8e4fe788fb0b 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/leatherman/leatherman-1.12.3.ebuild b/dev-libs/leatherman/leatherman-1.12.3.ebuild index 37b42a9bc12b..75314013d9e0 100644 --- a/dev-libs/leatherman/leatherman-1.12.3.ebuild +++ b/dev-libs/leatherman/leatherman-1.12.3.ebuild @@ -22,7 +22,7 @@ DEPEND=">=dev-libs/boost-1.73:=[nls] >=sys-devel/gcc-4.8:*" PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch ) -PATCHES+=( "${FILESDIR}/${PV}"-shared_nowide.patch ) +PATCHES+=( "${FILESDIR}"/1.12.2-shared_nowide.patch ) src_prepare() { sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die diff --git a/dev-libs/libksba/Manifest b/dev-libs/libksba/Manifest index 87ba7f23d88d..c3c330a4ac41 100644 --- a/dev-libs/libksba/Manifest +++ b/dev-libs/libksba/Manifest @@ -1,2 +1,3 @@ DIST libksba-1.3.5.tar.bz2 620649 BLAKE2B 6ed250684e40b4efcc07a86584adfbc659f886919d0306e82e2275c9acb8a1df698c7cc9a917fa66dd906fe473d14fa29507c03e681aed86286d65d9551cb5f6 SHA512 60179bfd109b7b4fd8d2b30a3216540f03f5a13620d9a5b63f1f95788028708a420911619f172ba57e945a6a2fcd2ef7eaafc5585a0eb2b9652cfadf47bf39a2 DIST libksba-1.4.0.tar.bz2 651319 BLAKE2B 0e3f49fd0d389d905ff75ddad6ac1f3d158d2d4d9f47d08c14d11e3fdc07aa3f661e7ea53612770269b4e08e7b61af2d83a1679874daa0605638454059cb3321 SHA512 7c1666017ebfa50b5663153dead1e019e0ee342c4f44ee8f644fc749e82dcc983237ef0f557de9de3f7908dc90405d967a4db2e36e04fe0d5a09edf49f8a0c8d +DIST libksba-1.5.0.tar.bz2 656518 BLAKE2B 077655031f82ff13c596ad0be0d0f15408a5b793f00e3af3516f4f207285f7d76096216c7bf11d2c46c28eb332cc74df39bef84afb0f47184c8ebdd8cb92a86d SHA512 84383e8b084bf47ac646a9aacb174e510ffcab4b966b649e4351990eaf7ce78cc9d199e6c4f3a1be697888c857ee86ecef949c06156790c7d8d0bd0fb0142721 diff --git a/dev-libs/libksba/libksba-1.5.0.ebuild b/dev-libs/libksba/libksba-1.5.0.ebuild new file mode 100644 index 000000000000..c2943f6574d1 --- /dev/null +++ b/dev-libs/libksba/libksba-1.5.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="X.509 and CMS (PKCS#7) library" +HOMEPAGE="http://www.gnupg.org/related_software/libksba" +SRC_URI="mirror://gnupg/libksba/${P}.tar.bz2" + +LICENSE="LGPL-3+ GPL-2+ GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="static-libs" + +RDEPEND=">=dev-libs/libgpg-error-1.8" +DEPEND="${RDEPEND}" +BDEPEND="sys-devel/bison" + +src_configure() { + local myeconfargs=( + $(use_enable static-libs static) + GPG_ERROR_CONFIG="${EROOT}/usr/bin/${CHOST}-gpg-error-config" + LIBGCRYPT_CONFIG="${EROOT}/usr/bin/${CHOST}-libgcrypt-config" + $("${S}/configure" --help | grep -o -- '--without-.*-prefix') + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + # ppl need to use lib*-config for --cflags and --libs + find "${ED}" -type f -name '*.la' -delete || die +} diff --git a/dev-libs/libusb/libusb-1.0.23-r1.ebuild b/dev-libs/libusb/libusb-1.0.23-r1.ebuild index 32e1df38e1a6..565cbb6a7d73 100644 --- a/dev-libs/libusb/libusb-1.0.23-r1.ebuild +++ b/dev-libs/libusb/libusb-1.0.23-r1.ebuild @@ -10,7 +10,7 @@ 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 ~riscv ~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 )" diff --git a/dev-libs/libzia/libzia-4.23.ebuild b/dev-libs/libzia/libzia-4.23.ebuild index 4977fe81e7dc..732c9aaf2d9f 100644 --- a/dev-libs/libzia/libzia-4.23.ebuild +++ b/dev-libs/libzia/libzia-4.23.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="ftdi" RDEPEND="dev-libs/glib:2 diff --git a/dev-libs/popt/popt-1.18.ebuild b/dev-libs/popt/popt-1.18.ebuild index 713c1120f69a..d4da266cab41 100644 --- a/dev-libs/popt/popt-1.18.ebuild +++ b/dev-libs/popt/popt-1.18.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://ftp.rpm.org/${PN}/releases/${PN}-1.x/${P}.tar.gz" LICENSE="MIT" SLOT="0" -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="nls static-libs" RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )" diff --git a/dev-libs/re2/re2-0.2020.11.01.ebuild b/dev-libs/re2/re2-0.2020.11.01.ebuild index 55f22b8e2cd7..73ac80054b95 100644 --- a/dev-libs/re2/re2-0.2020.11.01.ebuild +++ b/dev-libs/re2/re2-0.2020.11.01.ebuild @@ -18,7 +18,7 @@ LICENSE="BSD" # https://abi-laboratory.pro/tracker/timeline/re2/ SONAME="9" SLOT="0/${SONAME}" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="icu" BDEPEND="icu? ( virtual/pkgconfig )" diff --git a/dev-libs/rocksdb/Manifest b/dev-libs/rocksdb/Manifest new file mode 100644 index 000000000000..ea754e39314b --- /dev/null +++ b/dev-libs/rocksdb/Manifest @@ -0,0 +1 @@ +DIST rocksdb-6.14.5.tar.gz 6396476 BLAKE2B c5fc6e9e306ad428285d2c42958804ff403e14fc6b0c2f1231f49197a98937c0703422e1c14f357fb2b3c138fc038ce46c57cce1d184e4babec3c094b00e5180 SHA512 76e4a5b8a7061e42e9d010d04204429a446c857b29a199456db1f207a4849bedc98c7368346b87fa3a69ee5a3d68abedc943248b960273194a9e71634c767258 diff --git a/kde-apps/kdav/metadata.xml b/dev-libs/rocksdb/metadata.xml similarity index 61% rename from kde-apps/kdav/metadata.xml rename to dev-libs/rocksdb/metadata.xml index 2fdbf33d963d..cee379b15409 100644 --- a/kde-apps/kdav/metadata.xml +++ b/dev-libs/rocksdb/metadata.xml @@ -1,8 +1,8 @@ - - kde@gentoo.org - Gentoo KDE Project + + chutzpah@gentoo.org + Patrick McLean diff --git a/dev-libs/rocksdb/rocksdb-6.14.5.ebuild b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild new file mode 100644 index 000000000000..a1c12d2cf0bd --- /dev/null +++ b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Embeddable, persistent key-value store for fast storage" +HOMEPAGE="http://rocksdb.org https://github.com/facebook/rocksdb/" +SRC_URI="https://github.com/facebook/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc static-libs" + +COMMON_DEPEND=" + app-arch/bzip2:= + app-arch/lz4:= + app-arch/snappy:= + dev-python/zstandard:= + sys-libs/zlib:= + jemalloc? ( dev-libs/jemalloc:= ) +" +DEPEND="${COMMON_DEPEND} + dev-cpp/gflags +" +RDEPEND="${COMMON_DEPEND}" + +src_configure() { + mycmakeargs=( + -DFAIL_ON_WARNINGS=OFF + -DFORCE_AVX2=$(usex cpu_flags_x86_avx2 ON OFF) + -DFORCE_AVX=$(usex cpu_flags_x86_avx ON OFF) + -DFORCE_SSE42=$(usex cpu_flags_x86_sse4_2 ON OFF) + -DPORTABLE=ON + -DWITH_JEMALLOC=$(usex jemalloc ON OFF) + -DWITH_TESTS=OFF + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + + if ! use static-libs; then + rm ${ED}/usr/$(get_libdir)/*.a || die + fi +} diff --git a/dev-libs/xxhash/xxhash-0.8.0.ebuild b/dev-libs/xxhash/xxhash-0.8.0.ebuild index baba81c88143..6a5a61f5e4da 100644 --- a/dev-libs/xxhash/xxhash-0.8.0.ebuild +++ b/dev-libs/xxhash/xxhash-0.8.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/Cyan4973/xxHash/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="BSD-2 GPL-2+" # https://abi-laboratory.pro/tracker/timeline/xxhash SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" IUSE="static-libs" S="${WORKDIR}/xxHash-${PV}" diff --git a/dev-perl/DBD-SQLite/DBD-SQLite-1.660.0.ebuild b/dev-perl/DBD-SQLite/DBD-SQLite-1.660.0.ebuild index 5db99dbbfb29..64cd22a9f601 100644 --- a/dev-perl/DBD-SQLite/DBD-SQLite-1.660.0.ebuild +++ b/dev-perl/DBD-SQLite/DBD-SQLite-1.660.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Self Contained RDBMS in a DBI Driver" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="test system-sqlite" RESTRICT="!test? ( test )" diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index adc820e42044..9d2dcb88b9a9 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index ec998ec95bc1..198b121abd3f 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild index da3437400ab9..512eb0dc6fad 100644 --- a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild +++ b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/fantix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" DEPEND="test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )" RDEPEND="dev-python/contextvars[${PYTHON_USEDEP}]" diff --git a/dev-python/ansi2html/Manifest b/dev-python/ansi2html/Manifest index 02afa9749333..39861ac51fc7 100644 --- a/dev-python/ansi2html/Manifest +++ b/dev-python/ansi2html/Manifest @@ -1 +1,2 @@ DIST ansi2html-1.5.2.tar.gz 27124 BLAKE2B 0d02e8cea46622c4d2cbd06f06fd31b3c7e93d61f6b9eadb37815d2ee490b6ce4233fb019f175f61465ef89520a944bbe14543627a6421a64304b58dc038c0ca SHA512 163d5784d04e6eea0847676b967051382fa74a354c19462d1b73980fd1b0a7eb45ce1f1bd88cca803356e7767ccab1bbce6de4152c98aec98534f4ed7d65a83f +DIST ansi2html-1.6.0.tar.gz 36053 BLAKE2B deb63c6c9f431ff225cfcbbd2995f0fce9535736dba7d8c92f1f2e51d525640e69bc4269ab073438239edb35815288fa17b2d69c89cca7627ba2b5096009611f SHA512 35e5fb6cee96fe41a658c005734a58b08bc05e8ad5903ad18684c316bdad351a70c534b4162416225bc2ca774d01b4ac1bb8a8dad3170d0738aa7b3daf46b3c0 diff --git a/dev-python/ansi2html/ansi2html-1.6.0.ebuild b/dev-python/ansi2html/ansi2html-1.6.0.ebuild new file mode 100644 index 000000000000..5af0de4bf9fe --- /dev/null +++ b/dev-python/ansi2html/ansi2html-1.6.0.ebuild @@ -0,0 +1,50 @@ +# 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} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Convert text with ANSI color codes to HTML" +HOMEPAGE="https://pypi.org/project/ansi2html/ https://github.com/pycontribs/ansi2html" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="doc" + +RDEPEND=">=dev-python/six-1.7.3[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + doc? ( + app-text/asciidoc + ) + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest # for BDEPEND + +python_install_all() { + use doc && doman man/${PN}.1 + distutils-r1_python_install_all +} + +python_test() { + distutils_install_for_testing + pytest -vv || die "Tests fail with ${EPYTHON}" +} + +src_compile() { + # Upstream https://github.com/pycontribs/ansi2html/issues/124 + use doc && emake man/ansi2html.1 + distutils-r1_src_compile +} diff --git a/dev-python/asgiref/Manifest b/dev-python/asgiref/Manifest index 1275dc91eb5c..76cce639fab0 100644 --- a/dev-python/asgiref/Manifest +++ b/dev-python/asgiref/Manifest @@ -1 +1,2 @@ DIST asgiref-3.3.0.tar.gz 26945 BLAKE2B bdb1154175f95fc068fd1841a69ec9c5e782c212d9649aef0b9ca7592987f88d23311149f573febd76e5ab6fea4e6087a8c5e6e9e2edb4dab37d34ff3d180845 SHA512 fbb66af8f0e2bbeed31ae6ac358f045c0eef6cdeec6edbaf358f7551ff24e69233cfbc898b60ac9d16d747a9fb7e10a8b203065602140c025b2ae7d4d7229def +DIST asgiref-3.3.1.tar.gz 27197 BLAKE2B 1a883ed8b87dd1214ffb7672796159684f04a9a38d75562df38455ea039667f877020263b4577a3f6f7cfdfa0aae2a2074781db669f10c5b639a5009ee4c94b3 SHA512 2d709e8b0ea8b9f11f485ee438cfbbfe8a832de1aa37094a6339cfff23c2605ec79f691320c42bebf46f3bddb005ebb6857d17a8ad641c87a149536cc65984e6 diff --git a/dev-python/asgiref/asgiref-3.3.1.ebuild b/dev-python/asgiref/asgiref-3.3.1.ebuild new file mode 100644 index 000000000000..2a8bf860303e --- /dev/null +++ b/dev-python/asgiref/asgiref-3.3.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 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="ASGI utilities (successor to WSGI)" +HOMEPAGE=" + https://asgi.readthedocs.io/en/latest/ + https://github.com/django/asgiref/ + https://pypi.org/project/asgiref/" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +BDEPEND=" + test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest diff --git a/dev-python/asttokens/asttokens-2.0.4.ebuild b/dev-python/asttokens/asttokens-2.0.4.ebuild index 087484b3c4b2..8edc051f2c99 100644 --- a/dev-python/asttokens/asttokens-2.0.4.ebuild +++ b/dev-python/asttokens/asttokens-2.0.4.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" BDEPEND=" diff --git a/dev-python/aws-sam-translator/Manifest b/dev-python/aws-sam-translator/Manifest index 1be0dc527d71..9f3a52e7c90a 100644 --- a/dev-python/aws-sam-translator/Manifest +++ b/dev-python/aws-sam-translator/Manifest @@ -1,3 +1,5 @@ DIST aws-sam-translator-1.27.0.tar.gz 795259 BLAKE2B e28bad80f5353002a2279149efd1e1e3e4575445c45cb275dd0896986633b6968c0a47487a08a056303e629289f9584a11c813a9bc134a3c261bb235d696aeb5 SHA512 e1c7c5fc0e7f4554f6122479da928f45642f6d2573141c8c1f1b6283a1d4419e58deadb298a12ee1d48daa24af2fef71879865af858f5b890648b1594f9c4e2c DIST aws-sam-translator-1.28.1.tar.gz 798846 BLAKE2B 6cb554f81f13e6a2196d2fbc64a043a855ecc6c8f5d3e2bb87ef41969b5ef804c2920e3d2f099ce1e1ebb697a2f3c49539e9c63514f15c2acab0cc109ba20ea1 SHA512 6404c908d281e5ac7cf6d61211fc584f7293d4d8d3d509d4386a12e056b684e498ed66fcfc299fbfcabdd12a770c9e56a5fb53c37d06412c60fb28c1f20dfdf6 DIST aws-sam-translator-1.29.0.tar.gz 805869 BLAKE2B 89054fa7e2488b53daf73a78ae130ad4217775403855d19e22a922f841a36a5a476351f3eec08f1f4b269b12a7e5df1fcd72e301f8ee03896e049becac25c40e SHA512 906107a558dce3a48a263d350d0f475710fa2c5cec38bff2b01c747fc8a0b13851fc3b3c2a4e498c5f7977501215dbee753e455c64508d95754e076ffd8b1089 +DIST aws-sam-translator-1.30.0.tar.gz 810821 BLAKE2B cb7d13162512f793c33f617290d36ad78d2410ad225835ae175192b7e57ae29745a247e08f9b34a158837aca57a4f30bcb9f90f0c4b902ef238ba4e99a0f80ff SHA512 a521994bbbf461a7a28dc8861a751e9495c0684c7462bb5da6459dffbc69917291f2ca6d0480a6dc0264d954c37fccff8c9b3691992d2fe082ce981d31af21da +DIST aws-sam-translator-1.30.1.tar.gz 810865 BLAKE2B 2039e0724d05f7f9d8372b149f04427e0bd1a8a9b503e6dc49ee76cb4e7678d8f759317c43922d190a2bb55a446feffcbf448cdbc9343538b5c77d81b5545e5f SHA512 8fcdf0843f52c8424a78540cf2a9c3922070bcd34a2e0001a17b89b19b471dfbfc4fcd48211b80292d2f7b76eb2881152c68c4d4b56499ab38942c025226d49e diff --git a/dev-python/aws-sam-translator/aws-sam-translator-1.30.0.ebuild b/dev-python/aws-sam-translator/aws-sam-translator-1.30.0.ebuild new file mode 100644 index 000000000000..fa1227477627 --- /dev/null +++ b/dev-python/aws-sam-translator/aws-sam-translator-1.30.0.ebuild @@ -0,0 +1,44 @@ +# 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 + +DESCRIPTION="A library that transform SAM templates into AWS CloudFormation templates" +HOMEPAGE="https://github.com/awslabs/serverless-application-model https://pypi.org/project/aws-sam-translator/" +SRC_URI="https://github.com/awslabs/serverless-application-model/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/serverless-application-model-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/boto3-1.5[${PYTHON_USEDEP}] + >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}] + >=dev-python/six-1.11[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/parameterized[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + # remove pytest-cov dependency + sed -r -e 's:--cov(-[[:graph:]]+|)[[:space:]]+[[:graph:]]+::g' \ + -i pytest.ini || die + + # don't install tests + sed -e 's:"tests",:"tests", "tests.*",:' -i setup.py || die + + # deps are installed by ebuild, don't try to reinstall them via pip + truncate --size=0 requirements/*.txt || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/aws-sam-translator/aws-sam-translator-1.30.1.ebuild b/dev-python/aws-sam-translator/aws-sam-translator-1.30.1.ebuild new file mode 100644 index 000000000000..fa1227477627 --- /dev/null +++ b/dev-python/aws-sam-translator/aws-sam-translator-1.30.1.ebuild @@ -0,0 +1,44 @@ +# 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 + +DESCRIPTION="A library that transform SAM templates into AWS CloudFormation templates" +HOMEPAGE="https://github.com/awslabs/serverless-application-model https://pypi.org/project/aws-sam-translator/" +SRC_URI="https://github.com/awslabs/serverless-application-model/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/serverless-application-model-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/boto3-1.5[${PYTHON_USEDEP}] + >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}] + >=dev-python/six-1.11[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/parameterized[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + # remove pytest-cov dependency + sed -r -e 's:--cov(-[[:graph:]]+|)[[:space:]]+[[:graph:]]+::g' \ + -i pytest.ini || die + + # don't install tests + sed -e 's:"tests",:"tests", "tests.*",:' -i setup.py || die + + # deps are installed by ebuild, don't try to reinstall them via pip + truncate --size=0 requirements/*.txt || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/bandit/Manifest b/dev-python/bandit/Manifest index f916b3dc8190..7a428fb14b7a 100644 --- a/dev-python/bandit/Manifest +++ b/dev-python/bandit/Manifest @@ -1,4 +1,3 @@ -DIST bandit-1.5.1.tar.gz 480856 BLAKE2B f8a1a7dc1d93a1b6c8d3eb5bcbecda895b29dfebe055ac358b9437bd0c9ab5562e6d25a658bc2092cff6bddfd0245e71bf39ee88b2718e3a0c7376fa50293ae1 SHA512 e6f596e73af45ca2ff4d200fad63d37adf44efd5de52f8061f5a349b66457a39eb442ad442d5fb57b2e0e98c8bae0eb0879b958ff619b4e26c0183bc8b928e36 DIST bandit-1.6.2.tar.gz 498567 BLAKE2B ab7885df634ff8258fc7620523b56995cb2f262f4290193a9063e216f66ba8ecb31ec17f09d0b72a0472923266953c46e47e74fcdfb39784873738c033e00c6c SHA512 9facce98411ceb9e33e5a978ca4aad2dab541ffe215e480806ac921b7f7067572445d8e32e8d473ef30bb57155b72b2ffd4e06d458a3da82e2a9fb1b1d8a4b9f DIST bandit-1.6.2_py38-1.patch 3892 BLAKE2B 750160be3d234b0d638307e74fd130921f43f460edca8d0ef0f9a98f34db709e0649b1e481668abd094942fa05ee710b82b3161fd82bc56bb0f5e73d90a6e70f SHA512 dc1e55bdcbf180e70757dd92aa590fe1348d84a2143af73e48c35c62864cf0720f6b055482eb274a4261adff37c84f998c75916b8ab70d99264bd88d09611e06 DIST bandit-1.6.2_py38-2.patch 3724 BLAKE2B 8ce857419d99b059ce1b28aba7c04218397cad82f0fdb6e7eb3e57f698d6360de7b0f4402c40540e41d510db1aa0b75e006e0e15a20a8c5534b7e5a3cf78a0e8 SHA512 25f73b087b296867556d9b9bb7f789a4df64bd2930509086bc24312c43a3a98209d63a5b00009e31fd2653e89c85e62849c7af6ba044abc10c5789a6e3d9a968 diff --git a/dev-python/bandit/bandit-1.5.1-r1.ebuild b/dev-python/bandit/bandit-1.5.1-r1.ebuild deleted file mode 100644 index 998ae418d415..000000000000 --- a/dev-python/bandit/bandit-1.5.1-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=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="A security linter from OpenStack Security" -HOMEPAGE="https://openstack.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~s390 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - test? ( - >=dev-python/coverage-4.0[${PYTHON_USEDEP}] - !~dev-python/coverage-4.4[${PYTHON_USEDEP}] - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/hacking-1.0.0[${PYTHON_USEDEP}] - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] - >=dev-python/stestr-1.0.0 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] - >=dev-python/beautifulsoup-4.6.0[${PYTHON_USEDEP}] - >=dev-python/pylint-1.4.5[${PYTHON_USEDEP}] - )" -RDEPEND=" - ${CDEPEND} - >=dev-python/GitPython-1.0.1[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]" - -python_test() { - stestr init - stestr run || die -} diff --git a/dev-python/bandit/bandit-1.6.2-r1.ebuild b/dev-python/bandit/bandit-1.6.2-r1.ebuild index 6665e6f7533a..a212a5aca53b 100644 --- a/dev-python/bandit/bandit-1.6.2-r1.ebuild +++ b/dev-python/bandit/bandit-1.6.2-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~s390 x86" +KEYWORDS="amd64 ~arm64 ~s390 x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index 0f6979130f42..a92e64e9bc1e 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -1,14 +1,5 @@ -DIST boto3-1.15.1.tar.gz 335146 BLAKE2B d2d008dcb2059b120f142aaf588264122d1e84b450ab1fbc938627d1c8cc9bb60d1b80e68bc5e538376b56866156ca901abde747a8f973588b64b962284229c4 SHA512 46e1aabaa975b0215c2ece160b5e584468ba19699f87686c2787404d0a13274f763272cec577f830c6c71cb7f9e10b1c317a1348770f49283257d8cba65c5e3a -DIST boto3-1.15.10.tar.gz 336021 BLAKE2B 71a8bcfd115c0066931e616d1d3678d51ba09460b3c36bf83d838cb0708a7f06afab8b94757a52c055cee51bfbaf1044b086621da16fd6e367cf728aec9080af SHA512 79c12baf5aebb8f2e7048d9713cbb73f2fd100ba8aaabc740757c1bab30e5626fde57b1553ed365dc65b0094513b5a6f305607ce48d62ecd8d5df183ee3db412 DIST boto3-1.15.18.tar.gz 336927 BLAKE2B 0ddc7fbd0fffcbeafeee7b9aa0f699087369f315551e243175793c82d95c97dbbe8997d5fc280e9fed18612d1058d858a7b34b0b1b4ac7905774009beb62c0a6 SHA512 2dc88c27bafe7ff2f2b00be94c37e7cabc94f09ca0ccb898a5d29cd8087bb1945d226ed5d87e955250775038fc039740e68d93662b465e99a16cfebfd2fa2944 -DIST boto3-1.16.10.tar.gz 338466 BLAKE2B 3b4c1978859679d193fff2d44c9c8f693759527ebf0913e55049332135d6271bf30ad0b935e84867b9b1ceba3c196526dc20c7b2c985c3b16ba8f3a08796d19c SHA512 b582ee69d489f784d6f05f8be634e2f014f55046c11ed1609f624dac006cd3a05bad597ac155c5cc0dce7fb40843de2d2cf48829135c680e91a6d6b2ca15f49e -DIST boto3-1.16.11.tar.gz 338598 BLAKE2B 0cd8f8271e91a459cc4cb669b466ea82f135c37d3f604303defab9d7ae6aaa8809bb64b2f6802a10ba9e5bf687a03ff24739d9c6e549d8539c1af9bc0c9f9e96 SHA512 db6b84d61dc1bb1c62115736e066fbe93f9e3e6f866d6b091b646dd576d4c99ac8dbcdcf80a43b837bc8395c7633d9a633db42fe097f8ba88e68602e44fe88c0 -DIST boto3-1.16.12.tar.gz 338648 BLAKE2B ffb266966a51ee1ce91d1062bf5f3500c8176b809e856320ea3feb8994768b6b227db14f00ed749df7afb626e864a933446caa2c714653b8dc6b0b4cac0ccddb SHA512 6f6e114d1be6d7773bdde574f12db1046e56592158960f1a0a67e935df8896afa21e82844b37f27c31af6b9705d6704a8b98b9e8b0aa1a683bce32357582430e -DIST boto3-1.16.13.tar.gz 338735 BLAKE2B ce2bea512bc01b4a5fabdae7438f88118a61d550604c2aa38b573333dc7bdb1b13d205884084da7f3f0425b994410676920b00c474f81abdce84f2d7c53cf1e8 SHA512 ed7f58fe7529e6ec34f1a3d8d173fce532fe4ee7185657b1dc41186eb42a506d55f2803f69ea0b6ae216a6590f33ad15fff0c31975a6002566b54d7b187d5edc -DIST boto3-1.16.14.tar.gz 338870 BLAKE2B 71ee68c7d4dce99a6534dffa1f65717f6d68460a127a4917da5b45a6f84cc9a917b424f8e4c517ec046f14b2c9a2643d6ed05fc4fae07f7fcc744cab471aca24 SHA512 814007838379613bf03720ce2b8c4bbf8ade0f8f0a328da03d1f9c58df4db3aa36f4c2e4b67d222d72674a159e352499011b37349215c2c2526d9f43c2935ae6 -DIST boto3-1.16.15.tar.gz 338877 BLAKE2B 817fab1f721419cf061b833f1e3e531a0480747fc7879ed048a62b481048f762bd78271832a85e782b91ffc6eebd7bb21550715c0c2cf7bfcea1f3d7ed8d3f8e SHA512 7b5bcbacfa733a81a2dbbaff89e244a37dee280e10263871bfda1e844760584ac350b4fafa721bd2ef39696e80bf317011a1d39f9baa29197b4a224ef74bfa53 DIST boto3-1.16.16.tar.gz 338959 BLAKE2B e34c14b89ddd402e4ca7037e1fdbb5121ff9eb2c7fefb67eabadb378cc4f8e5f5ddc3c933d366d086155b4b16319ed9e7d85af21bca1da0f17be3c2171dc9c1a SHA512 b0d0cf8877ac66e28f925c3eda6e02c845c8753c96ebb8684d7eb3a3e82ac6323ae8775715bcf7c70889921e53b0224561460cbc0c95ae56a17d606c75245971 -DIST boto3-1.16.17.tar.gz 339112 BLAKE2B e5db626fd2a3b1b8a12fbf5f4113c482d4ae0e04eb0b7090ebe75e417c4a3a9a762129a8cfc342fb8550d67b36750de6f5fceccc8a653f27a2201c9be85de466 SHA512 5842cb056ef4b418628778cf0e7c362c6d1175565060008c2ff5fa3b726fccaec96bb1133c8e82788d8f1a2e527fb154a234eb606804f97463e04f0f64c57a1c -DIST boto3-1.16.18.tar.gz 339220 BLAKE2B 795ed9b7f201c36bb12ff8d10484abd92ff36d821817a8fa0be2c8f8a16d352367e9c03a465ce0d27a346121a6974710c42450bb97fe5d844fab57d1fb44b817 SHA512 fdc2e994a3c73d521e88706886f2d5170281e4d83db2804da1aaf3afb1c14a7bf443ec17d15708e6227ca6b069909f89a9ed790c68aec15e35f9b4a9951b2d63 -DIST boto3-1.16.19.tar.gz 339308 BLAKE2B ccd62bd218b3081116cea1eb0e46b5e92d98738aa5709bbda4fdd01cf017e257c70f9e687f64b353c20fed6a74399e6936de136d4e0e809ffe60163ab81b4ac9 SHA512 f629f7d912e636e3fa5e309aa3142e213fe4a0ba30f0862e39290e6f85914f69f15a5e6a3c3f0675818247cf30aa2a58bb6094e273a2af0f9b6e9351c6905a5d +DIST boto3-1.16.20.tar.gz 339432 BLAKE2B fefe33be5baca95880a52856a6d6fb166895951b7eb83500420ef07058d91b465c2acc4ea5eb72a46b4de013fcd9136df2d60398cb75a46f199415ff43e366bb SHA512 7e88a70d7ae9065c3b749510b3bbfc36e2645abedf173cd8be79666895ede34f98c9a33bbe43b05843a4c809a29b4d2d925fd2398ab778f0f096597e98b204bc +DIST boto3-1.16.21.tar.gz 339637 BLAKE2B 122025941b38dd94ccea22a5561ccac29f3033320da4e3f332a1200c84215bef1a320dc36ce59733265816d867c409449a32830df4f20fa08f943ca754fb9257 SHA512 b811e153b9c356e9e414e8a82076000d885e29778273d9e839d73e2b35405d23ae8236bb57c657c0f2ee6def48636bf024548cdc0f6e5e642c7b97d97b76307a DIST boto3-1.16.9.tar.gz 337905 BLAKE2B ed01e28fd7e62e5e5028307c93f92004bfbecffa77bc2ba1d6574b92ec2c515d910eb5107ac5ee03e0aca909f97f379aa65b5f839c8067634fa69266c58de33f SHA512 7343b8432788ef981819f91fe2ba27c4ec3947d01ff55914f7c89607250ecf60db2da8d25c8a2c7001ef546a9abed4cb744c5937ca09497aa1a983049648bd5e diff --git a/dev-python/boto3/boto3-1.15.1.ebuild b/dev-python/boto3/boto3-1.15.1.ebuild deleted file mode 100644 index c6eddaafb507..000000000000 --- a/dev-python/boto3/boto3-1.15.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.15.10.ebuild b/dev-python/boto3/boto3-1.15.10.ebuild deleted file mode 100644 index 9d757dda1943..000000000000 --- a/dev-python/boto3/boto3-1.15.10.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.15.18.ebuild b/dev-python/boto3/boto3-1.15.18.ebuild index ccc99e1c2415..c6eddaafb507 100644 --- a/dev-python/boto3/boto3-1.15.18.ebuild +++ b/dev-python/boto3/boto3-1.15.18.ebuild @@ -17,7 +17,7 @@ if [[ "${PV}" == "9999" ]]; then BOTOCORE_PV=${PV} else SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" # botocore is x.(y+3).z BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" diff --git a/dev-python/boto3/boto3-1.16.12.ebuild b/dev-python/boto3/boto3-1.16.12.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.12.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.13.ebuild b/dev-python/boto3/boto3-1.16.13.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.13.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.14.ebuild b/dev-python/boto3/boto3-1.16.14.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.14.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.15.ebuild b/dev-python/boto3/boto3-1.16.15.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.15.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.17.ebuild b/dev-python/boto3/boto3-1.16.17.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.17.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.18.ebuild b/dev-python/boto3/boto3-1.16.18.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.18.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.19.ebuild b/dev-python/boto3/boto3-1.16.19.ebuild deleted file mode 100644 index ccc99e1c2415..000000000000 --- a/dev-python/boto3/boto3-1.16.19.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# 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 - -DESCRIPTION="The AWS SDK for Python" -HOMEPAGE="https://github.com/boto/boto3" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/boto3" - inherit git-r3 - BOTOCORE_PV=${PV} -else - SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" - - # botocore is x.(y+3).z - BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" -fi - -RDEPEND=" - >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] - >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] - >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -python_prepare_all() { - # don't lock versions to narrow ranges - sed -e '/botocore/ d' \ - -e '/jmespath/ d' \ - -e '/s3transfer/ d' \ - -i setup.py || die - - # prevent an infinite loop - rm tests/functional/docs/test_smoke.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/boto3/boto3-1.16.10.ebuild b/dev-python/boto3/boto3-1.16.20.ebuild similarity index 100% rename from dev-python/boto3/boto3-1.16.10.ebuild rename to dev-python/boto3/boto3-1.16.20.ebuild diff --git a/dev-python/boto3/boto3-1.16.11.ebuild b/dev-python/boto3/boto3-1.16.21.ebuild similarity index 100% rename from dev-python/boto3/boto3-1.16.11.ebuild rename to dev-python/boto3/boto3-1.16.21.ebuild diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index 433df0917804..0aee042c9870 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -1,15 +1,5 @@ -DIST botocore-1.18.1.tar.gz 6839699 BLAKE2B 188c5a05345fc7c4d4c05b3a8d9b675b5c2141326caa62f9ae8a5a996f6c7ff4e56c581fd010afbc4c57073d7b6efd22debad3e03456f6ad0453c7f823d6409e SHA512 63a9a7ac93a8774d7a1a511da0464d7b5d0841598c7358e97343406b4d76842ca56a0187ff173e0a29d9da9ee22f94fde66f4b8c3e9c8a3fbcabdaddbe95b752 -DIST botocore-1.18.10.tar.gz 6899351 BLAKE2B 4de11277fd8df8436818cd50d946e7e53191fb698a3d7bab034112445e8d66aec74dc17ed6c93bce636f29f3e455d2b08cdc56bec3a3e794d9e12e7fd5e0ccee SHA512 4a9ceaf2a0380c804b066d4c13703d4cae598c87c1f7f14b3e967a79cf829ad2e5aac39e5182db3bfff93c3289ab60571774710eee7e4ba544e20b37feb7fcc3 DIST botocore-1.18.18.tar.gz 6942407 BLAKE2B e58183d5aa79a210d82c1dc21806c9c86f993498055c52742e4c1ef2f697ae1faf120b9edf8efeb229dad3f3230f0847b534ac071a1e4d32136eacc3c18c7c84 SHA512 a92a20c86390905f22c10e3ba649008b7c9ccab147b6b3aecc89f26dc891aaf38a974fd8ba1f792a38ac89a98dba64a949741445abf7db133f60189d1e8da31e -DIST botocore-1.19.10.tar.gz 6973384 BLAKE2B dc0b1f45eda4cab8bbf56e45fc6f6134b9c23b485bae3eedb57f0773d8be0bd2cc1c3c291e0a1215383a56f519e17ad7848da889f355d9aef0194ed34303b3c0 SHA512 80f34dc31031b269af982fad8c62b8dbb7ee0fea7b91bfc63c9039e155ba55ad711167c5debd68306aab1f96e5761fae65303868fa2e4ecb17892be6baf24f2d -DIST botocore-1.19.11.tar.gz 6981193 BLAKE2B 8e7c799faef989817ce4cfbe26c359af0a8fc4c6997697d3ca669ec4bf273c2c8fd0cd2e8f5f044b77373d3fe81f69aa9c0d936f416876cc9efa860e04754dcd SHA512 650c2b4a7839312f3fb8450d61a521c0514c1f8e2a80835f2b5fa1f01c01675d53f18d1c5cd1e2c54aa520d6867820b85906649e64eaf9b56b143b7e1c7daca3 -DIST botocore-1.19.12.tar.gz 6985286 BLAKE2B f65a416ecae9911899dc16411cc80a968e343531f43ded1b7f4c546df59d8f2cbb93d6027d07a267831ce71d27b53b9ac61ced2d91b69c94c344bed0167c64d7 SHA512 94d0d56dd5dc0c3dd3c28b6d9deb47949420778cbfaa30829db6a2787f3d8088327cb0194b920cee0598d7fc28936c4c0e532874449024485b27a06bf03982df -DIST botocore-1.19.13.tar.gz 6985490 BLAKE2B 2da3b5840c18e7ec1bcdf9b535defc9ba5d1b0990febdbc6bfbe3aaadfb81b754d2a9df76aa3978279dee22af35a50da6cda186d1d632403dbb60208fec216f5 SHA512 74323c87a9a6e6009862d11f5e96dfb5d2cde282aca206a1703038f001d926d282fdb6cce9085c8645bc4e1b2cff1666cbf013a508b3aa3cb598cdd74c476b6b -DIST botocore-1.19.14.tar.gz 6996482 BLAKE2B ff5b977254fad5af2ec5129e0bb3ceafc071389a7f389f0da7f43b978804f1ecc4db303009611619be24318d4ff2eb2e109f00cea6438b8ae670ba572f3e0862 SHA512 546dea8b1ca588f055b0adbdb0602e5eaf5cfe094374379972a2323b809bb231974af61b66efe2c8ac7f33972200c9272464b13297fedf1b7bdbe68231678cd5 -DIST botocore-1.19.15.tar.gz 6996595 BLAKE2B 562bb257f481a5668d25c99a4a6d27bff6f50e3fda68cbc09ef40bc6a86fafa95de1206828f0903aba3042b8bd5ab7c8a5ebde4c93ee3be54d3175ab5bf588b7 SHA512 d0d63edae759dd865d54ffb635c79fededbdba9a4147b3008f2aa41a19dd674a5d780d9a6006db33b0ec53a5278fd393dbe483a4a491d96e1fada5cf26be0c53 DIST botocore-1.19.16.tar.gz 7009239 BLAKE2B d582538f25c500297ab8a5ce3f054a5ba2f94d0d5f37d0aeee934943854bb5fc429e33040b56d1e06cfd93a51bd917c96dac9432c5b84d59513b47af52285ac1 SHA512 d36b580e0ad56143b9b36679d17910fcdb49ec132143441d6a078797f79bec1fd6f06b2afb8542e16e844fb892c2902aeab1cfcf66a8ddb9ecbcc92be4ced29d -DIST botocore-1.19.17.tar.gz 7021338 BLAKE2B f03ba2d6db87bf5ce11a778bdc0f9a3adba54b4b245a106cbf20aec6ac2ebc4a09d57e6e93518c142552782cba380d5c195a4efc68a49be5709d7c014b58172d SHA512 2ed07ed3e4f6b43b24e1766cc0c74950bdce3e88d3ff9c10798bd99361c6314b45bed3c6fd74467b5c05470f9d6baf122c241dfb5a5a4aaab6c39fd9aa689b96 -DIST botocore-1.19.18.tar.gz 7024457 BLAKE2B 98adb675219f13b38b0a219eaa0437a2f81623f57433907d6615e49f36c580eabf3352f9f6a53b7a261262d8f164f2a019888cc31947c16ef69cc54536067f0e SHA512 bf247c773415cc2aa672c0d5ee2258ec2d5c77909d72c24f2190f962f7d3546427c2008f22cdb13534cb1bd1e3c249cbf268629316ddee50bde22643d720c330 -DIST botocore-1.19.19.tar.gz 7027786 BLAKE2B 237c3973439a7ff3b6a1be9bd2993cbcb8e7a21922ed71b23361a12eca706f2bbee05ad2a36d89744146e7555e1cbf08f311f09362cddc20c9f078c187592dba SHA512 554cc8ebf865739aa1289aeaaf8abeb705603d6e727682298e573025ceb4a9f60263177eb96bb6381d603f5341310296f374e8643c37c1325a281d0f8efd42cb -DIST botocore-1.19.8.tar.gz 6970481 BLAKE2B 52d3f8ee7dc38feddb3f7799959624b4baf4b75ebcf3ad8257c25ad13b8a8c3cf526ee187681b6d8f5f6ee874071a02c59bd106cb4b4e23ad9cf13b9aa74deef SHA512 845dfec33f63deee44bfffe81801995bfcc2014880c2d520b927421219279107b0fe44dc84425c0a55ddec73d5ad8aeb34f2b84178e1365d137240a2e94370c7 +DIST botocore-1.19.20.tar.gz 7055105 BLAKE2B f25a6aff2073d8fa8de0c787b34239ee434c0616b2666b7191c5303e6d76389c883aca9a2b03243caf989f270f981bb69873ddbbf21a6afdd1073d8a6bb959dd SHA512 24c0e6e6a67d03374f86608762030e42cd14f2010763c57ed06d74a6a514a81dd25f9681bec890795ed6ec1f488aafeaeb3175e7264deb72438dde35e6e8398d +DIST botocore-1.19.21.tar.gz 7060392 BLAKE2B 2539996a3aed89d9e76143c4e899cc09b278ef5fb23ea3b8cacc4af4a3b5287043f193e40ab07937147db70085aef688c8fe432124a0c0fe89f1ae7e2f003bec SHA512 43a656c29944dc3b0c84f321d251b3d135634ac8cd639a9c13a1f04a0e0e1421bd0c2ed8200f7e032faab6b45d7ea64f03991a90e5db837542501ae9f1843d6e DIST botocore-1.19.9.tar.gz 6972834 BLAKE2B 3407c056c7995cc1ccb1b5b4c5b3a6254e38672b52e7889a7a022520283416e4dfcabd05c8ca0ed78e4624c7a20c9f43bfde87a76d7a72660b4c95256e4f9ca4 SHA512 8433f22ae7652e524a82da8d2ccda48da9eef44788333898b7526335d57a7757b80754f0d5c6a2c84ec3bde2ec9fc7da5cf872cbda7286f620b4f4878fe9a583 diff --git a/dev-python/botocore/botocore-1.18.1.ebuild b/dev-python/botocore/botocore-1.18.1.ebuild deleted file mode 100644 index 6c4f654eef47..000000000000 --- a/dev-python/botocore/botocore-1.18.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/urllib3[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.18.10.ebuild b/dev-python/botocore/botocore-1.18.10.ebuild deleted file mode 100644 index 6c4f654eef47..000000000000 --- a/dev-python/botocore/botocore-1.18.10.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/urllib3[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.18.18.ebuild b/dev-python/botocore/botocore-1.18.18.ebuild index ba67bf7ac94b..6c4f654eef47 100644 --- a/dev-python/botocore/botocore-1.18.18.ebuild +++ b/dev-python/botocore/botocore-1.18.18.ebuild @@ -16,7 +16,7 @@ if [[ "${PV}" == "9999" ]]; then inherit git-r3 else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" fi RDEPEND=" diff --git a/dev-python/botocore/botocore-1.19.12.ebuild b/dev-python/botocore/botocore-1.19.12.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.12.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.13.ebuild b/dev-python/botocore/botocore-1.19.13.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.13.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.14.ebuild b/dev-python/botocore/botocore-1.19.14.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.14.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.15.ebuild b/dev-python/botocore/botocore-1.19.15.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.15.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.17.ebuild b/dev-python/botocore/botocore-1.19.17.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.17.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.18.ebuild b/dev-python/botocore/botocore-1.19.18.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.18.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.19.ebuild b/dev-python/botocore/botocore-1.19.19.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.19.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/botocore/botocore-1.19.10.ebuild b/dev-python/botocore/botocore-1.19.20.ebuild similarity index 100% rename from dev-python/botocore/botocore-1.19.10.ebuild rename to dev-python/botocore/botocore-1.19.20.ebuild diff --git a/dev-python/botocore/botocore-1.19.11.ebuild b/dev-python/botocore/botocore-1.19.21.ebuild similarity index 100% rename from dev-python/botocore/botocore-1.19.11.ebuild rename to dev-python/botocore/botocore-1.19.21.ebuild diff --git a/dev-python/botocore/botocore-1.19.8.ebuild b/dev-python/botocore/botocore-1.19.8.ebuild deleted file mode 100644 index ca40b64d111f..000000000000 --- a/dev-python/botocore/botocore-1.19.8.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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="Low-level, data-driven core of boto 3" -HOMEPAGE="https://github.com/boto/botocore" -LICENSE="Apache-2.0" -SLOT="0" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/boto/botocore" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -fi - -RDEPEND=" - dev-python/six[${PYTHON_USEDEP}] - dev-python/jmespath[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" -) - -distutils_enable_sphinx docs/source \ - 'dev-python/guzzle_sphinx_theme' -distutils_enable_tests nose - -src_prepare() { - # unpin deps - sed -i -e "s:>=.*':':" setup.py || die - # very unstable - sed -i -e 's:test_stress_test_token_bucket:_&:' \ - tests/functional/retries/test_bucket.py || die - distutils-r1_src_prepare -} - -python_test() { - # note: suites need to be run separately as one of the unit tests - # seems to be leaking mocks and breaking a few functional tests - nosetests -v tests/unit || - die "unit tests failed under ${EPYTHON}" - nosetests -v tests/functional || - die "functional tests failed under ${EPYTHON}" -} diff --git a/dev-python/cov-core/cov-core-1.15.0-r2.ebuild b/dev-python/cov-core/cov-core-1.15.0-r2.ebuild index 83c5764ec713..db9b6d52ae77 100644 --- a/dev-python/cov-core/cov-core-1.15.0-r2.ebuild +++ b/dev-python/cov-core/cov-core-1.15.0-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=">=dev-python/coverage-3.6[${PYTHON_USEDEP}]" diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest index 1a48a2b1e476..58828571fd2c 100644 --- a/dev-python/coverage/Manifest +++ b/dev-python/coverage/Manifest @@ -1,3 +1,2 @@ DIST coverage-4.5.4.tar.gz 385185 BLAKE2B 9d040bff13cebd1cb7147f15c3ec03bb08648cf801b5b2bb046a6b5bcadb3d3886be8bf0a624d225f25d10a5ca82fe5fb88f55e44e92a0a3285836b837972970 SHA512 ba534e04fe35cbadc4b16735f25c08f579a49a6677ec106680f222f2dfb3d0f1e011d0962f1c2108c375173ac4588bea1619ecda05ff9ba6fd888daddfd27b0e -DIST coverage-5.2.1.tar.gz 694076 BLAKE2B 0aaf9b5668c2fac1220c377d5b841341b534bd14579b70fa3d4c5e64239df71b95c2278e041f46ae3f9d2ae55145894d51457caabdd9540b7d8ce3f32f8d409c SHA512 bda6129a4f4e2db3d26878036ceec137e4f359b8d37ce087e4007751bf0bbda7d706967a50b120378fa533f980e70142328099332374a1f303fa0083ffc078b0 DIST coverage-5.3.tar.gz 693632 BLAKE2B 9daa3a0fd7f8c3ff7c9d68603e11a0a419d3ab50e3c3fb6be5b694aa1f7566040e1212b7175dfa4f71a0a309db325c00f94a85e0e9e755ae8c4f09c499d0daf4 SHA512 f40a21c394b1a72118965f702ae2b8e09c4e0b2fe92709aedf1de4c8074cd9c2cae0ed4860fbb863e4e5479f1067ff806d7051f7683d6b324de9945c0cacfc39 diff --git a/dev-python/coverage/coverage-4.5.4.ebuild b/dev-python/coverage/coverage-4.5.4.ebuild index 0f9a10796d32..5c165c0f480f 100644 --- a/dev-python/coverage/coverage-4.5.4.ebuild +++ b/dev-python/coverage/coverage-4.5.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 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~s390 sparc x86" RESTRICT="test" DISTUTILS_IN_SOURCE_BUILD=1 diff --git a/dev-python/coverage/coverage-5.2.1.ebuild b/dev-python/coverage/coverage-5.2.1.ebuild deleted file mode 100644 index 6f1953cdc422..000000000000 --- a/dev-python/coverage/coverage-5.2.1.ebuild +++ /dev/null @@ -1,69 +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,9} pypy3 ) -PYTHON_REQ_USE="threads(+),sqlite(+)" -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -DESCRIPTION="Code coverage measurement for Python" -HOMEPAGE="https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86" -#IUSE="test" -# The tests are impossible to appease. Please run them externally -# via tox. Or fix the ebuild if you have hours of time to spend -# on something utterly useless. -RESTRICT="test" - -#BDEPEND=" -# test? ( -# dev-python/PyContracts[${PYTHON_USEDEP}] -# dev-python/flaky[${PYTHON_USEDEP}] -# dev-python/hypothesis[${PYTHON_USEDEP}] -# dev-python/mock[${PYTHON_USEDEP}] -# dev-python/pytest[${PYTHON_USEDEP}] -# >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}] -# ) -#" - -src_prepare() { - # avoid the dep on xdist, run tests verbosely - sed -i -e '/^addopts/s:-n3:-v:' setup.cfg || die - distutils-r1_src_prepare -} - -python_compile() { - if [[ ${EPYTHON} == python2.7 ]]; then - local CFLAGS="${CFLAGS} -fno-strict-aliasing" - export CFLAGS - fi - - distutils-r1_python_compile -} - -python_test() { - distutils_install_for_testing - local bindir=${TEST_DIR}/scripts - - pushd tests/eggsrc >/dev/null || die - distutils_install_for_testing - popd >/dev/null || die - - "${EPYTHON}" igor.py zip_mods || die - PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer py || die - - # No C extensions under pypy - if [[ ${EPYTHON} != pypy* ]]; then - cp -l -- "${TEST_DIR}"/lib/*/coverage/*.so coverage/ || die - PATH="${bindir}:${PATH}" "${EPYTHON}" igor.py test_with_tracer c || die - fi - - # clean up leftover "egg1" directory - rm -rf build/lib/egg1 || die -} diff --git a/dev-python/dask/dask-2.30.0.ebuild b/dev-python/dask/dask-2.30.0.ebuild index fdf3cb11121e..4b9d0e642eb4 100644 --- a/dev-python/dask/dask-2.30.0.ebuild +++ b/dev-python/dask/dask-2.30.0.ebuild @@ -30,7 +30,6 @@ BDEPEND=" dev-python/moto[${PYTHON_USEDEP}] dev-python/numexpr[${PYTHON_USEDEP}] dev-python/pytest-xdist[${PYTHON_USEDEP}] - >=dev-python/s3fs-0.0.8[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] ) " diff --git a/dev-python/denonavr/Manifest b/dev-python/denonavr/Manifest index a74c4fd99f83..913f34df72d0 100644 --- a/dev-python/denonavr/Manifest +++ b/dev-python/denonavr/Manifest @@ -1 +1,2 @@ DIST denonavr-0.9.5.tar.gz 94016 BLAKE2B b6a013e6831600316dd4e1e33caec7da18774e17a1e9423dd2ae989c4f787cac471e21e2de06db0e01427345234a87825e298dc27881f21fbf69a720bbb04df4 SHA512 798fe126ab3c57ef285f45978e3b06ff5fab99eb3fc47e277c2d2eeb1786ac30fc09de8d23f2b4f59a1240bc2df4fca8e6946baf5135e051f387d1195a070ac7 +DIST denonavr-0.9.6.tar.gz 101801 BLAKE2B bfdaee53f91624e953b3d509ab31b8012ce6afc1d55f683d52af9787b0954425866e96c43609e15294b6e4969ca358bee5524a53ceaf87c3e984694c0cb4a137 SHA512 9e862e63a816661643e3b01e0e0d8b4d700d3ce26716525e5dfe85a2387b732a8c71c11447500b1bcdd0b21cf1b689212a81a3d41aba242dc902fb47a5a98867 diff --git a/dev-python/denonavr/denonavr-0.9.6.ebuild b/dev-python/denonavr/denonavr-0.9.6.ebuild new file mode 100644 index 000000000000..a1811fa7960b --- /dev/null +++ b/dev-python/denonavr/denonavr-0.9.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6..9} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 + +DESCRIPTION="Automation Library for Denon AVR receivers" +HOMEPAGE="https://github.com/scarface-4711/denonavr" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/netifaces[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/requests-mock[${PYTHON_USEDEP}] + dev-python/testtools[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/distlib/distlib-0.3.1-r1.ebuild b/dev-python/distlib/distlib-0.3.1-r1.ebuild index c83e683b53d0..2a6a5461296f 100644 --- a/dev-python/distlib/distlib-0.3.1-r1.ebuild +++ b/dev-python/distlib/distlib-0.3.1-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI=" LICENSE="PSF-2" 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" IUSE="test" # This package's tests are extremely fragile and tend to break or hang # when it doesn't like metadata of packages installed on the system. diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild index 06fa00c58a42..74e2e1504dcc 100644 --- a/dev-python/executing/executing-0.5.3.ebuild +++ b/dev-python/executing/executing-0.5.3.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" # asttokens is optional runtime dep BDEPEND=" diff --git a/dev-python/fakeredis/fakeredis-1.4.3.ebuild b/dev-python/fakeredis/fakeredis-1.4.3.ebuild index dc6eaa978823..400a4e6c6370 100644 --- a/dev-python/fakeredis/fakeredis-1.4.3.ebuild +++ b/dev-python/fakeredis/fakeredis-1.4.3.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND=" dev-python/redis-py[${PYTHON_USEDEP}] diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild index 86d470b83364..eb92e2dc92d3 100644 --- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild +++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild @@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 arm64 x86" +KEYWORDS="amd64 arm64 x86" distutils_enable_tests pytest diff --git a/dev-python/flask-compress/Manifest b/dev-python/flask-compress/Manifest index aa7deadfb61a..ad661a884b01 100644 --- a/dev-python/flask-compress/Manifest +++ b/dev-python/flask-compress/Manifest @@ -1,2 +1 @@ -DIST Flask-Compress-1.5.0.tar.gz 6473 BLAKE2B eba68544018d587a7651c07739ac14218ff9918031fee740893245816daa7494d4998cf60b533971ba8dc0c7c9e3d1e1c14ee746d9e29deab70b30478a3c4eae SHA512 fe2d1dfef8be8d04b78a2938dd52a1f6068e6c35741f593fbb0d3d050b789b8d70188d683f7028b92a180653afda0566bda29b82475b20444f6563c8620ff1ec DIST Flask-Compress-1.8.0.tar.gz 10182 BLAKE2B ff292503dd0a141ffb3d49e57f62755c59244129e53268f97d0ab5bdf4644108d9eea5567982fbb000afe54d7a418751f5b8ecb685b3e42c25413e7740d03004 SHA512 9bdc45b6d189e8b896a781dc48b761ac99a551a32bdaa9695556e7dabfd76f7ef98249397a31492e629ea35d82c5104d99b5803b9ecf9b2637cc802a87939f1c diff --git a/dev-python/flask-compress/flask-compress-1.5.0.ebuild b/dev-python/flask-compress/flask-compress-1.5.0.ebuild deleted file mode 100644 index 87024f2040d5..000000000000 --- a/dev-python/flask-compress/flask-compress-1.5.0.ebuild +++ /dev/null @@ -1,28 +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 distutils-r1 - -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" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - app-arch/brotli[python,${PYTHON_USEDEP}] - dev-python/flask[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest diff --git a/dev-python/gevent/gevent-20.9.0.ebuild b/dev-python/gevent/gevent-20.9.0.ebuild index 6ec90a0c720e..0dbde5af2661 100644 --- a/dev-python/gevent/gevent-20.9.0.ebuild +++ b/dev-python/gevent/gevent-20.9.0.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="doc examples test" RESTRICT="!test? ( test )" diff --git a/dev-python/greenlet/Manifest b/dev-python/greenlet/Manifest index be50f662ec7c..f87324766557 100644 --- a/dev-python/greenlet/Manifest +++ b/dev-python/greenlet/Manifest @@ -1,2 +1 @@ -DIST greenlet-0.4.16.tar.gz 60576 BLAKE2B e0c53af4b6886fe00f0299a1779e478b7cbce5ff733669e8a62757cef49f034e19b7b932e7900b09e288ff4ab7e883fc2dd5f97f78c0e1b5702e5ba9c9f62fa1 SHA512 0dc473c05c1d54a830c009fe8197fd2017b8f3117532af0fc7970eb5abd93a82bbaa1a8403375a0ac7148fcff63cdc3faa663d0c5e442f3dd10ea3b2f98b306e DIST greenlet-0.4.17.tar.gz 61381 BLAKE2B fd5b8ed72acd390f3d5fe3ca1d5894bc47278b1f0e04e4fe5c6015c60dfb3109e766dc6072bf85b96760f673a1af08cd546171906800a1221a216899077a908e SHA512 41afd80a6cd5e9cf9c8149016f24d0944d2651288d50094ef04bb6759202903c436af639872d7aab631ed8fe13aad7d4405beb428415b198a3ba30a96d4bd3de diff --git a/dev-python/greenlet/greenlet-0.4.16-r1.ebuild b/dev-python/greenlet/greenlet-0.4.16-r1.ebuild deleted file mode 100644 index 5356c0a7b6ef..000000000000 --- a/dev-python/greenlet/greenlet-0.4.16-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Note: greenlet is built-in in pypy -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit distutils-r1 flag-o-matic - -DESCRIPTION="Lightweight in-process concurrent programming" -HOMEPAGE="https://pypi.org/project/greenlet/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 -hppa -ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -DISTUTILS_IN_SOURCE_BUILD=1 - -distutils_enable_sphinx doc --no-autodoc - -python_compile() { - if ! python_is_python3; then - local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS} - append-flags -fno-strict-aliasing - fi - - distutils-r1_python_compile -} - -python_test() { - "${PYTHON}" run-tests.py -n || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index 649e2887ec56..713466d51d36 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -5,3 +5,4 @@ DIST hypothesis-python-5.37.5.tar.gz 9092380 BLAKE2B b5bf9f5c5bb1002154ea6041c38 DIST hypothesis-python-5.41.0.tar.gz 9094817 BLAKE2B 3025caf9a0ccba19abfd12273edefe1db825a40615a378fb076e8d3ba96bfecc64ec23be6ef72b6fcd89d7d6b5c94bbf12abf3212e4a521a21def892b0d95a56 SHA512 76a0147d36179368d62a3d9e6f9f27effa903476fa0cccdba4574937c470bbfd020daccf9b3df73f457b543b6a94ce0858fe4d9abdfe9c16a8c49858c8bc0e92 DIST hypothesis-python-5.41.1.tar.gz 9095771 BLAKE2B 29c5c091f4b827d1f1e6276d0401c1a673077304b3ee8b0252536c3eeda066a4cfa764856edb222ba6cbaebb424b08aebc8d8ec00c5e0d445774b1c62ed98593 SHA512 b1f02e32e6c5bdb6ca0a338901715508a03d2734898c673c5b3a5b25dee34922d7fbfcc2534b0c658d003d5de3e97abecb5a9b4f00ada0cc85c457b4b870a873 DIST hypothesis-python-5.41.2.tar.gz 9095799 BLAKE2B c1743f2e9872cefdd82dd79b60f78ae02bb975be2156bf7c05054627ca8386092588721450dfe14954129e46ea3556b78f7784102640d84368bdc98af2980b04 SHA512 712a6b3a007e4b354e9ed2137b7dd53652abbbf0b324467ce540ca886fb956eae5d00f83cbc1c9b1799a4a3abc64f4d26d9aed85d5fb689e904e1125b87b88eb +DIST hypothesis-python-5.41.3.tar.gz 9095982 BLAKE2B 3a1b7052b3f71d1f8139101d16f2f74c2d434514a201b7e04e5452ac2c5fbe7288d592c0020769f3a48f73347cdce53f507ab65db7bfb4f3823d0f7997e48058 SHA512 974dee6040222fa55729257cea4e3c4c049625a2a5dfddbc12667dbd58dfe31718474ce8e9de81519e998c7a0c8ff01920e0aa2bca9fb7100754e985177f4b69 diff --git a/dev-python/hypothesis/hypothesis-5.36.2.ebuild b/dev-python/hypothesis/hypothesis-5.36.2.ebuild index b817839fd0ac..db19c179fcc6 100644 --- a/dev-python/hypothesis/hypothesis-5.36.2.ebuild +++ b/dev-python/hypothesis/hypothesis-5.36.2.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 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" IUSE="cli test" RESTRICT="!test? ( test )" diff --git a/dev-python/hypothesis/hypothesis-5.41.3.ebuild b/dev-python/hypothesis/hypothesis-5.41.3.ebuild new file mode 100644 index 000000000000..b817839fd0ac --- /dev/null +++ b/dev-python/hypothesis/hypothesis-5.41.3.ebuild @@ -0,0 +1,63 @@ +# 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 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +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}] + !! + #else +@@ -48,11 +44,7 @@ hpTimer(void) + { + struct timeval tv; + PY_LONG_LONG ret; +-#ifdef GETTIMEOFDAY_NO_TZ +- gettimeofday(&tv); +-#else + gettimeofday(&tv, (struct timezone *)NULL); +-#endif + ret = tv.tv_sec; + ret = ret * 1000000 + tv.tv_usec; + return ret; diff --git a/dev-python/line_profiler/line_profiler-3.0.2.ebuild b/dev-python/line_profiler/line_profiler-3.0.2.ebuild index a48003e8777a..5c5578115921 100644 --- a/dev-python/line_profiler/line_profiler-3.0.2.ebuild +++ b/dev-python/line_profiler/line_profiler-3.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) DISTUTILS_USE_SETUPTOOLS=rdepend @@ -26,6 +26,10 @@ DEPEND="test? ( dev-python/coverage[${PYTHON_USEDEP}] dev-python/ubelt[${PYTHON_USEDEP}] )" +PATCHES=( + "${FILESDIR}"/${P}-python3_9.patch +) + distutils_enable_tests pytest python_test() { diff --git a/dev-python/lmdb/Manifest b/dev-python/lmdb/Manifest index 47883370872e..3933a1cd54c8 100644 --- a/dev-python/lmdb/Manifest +++ b/dev-python/lmdb/Manifest @@ -1,2 +1 @@ -DIST lmdb-0.92.tar.gz 155720 BLAKE2B fa991dba144e636d395e264c70de61bf6e1391bed589b8e67075eb604ad3cde7bc1593f596f884e13ef4c744efddac93467eb0e9d7e79d445a71e21e1f5541f7 SHA512 5177abe0c441fb9067ad84de0cafda960113042404507eaf36194efe614fbc9fda37668b9d8a07d4a7f674b0c1a267194ddfb241834a3b1db0d8026f53841cf2 DIST lmdb-1.0.0.tar.gz 876673 BLAKE2B 33fdf7dd344e42412b756f7c6d42c291f94bb2410366802b22b8045c8ae5ff4f73f41cdc655e750f0ccb9f547f70b190bb9b584d7858edd07c1fb274bff684eb SHA512 3a4dba711ce5a3795a7f916cf04d5c7e9d4b5df30161dcbd02b53bcec73b96450865fb2bd8fe4a9ca2b5060531d03cefd9ea19aa09f139f93c3d03b2516f5632 diff --git a/dev-python/lmdb/lmdb-0.92.ebuild b/dev-python/lmdb/lmdb-0.92.ebuild deleted file mode 100644 index c3be0c1d61f7..000000000000 --- a/dev-python/lmdb/lmdb-0.92.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 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Python bindings for the Lightning Database" -HOMEPAGE="https://github.com/dw/py-lmdb/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="OPENLDAP" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="dev-db/lmdb:=" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_compile() { - LMDB_FORCE_SYSTEM=1 distutils-r1_python_compile -} diff --git a/dev-python/loky/loky-2.9.0.ebuild b/dev-python/loky/loky-2.9.0.ebuild index 5d4a3524b53e..0cf126c023e3 100644 --- a/dev-python/loky/loky-2.9.0.ebuild +++ b/dev-python/loky/loky-2.9.0.ebuild @@ -13,7 +13,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" RDEPEND=" dev-python/cloudpickle[${PYTHON_USEDEP}] diff --git a/dev-python/miniupnpc/miniupnpc-2.1.20201016.ebuild b/dev-python/miniupnpc/miniupnpc-2.1.20201016.ebuild index a99f7f7d0f82..e2122994dfda 100644 --- a/dev-python/miniupnpc/miniupnpc-2.1.20201016.ebuild +++ b/dev-python/miniupnpc/miniupnpc-2.1.20201016.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ppc ppc64 x86" +KEYWORDS="amd64 ppc ppc64 x86" IUSE="" RDEPEND=">=net-libs/miniupnpc-${PV}:0=" diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest index 767904fcde5a..75ba045782b8 100644 --- a/dev-python/mypy/Manifest +++ b/dev-python/mypy/Manifest @@ -1,3 +1,3 @@ -DIST mypy-0.781.tar.gz 2056785 BLAKE2B aa95d71400d5d46223a141adae5a8d797d2f076d3b6b48a7c09db6f7f3f2193d571368759f0ca307331d8e8c241b0322e758716a10fabccca3aaa6b733a63347 SHA512 dd3173115720510b278d15f5083a57fdb41582dfcaaf16e587116e41e87d608f4e226b61a978f4b41ef6b5ec6d3d9279facd65c0a74888b367171dcbe25550f2 DIST mypy-0.782.tar.gz 2529814 BLAKE2B c75771fb40524c2c8675236eaaddd6e39d13b4fd4f6f15f279b2e0be75eb0630987cb90f31bd7c65c4a322de4915d3a260e8f6f375b49157fea4b6362316f333 SHA512 f94433f79ea76b53ebb70589ca04ba3f39847050f73cf6deac00a3db13d742613a8ecb1a11fb84a878458025c6776b236b074e93e577c1b597e31d1300974767 -DIST mypy-typeshed-0.781-e199c2e.tar.gz 541588 BLAKE2B f663d0feccffb315efd1b6e3ebc54bbe3cf4c7873c240ed54c7be1042807e2213326db8756b5a540fd9bf5ae95a2c0850e8cb35ae2e849ec3e9a628367fabe72 SHA512 57f3159d909799838779c04ccc6541322c27c01efb026c26a145676fa75076f64b8cd3e99f7488501582c743e1102cad59320512d52d4a058d8731c54c0705cd +DIST mypy-0.790.tar.gz 2082487 BLAKE2B f8efcb701b4b7533306948721968c9a01ab6c6e56ec99fe6c36e35aca50b52f29f518aee2268a628539a372b8024094ef2d4d87da580b4dd667f41133351596e SHA512 be670456bb64cd197bb6a73832b7e0fd6439ae4af128212328a41cd93d9f644a82e79ffb05bf4695e99bd9788244a24916bf765cf30a6f162cf3b471f45c25b8 +DIST mypy-typeshed-5be9c91.tar.gz 583006 BLAKE2B 08ab2b6d479ccc66493524482051e825c65c0a94ea5cac8e56a8ea1dca85eda6104e4ed3188b7d5ce1ea99058019d66a21a7e270e3ad9df694be67ea1e6a7ce9 SHA512 2912bcf66e0f550941eb9c1f34979644857448a4bec478cfc0d662e9a401ade93ccfb2f57b5348504b4d6f0f23e576da609167f1ec3a0861414fc9c7dea80243 diff --git a/dev-python/mypy/files/mypy-0.790-py39-fixes.patch b/dev-python/mypy/files/mypy-0.790-py39-fixes.patch new file mode 100644 index 000000000000..a7a581ea8969 --- /dev/null +++ b/dev-python/mypy/files/mypy-0.790-py39-fixes.patch @@ -0,0 +1,161 @@ +From 13ae58ffe8bedb7da9f4c657297f0d61e681d671 Mon Sep 17 00:00:00 2001 +From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> +Date: Sun, 30 Aug 2020 18:11:57 -0700 +Subject: [PATCH] mypy: get CI green for py39 (#9376) + +Due to Python 3.9's new parser, this has a different (and better) error +message on Python 3.9. + +This is effectively a test of typed_ast / ast, so I don't think it +matters too much. I'm happy to alternatively just get rid of the test +altogether, or if people feel strongly, come up with a way to run the +test when run with older Pythons. + +Co-authored-by: hauntsaninja <> +--- + .travis.yml | 3 --- + mypy/test/testcheck.py | 2 ++ + test-data/unit/check-kwargs.test | 7 ------- + test-data/unit/check-python39.test | 9 +++++++++ + 4 files changed, 11 insertions(+), 10 deletions(-) + create mode 100644 test-data/unit/check-python39.test + +diff --git a/mypy/test/testcheck.py b/mypy/test/testcheck.py +index 49a85861b6..39a35c7280 100644 +--- a/mypy/test/testcheck.py ++++ b/mypy/test/testcheck.py +@@ -94,6 +94,8 @@ + # Tests that use Python 3.8-only AST features (like expression-scoped ignores): + if sys.version_info >= (3, 8): + typecheck_files.append('check-python38.test') ++if sys.version_info >= (3, 9): ++ typecheck_files.append('check-python39.test') + + # Special tests for platforms with case-insensitive filesystems. + if sys.platform in ('darwin', 'win32'): +diff --git a/test-data/unit/check-kwargs.test b/test-data/unit/check-kwargs.test +index 1dd450caae..a587be3e06 100644 +--- a/test-data/unit/check-kwargs.test ++++ b/test-data/unit/check-kwargs.test +@@ -53,13 +53,6 @@ f(b=[], a=A()) + class A: pass + [builtins fixtures/list.pyi] + +-[case testGivingSameKeywordArgumentTwice] +-import typing +-def f(a: 'A', b: 'B') -> None: pass +-f(a=A(), b=B(), a=A()) # E: keyword argument repeated +-class A: pass +-class B: pass +- + [case testGivingArgumentAsPositionalAndKeywordArg] + import typing + def f(a: 'A', b: 'B' = None) -> None: pass +diff --git a/test-data/unit/check-python39.test b/test-data/unit/check-python39.test +new file mode 100644 +index 0000000000..0e9ec683ae +--- /dev/null ++++ b/test-data/unit/check-python39.test +@@ -0,0 +1,9 @@ ++[case testGivingSameKeywordArgumentTwice] ++# This test was originally in check-kwargs.test ++# Python 3.9's new parser started producing a different error message here. Since this isn't the ++# most important test, to deal with this we'll only run this test with Python 3.9 and later. ++import typing ++def f(a: 'A', b: 'B') -> None: pass ++f(a=A(), b=B(), a=A()) # E: "f" gets multiple values for keyword argument "a" ++class A: pass ++class B: pass +From ab1bd98cc8a6415398121a47c687ede6f4cca4fd Mon Sep 17 00:00:00 2001 +From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> +Date: Thu, 8 Oct 2020 11:18:18 -0700 +Subject: [PATCH] py39: fix mypyc complaint (#9552) + +I was trying to build wheels for Python 3.9 as part of #9536, but ran +into this issue. You'll notice a couple hundred lines up msullivan +points out that mypyc can't handle conditional method definition, so +that's not an option here. + +Co-authored-by: hauntsaninja <> +--- + mypy/fastparse.py | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/mypy/fastparse.py b/mypy/fastparse.py +index 2dafbf4e14..0b72214100 100644 +--- a/mypy/fastparse.py ++++ b/mypy/fastparse.py +@@ -1257,11 +1257,13 @@ def visit_Slice(self, n: ast3.Slice) -> SliceExpr: + + # ExtSlice(slice* dims) + def visit_ExtSlice(self, n: ast3.ExtSlice) -> TupleExpr: +- return TupleExpr(self.translate_expr_list(n.dims)) ++ # cast for mypyc's benefit on Python 3.9 ++ return TupleExpr(self.translate_expr_list(cast(Any, n.dims))) + + # Index(expr value) + def visit_Index(self, n: Index) -> Node: +- return self.visit(n.value) ++ # cast for mypyc's benefit on Python 3.9 ++ return self.visit(cast(Any, n.value)) + + + class TypeConverter: +From ffed88fb95fcbfdd1363f0f719bd3e13f8fe20e9 Mon Sep 17 00:00:00 2001 +From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> +Date: Thu, 8 Oct 2020 15:00:42 -0700 +Subject: [PATCH] py39: fix mypyc complaints part 2 (#9562) + +Necessary because I previously didn't actually fix mypyc's complaint + +mypyc has more complaints. +The sys.version_info aliasing works around us hitting +https://github.com/python/mypy/blob/08f207ef4a09f56d710d63775771ae921c41d4bc/mypyc/irbuild/expression.py#L44 + +Co-authored-by: hauntsaninja <> +--- + mypy/fastparse.py | 12 ++++++++---- + 1 file changed, 8 insertions(+), 4 deletions(-) + +diff --git a/mypy/fastparse.py b/mypy/fastparse.py +index 0b72214100..3319cd6489 100644 +--- a/mypy/fastparse.py ++++ b/mypy/fastparse.py +@@ -169,7 +169,9 @@ def parse(source: Union[str, bytes], + tree.path = fnam + tree.is_stub = is_stub_file + except SyntaxError as e: +- if sys.version_info < (3, 9) and e.filename == "": ++ # alias to please mypyc ++ is_py38_or_earlier = sys.version_info < (3, 9) ++ if is_py38_or_earlier and e.filename == "": + # In Python 3.8 and earlier, syntax errors in f-strings have lineno relative to the + # start of the f-string. This would be misleading, as mypy will report the error as the + # lineno within the file. +@@ -1210,9 +1212,11 @@ def visit_Attribute(self, n: Attribute) -> Union[MemberExpr, SuperExpr]: + def visit_Subscript(self, n: ast3.Subscript) -> IndexExpr: + e = IndexExpr(self.visit(n.value), self.visit(n.slice)) + self.set_line(e, n) ++ # alias to please mypyc ++ is_py38_or_earlier = sys.version_info < (3, 9) + if ( + isinstance(n.slice, ast3.Slice) or +- (sys.version_info < (3, 9) and isinstance(n.slice, ast3.ExtSlice)) ++ (is_py38_or_earlier and isinstance(n.slice, ast3.ExtSlice)) + ): + # Before Python 3.9, Slice has no line/column in the raw ast. To avoid incompatibility + # visit_Slice doesn't set_line, even in Python 3.9 on. +@@ -1258,12 +1262,12 @@ def visit_Slice(self, n: ast3.Slice) -> SliceExpr: + # ExtSlice(slice* dims) + def visit_ExtSlice(self, n: ast3.ExtSlice) -> TupleExpr: + # cast for mypyc's benefit on Python 3.9 +- return TupleExpr(self.translate_expr_list(cast(Any, n.dims))) ++ return TupleExpr(self.translate_expr_list(cast(Any, n).dims)) + + # Index(expr value) + def visit_Index(self, n: Index) -> Node: + # cast for mypyc's benefit on Python 3.9 +- return self.visit(cast(Any, n.value)) ++ return self.visit(cast(Any, n).value) + + + class TypeConverter: diff --git a/dev-python/mypy/mypy-0.781.ebuild b/dev-python/mypy/mypy-0.781.ebuild deleted file mode 100644 index 284bb775c477..000000000000 --- a/dev-python/mypy/mypy-0.781.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# 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 distutils-r1 - -if [ "${PV}" == "9999" ]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/python/${PN}" - SRC_URI="" -else - TYPESHED_COMMIT="e199c2e" - SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://api.github.com/repos/python/typeshed/tarball/${TYPESHED_COMMIT} -> mypy-typeshed-${PV}-${TYPESHED_COMMIT}.tar.gz" -fi - -DESCRIPTION="Optional static typing for Python" -HOMEPAGE="http://www.mypy-lang.org/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="doc test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/flake8[${PYTHON_USEDEP}] - >=dev-python/pytest-3.0[${PYTHON_USEDEP}] - >=dev-python/pytest-xdist-1.18[${PYTHON_USEDEP}] - >=dev-python/pytest-cov-2.4.0[${PYTHON_USEDEP}] - >=dev-python/psutil-5.4.0[${PYTHON_USEDEP}] - >=dev-python/lxml-4.1.1[${PYTHON_USEDEP}] - >=dev-python/py-1.5.2[${PYTHON_USEDEP}] - >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}] ) - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) -" -CDEPEND=" - !dev-util/stubgen - >=dev-python/psutil-4[${PYTHON_USEDEP}] - >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}] - =dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}] - >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}] - =dev-python/pbr-1.3[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/pbr-1.3[${PYTHON_USEDEP}] >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] @@ -32,16 +28,5 @@ RDEPEND=" >=dev-python/rfc3986-1.2.0[${PYTHON_USEDEP}] >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}] >=dev-python/requests-2.18.0[${PYTHON_USEDEP}] + dev-python/importlib_metadata[${PYTHON_USEDEP}] " - -python_prepare_all() { - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} - -python_test() { - rm -rf .testrepository || die "could not remove '.testrepository' under ${EPTYHON}" - - testr init || die "testr init failed under ${EPYTHON}" - testr run || die "testr run failed under ${EPYTHON}" -} diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest index 20a319c097cf..9669fbc0d10b 100644 --- a/dev-python/oslo-context/Manifest +++ b/dev-python/oslo-context/Manifest @@ -1,2 +1 @@ -DIST oslo.context-2.22.1.tar.gz 29315 BLAKE2B 89c7dacfe42a9c3cd8d7fde8a77e3654f48788909cea725151e833a305c6916534919496393e603084311625cc9242661e72cbf1a2bdb72bedca3127e77ca9d9 SHA512 d0a3b9e41d23e8f642f8aacd998f6d6f4ad1fbf103947fc7403a57c4e3d9ae51b3cf73dfb79139d541875a0e412ed8600c4ce6b19cc207697429f48a7fb72887 DIST oslo.context-3.1.1.tar.gz 29335 BLAKE2B 2179e5c273b5e387806fc4a8b1ac2f0641f4cc9f2345cb00e6ef9c2e7c8b69709c0c14dd11254d026283b2be7e032044b6f753a13f062915db9f000ae1873f1a SHA512 a9d16475bac5aa96d086019632f417fa5b496f615b814527e547a43362f1e36ed47c47266032e72194f88716237ccff7a24bf941d66bf36afe09b846a810583b diff --git a/dev-python/oslo-context/oslo-context-2.22.1.ebuild b/dev-python/oslo-context/oslo-context-2.22.1.ebuild deleted file mode 100644 index 945f4d2d90c1..000000000000 --- a/dev-python/oslo-context/oslo-context-2.22.1.ebuild +++ /dev/null @@ -1,46 +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} ) - -inherit distutils-r1 - -DESCRIPTION="Helpers to maintain useful information about a request context" -HOMEPAGE="https://pypi.org/project/oslo.context/" -SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - test? ( - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}] - >=dev-python/coverage-4.0[${PYTHON_USEDEP}] - !~dev-python/coverage-4.4[${PYTHON_USEDEP}] - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] - >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}] - )" -RDEPEND=" - ${CDEPEND} - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] -" - -S="${WORKDIR}/oslo.context-${PV}" - -python_prepare_all() { - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} - -# This time half the doc files are missing; Do you want them? -python_test() { - nosetests tests/ || die "test failed under ${EPYTHON}" -} diff --git a/dev-python/oslo-log/Manifest b/dev-python/oslo-log/Manifest index e71eb1486090..cf51a6fa93ab 100644 --- a/dev-python/oslo-log/Manifest +++ b/dev-python/oslo-log/Manifest @@ -1,2 +1 @@ -DIST oslo.log-4.1.2.tar.gz 87095 BLAKE2B 20dd69c5002f33c288c7c04818435076ffba112b91e0f5726cb32674f10e162e378bce221278428714aa827cee81253cc21bb0588934cd024b7948b349e60a76 SHA512 f34ed66bd289fc88420d02d67ce59b498274d44f43d20b53cef1369699d715ec9706a5f62b81de3005010de1e1fa4c36aa935ee72f81160a75cbda3596a0d167 DIST oslo.log-4.4.0.tar.gz 86108 BLAKE2B b710d110759612dc7c1516a0df7b0ffe5af1ee83f99ff776212e72a52a4249657b4857a8fa99aa06047093ac554b6374ba529bafee75d4589beb538baca5b190 SHA512 6501963e90d40d2e722f338ec7c78fa36f6b5b255d36fc5df7d6160d1f35397ff112b88053603f6b57d9d93539bdb665e3c1b6894f3898988fd8d06b5a356120 diff --git a/dev-python/oslo-log/oslo-log-4.1.2.ebuild b/dev-python/oslo-log/oslo-log-4.1.2.ebuild deleted file mode 100644 index cb23d1034473..000000000000 --- a/dev-python/oslo-log/oslo-log-4.1.2.ebuild +++ /dev/null @@ -1,40 +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} ) - -inherit distutils-r1 - -DESCRIPTION="OpenStack logging config library, configuration for all openstack projects." -HOMEPAGE="https://pypi.org/project/oslo.log/ https://github.com/openstack/oslo.log" -SRC_URI="mirror://pypi/o/oslo.log/oslo.log-${PV}.tar.gz" -S="${WORKDIR}/oslo.log-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-3.1.1[${PYTHON_USEDEP}]" -RDEPEND=" - ${CDEPEND} - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/oslo-context-2.20.0[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.20.0[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.36.0[${PYTHON_USEDEP}] - >=dev-python/oslo-serialization-1.25.0[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.19.0[${PYTHON_USEDEP}] - >=dev-python/pyinotify-0.9.6[${PYTHON_USEDEP}] - >=dev-python/python-dateutil-2.7.0[${PYTHON_USEDEP}] - >=dev-python/monotonic-1.4[${PYTHON_USEDEP}]" -DEPEND="${CDEPEND}" -python_prepare_all() { - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} - -python_test() { - nosetests oslo_log/tests || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/oslo-log/oslo-log-4.4.0.ebuild b/dev-python/oslo-log/oslo-log-4.4.0.ebuild index 72e675ad2dc1..65535da0e1ae 100644 --- a/dev-python/oslo-log/oslo-log-4.4.0.ebuild +++ b/dev-python/oslo-log/oslo-log-4.4.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.log-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 x86" +KEYWORDS="amd64 ~arm64 x86" RDEPEND=">=dev-python/pbr-3.1.1[${PYTHON_USEDEP}] >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] diff --git a/dev-python/oslo-serialization/Manifest b/dev-python/oslo-serialization/Manifest index c3cc719d3908..71785a0cac0c 100644 --- a/dev-python/oslo-serialization/Manifest +++ b/dev-python/oslo-serialization/Manifest @@ -1,2 +1 @@ -DIST oslo-serialization-3.1.1.tar.gz 32180 BLAKE2B 5ce0db206732430b2553b0eb01d5df717069a07370a20ef452b77e83ed95f1cd0542eac287ba28d4fd2a3f66541823c362a925e48a3ed175abdbab2c1aa5b2f2 SHA512 5a551c33a001eeb73213dac1b4e4bc50db2ceb7dc2f9881c07abbab05cc8ccfda4d73cc9bdc673e26628aaa05c3d66f9c76ba4eb370c851990f3614b33233a95 DIST oslo-serialization-4.0.1.tar.gz 30010 BLAKE2B 0f5dae22ca096b1dd7e4eb35862c931c5cf2cb06cbd2d5660cb5322140a12052ba76c50ca24644a4957f116bc33bbdf12adcd4191ddef3006f1630d762bb71af SHA512 dea4ecb0face2bc730d1e8883e71b34d3709c6cb43a0dc3bfbb757809fda7c198949de42327b5854d65b152f3ab09fbb14311259cf584063c73b93a3cc1313c1 diff --git a/dev-python/oslo-serialization/oslo-serialization-3.1.1.ebuild b/dev-python/oslo-serialization/oslo-serialization-3.1.1.ebuild deleted file mode 100644 index f5f4d9cb8de3..000000000000 --- a/dev-python/oslo-serialization/oslo-serialization-3.1.1.ebuild +++ /dev/null @@ -1,40 +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} ) - -inherit distutils-r1 - -MY_PN=${PN/-/.} - -DESCRIPTION="Oslo Serialization library" -HOMEPAGE="https://launchpad.net/oslo" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_PN}-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} -" -RDEPEND=" - ${CDEPEND} - >=dev-python/msgpack-0.5.2[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.20.0[${PYTHON_USEDEP}] - >=dev-python/pytz-2013.6[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] -" - -python_prepare_all() { - # allow useage of renamed msgpack - sed -i '/^msgpack/d' requirements.txt || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/oslo-serialization/oslo-serialization-4.0.1.ebuild b/dev-python/oslo-serialization/oslo-serialization-4.0.1.ebuild index 393e9d75701d..ac3146c0f724 100644 --- a/dev-python/oslo-serialization/oslo-serialization-4.0.1.ebuild +++ b/dev-python/oslo-serialization/oslo-serialization-4.0.1.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/oslo-utils/Manifest b/dev-python/oslo-utils/Manifest index 670b655a8462..813b74056624 100644 --- a/dev-python/oslo-utils/Manifest +++ b/dev-python/oslo-utils/Manifest @@ -1,2 +1 @@ -DIST oslo-utils-4.1.2.tar.gz 92889 BLAKE2B 16397708abe47946c1495adf6b91ad9db6bdef8c2f475f398b3b4d390193b800ff0b1710183732b81dde89fc24aad204854d02a0e0567046e712663eaa685711 SHA512 d6784c7e1a30690ec2523514b464c95e1d6704a8c8fef5da85b76583dfb5d4b5cbfd18eb9451a90243210e50405f7541b85b39ac09d4f487119677efeef63418 DIST oslo-utils-4.6.0.tar.gz 94148 BLAKE2B 2de92b22b849522a43e81f0fa9bb5e92d2c380c07eca81cd916c536e10ec55869d5933a3a9dcc65b682ac793534094e6b0aaa74b7ac9c74724231dccc0dbae3b SHA512 fe91522c9860a7637af8b8521c297d6467f2af643f026abc97b72fd3032789219d2b3fdc9a6d8beecb0e55e4e7c319e800be295abf9639b52e32da81dae0c9a7 diff --git a/dev-python/oslo-utils/oslo-utils-4.1.2.ebuild b/dev-python/oslo-utils/oslo-utils-4.1.2.ebuild deleted file mode 100644 index 7a5cefe94e82..000000000000 --- a/dev-python/oslo-utils/oslo-utils-4.1.2.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_6 python3_7 ) - -inherit distutils-r1 - -MY_PN=${PN/-/.} - -DESCRIPTION="Oslo Utility library" -HOMEPAGE="https://launchpad.net/oslo" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_PN}-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - test? ( - >=dev-python/eventlet-0.18.2[${PYTHON_USEDEP}] - !~dev-python/eventlet-0.18.3[${PYTHON_USEDEP}] - !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}] - !~dev-python/eventlet-0.21.0[${PYTHON_USEDEP}] - !~dev-python/eventlet-0.23.0[${PYTHON_USEDEP}] - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] - >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}] - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] - >=dev-python/coverage-4.0.0[${PYTHON_USEDEP}] - !~dev-python/coverage-4.4.0[${PYTHON_USEDEP}] - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}] - /dev/null || die - "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die - PYTHONPATH=. pytest pandas -v --skip-slow --skip-network \ - -m "not single" || die "Tests failed with ${EPYTHON}" - find . '(' -name .pytest_cache -o -name .hypothesis ')' \ - -exec rm -r {} + || die - popd > /dev/null || die -} - -python_install_all() { - if use doc; then - dodoc -r "${BUILD_DIR}"/lib/doc/build/html - einfo "An initial build of docs is absent of references to statsmodels" - einfo "due to circular dependency. To have them included, emerge" - einfo "statsmodels next and re-emerge pandas with USE doc" - fi - - distutils-r1_python_install_all -} - -pkg_postinst() { - optfeature "accelerating certain types of NaN evaluations, using specialized cython routines to achieve large speedups." dev-python/bottleneck - optfeature "accelerating certain numerical operations, using multiple cores as well as smart chunking and caching to achieve large speedups" ">=dev-python/numexpr-2.1" - optfeature "needed for pandas.io.html.read_html" dev-python/beautifulsoup:4 dev-python/html5lib dev-python/lxml - optfeature "for msgpack compression using blosc" dev-python/blosc - optfeature "necessary for Amazon S3 access" dev-python/s3fs - optfeature "Template engine for conditional HTML formatting" dev-python/jinja - optfeature "Plotting support" dev-python/matplotlib - optfeature "Needed for Excel I/O" ">=dev-python/openpyxl-1.6.1" dev-python/xlsxwriter dev-python/xlrd dev-python/xlwt - optfeature "necessary for HDF5-based storage" ">=dev-python/pytables-3.2.1" - optfeature "R I/O support" dev-python/rpy - optfeature "Needed for parts of pandas.stats" dev-python/statsmodels - optfeature "SQL database support" ">=dev-python/sqlalchemy-0.8.1" - optfeature "miscellaneous statistical functions" dev-python/scipy - optfeature "necessary to use pandas.io.clipboard.read_clipboard support" dev-python/PyQt5 dev-python/pygtk x11-misc/xclip x11-misc/xsel -} diff --git a/dev-python/pandas/pandas-1.1.2.ebuild b/dev-python/pandas/pandas-1.1.2-r1.ebuild similarity index 97% rename from dev-python/pandas/pandas-1.1.2.ebuild rename to dev-python/pandas/pandas-1.1.2-r1.ebuild index 347189e62999..00bd544271d4 100644 --- a/dev-python/pandas/pandas-1.1.2.ebuild +++ b/dev-python/pandas/pandas-1.1.2-r1.ebuild @@ -18,7 +18,7 @@ S="${WORKDIR}/${P/_/}" SLOT="0" LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="doc full-support minimal test X" RESTRICT="!test? ( test )" @@ -42,7 +42,6 @@ OPTIONAL_DEPEND=" dev-python/xlsxwriter[${PYTHON_USEDEP}] ) >=dev-python/pytables-3.2.1[${PYTHON_USEDEP}] - dev-python/s3fs[${PYTHON_USEDEP}] dev-python/statsmodels[${PYTHON_USEDEP}] $(python_gen_cond_dep ' >=dev-python/xarray-0.10.8[${PYTHON_USEDEP}] @@ -168,7 +167,6 @@ pkg_postinst() { optfeature "accelerating certain numerical operations, using multiple cores as well as smart chunking and caching to achieve large speedups" ">=dev-python/numexpr-2.1" optfeature "needed for pandas.io.html.read_html" dev-python/beautifulsoup:4 dev-python/html5lib dev-python/lxml optfeature "for msgpack compression using blosc" dev-python/blosc - optfeature "necessary for Amazon S3 access" dev-python/s3fs optfeature "Template engine for conditional HTML formatting" dev-python/jinja optfeature "Plotting support" dev-python/matplotlib optfeature "Needed for Excel I/O" ">=dev-python/openpyxl-1.6.1" dev-python/xlsxwriter dev-python/xlrd dev-python/xlwt diff --git a/dev-python/pandas/pandas-1.1.4.ebuild b/dev-python/pandas/pandas-1.1.4-r1.ebuild similarity index 98% rename from dev-python/pandas/pandas-1.1.4.ebuild rename to dev-python/pandas/pandas-1.1.4-r1.ebuild index db6f0cd767d9..ec902a8752af 100644 --- a/dev-python/pandas/pandas-1.1.4.ebuild +++ b/dev-python/pandas/pandas-1.1.4-r1.ebuild @@ -41,7 +41,6 @@ OPTIONAL_DEPEND=" dev-python/xlsxwriter[${PYTHON_USEDEP}] ) >=dev-python/pytables-3.2.1[${PYTHON_USEDEP}] - dev-python/s3fs[${PYTHON_USEDEP}] dev-python/statsmodels[${PYTHON_USEDEP}] $(python_gen_cond_dep ' >=dev-python/xarray-0.10.8[${PYTHON_USEDEP}] @@ -167,7 +166,6 @@ pkg_postinst() { optfeature "accelerating certain numerical operations, using multiple cores as well as smart chunking and caching to achieve large speedups" ">=dev-python/numexpr-2.1" optfeature "needed for pandas.io.html.read_html" dev-python/beautifulsoup:4 dev-python/html5lib dev-python/lxml optfeature "for msgpack compression using blosc" dev-python/blosc - optfeature "necessary for Amazon S3 access" dev-python/s3fs optfeature "Template engine for conditional HTML formatting" dev-python/jinja optfeature "Plotting support" dev-python/matplotlib optfeature "Needed for Excel I/O" ">=dev-python/openpyxl-1.6.1" dev-python/xlsxwriter dev-python/xlrd dev-python/xlwt diff --git a/dev-python/pbr/pbr-5.5.0-r1.ebuild b/dev-python/pbr/pbr-5.5.0-r1.ebuild index 09ae1032c9e7..47ede22d786c 100644 --- a/dev-python/pbr/pbr-5.5.0-r1.ebuild +++ b/dev-python/pbr/pbr-5.5.0-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest index 350c72fff21c..235ce1b38d3a 100644 --- a/dev-python/pillow/Manifest +++ b/dev-python/pillow/Manifest @@ -1,4 +1,3 @@ -DIST pillow-6.2.2.tar.gz 37538464 BLAKE2B dfd9b81490a8adb4e12ecbf6764e4e27573c9a087877ac37275a9fb42b89f0cd8cab8d7ca0b45c9a00bf38ca5b1d83de68f5fc35ff19031bfcc1495ee3a5f5b7 SHA512 0f2c3bfd921247fa11645eadc42e184182a401ccbdb8f10215312e96c8c28f2382f5413b56acd78fab1dffc6fa53cc8588ce960543af65c4769451874c2c918e DIST pillow-7.0.0.tar.gz 37880130 BLAKE2B be940cbdced884c33f2b3979be113b1bc8974814c9532fe80203395184f90eccba1cd9a5017fec1f0c30a21ff06abc46560d5c6d67938dbf640f2e8e08b7e554 SHA512 187173a525d4f3f01b4898633263b53a311f337aa7b159c64f79ba8c7006fd44798a058e7cc5d8f1116bad008e4142ff303456692329fe73b0e115ef5c225d73 DIST pillow-7.2.0.tar.gz 39125407 BLAKE2B f49015922c34473590740c9fa63435f85f9a517b3295abd2e758941b95162cef0fb1fa2a0e6ee0ac86323709ee3af02888f6e029a1905f13698e82c1f38d5d94 SHA512 ac9c7c8f445b3f67f51bea13fad118d1612c45272c26d33bec286f3c2e198912b934378c4bf986b409aaa2a83d92ff176ee4d25f28701d61746c9cb86d0f412b DIST pillow-8.0.1.tar.gz 44614653 BLAKE2B 0f8ec178e92a57a55d575fac61779d39e79ff18032a02ad93aa6eca1211436342944b1a5bbd29979b52f0e2df756936ade4bf637ac3c153b5dda5838b58087ac SHA512 41b4ea786990c834f77ad06b64f465bc8f3a65911cf14bb05f452316fdf504e5e49b2bb50a9346f207187e79f83c5b6d310d703d1588f678b606584b1f27ce6a diff --git a/dev-python/pillow/pillow-6.2.2.ebuild b/dev-python/pillow/pillow-6.2.2.ebuild deleted file mode 100644 index 97c545afe105..000000000000 --- a/dev-python/pillow/pillow-6.2.2.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 - -PYTHON_COMPAT=( python2_7 python3_{6..9} ) -PYTHON_REQ_USE='tk?,threads(+)' - -inherit distutils-r1 toolchain-funcs - -MY_PN=Pillow -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Python Imaging Library (fork)" -HOMEPAGE="https://python-pillow.org/" -SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="HPND" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="examples imagequant jpeg jpeg2k lcms tiff tk truetype webp zlib" -RESTRICT="test" - -RDEPEND=" - dev-python/olefile[${PYTHON_USEDEP}] - imagequant? ( media-gfx/libimagequant:0 ) - jpeg? ( virtual/jpeg:0 ) - jpeg2k? ( media-libs/openjpeg:2= ) - lcms? ( media-libs/lcms:2= ) - tiff? ( media-libs/tiff:0=[jpeg,zlib] ) - truetype? ( media-libs/freetype:2= ) - webp? ( media-libs/libwebp:0= ) - zlib? ( sys-libs/zlib:0= )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs \ - dev-python/sphinx_rtd_theme - -python_configure_all() { - # It's important that these flags are also passed during the install phase - # as well. Make sure of that if you change the lines below. See bug 661308. - mydistutilsargs=( - build_ext - --disable-platform-guessing - $(use_enable truetype freetype) - $(use_enable jpeg) - $(use_enable jpeg2k jpeg2000) - $(use_enable lcms) - $(use_enable tiff) - $(use_enable imagequant) - $(use_enable webp) - $(use_enable webp webpmux) - $(use_enable zlib) - ) - - # setup.py sucks at adding the right toolchain paths but it does - # accept additional ones from INCLUDE and LIB so set these. You - # wouldn't normally need these at all as the toolchain should look - # here anyway but this setup.py does stupid things. - export \ - INCLUDE=${ESYSROOT}/usr/include \ - LIB=${ESYSROOT}/usr/$(get_libdir) - - # We have patched in this env var. - tc-export PKG_CONFIG -} - -python_install() { - python_doheader src/libImaging/*.h - distutils-r1_python_install -} - -python_install_all() { - if use examples ; then - docinto example - dodoc docs/example/* - docompress -x /usr/share/doc/${PF}/example - fi - distutils-r1_python_install_all -} diff --git a/dev-python/prettytable/Manifest b/dev-python/prettytable/Manifest index aba68b89708b..2c9448eed920 100644 --- a/dev-python/prettytable/Manifest +++ b/dev-python/prettytable/Manifest @@ -1 +1,2 @@ DIST prettytable-0.7.2.tar.bz2 21755 BLAKE2B 385d5bd6d4ab75a8c7ae96abc9d9e98a66a196265853113e7fb59073876e9f5e9c6c4fba9a30d80cc726a5184e78fb6451ff9a553909704fcc5022b6a08413f4 SHA512 f3a3fe6fa29f4ef090ff6cac06549ebd9db8b387e7b25fc64c4e37c8444586f50355c5573f38caabc72360aa68054aa189a67aa37f0bd13b872862ecd9151e71 +DIST prettytable-2.0.0.tar.gz 43072 BLAKE2B 2293d0377f0bbef925014812cf0cd3702ef4f651927302012df44e829dd9ea249d03ddaee32f9313f3d001900e92df9a3be8812c8fc573624d308fa5c40a858a SHA512 b7c47df7d85a91e9518dea8dafcb27037e5cde81f59dd2b9e9468ae44b18431dd7d943fed487d5713e2c5aa25df76a8eb6587d045f73b8f25f53715a8a2085fc diff --git a/dev-python/prettytable/metadata.xml b/dev-python/prettytable/metadata.xml index 567af444478f..39f76486a1eb 100644 --- a/dev-python/prettytable/metadata.xml +++ b/dev-python/prettytable/metadata.xml @@ -11,6 +11,7 @@ prettytable - PrettyTable + prettytable + jazzband/prettytable diff --git a/dev-python/prettytable/prettytable-2.0.0.ebuild b/dev-python/prettytable/prettytable-2.0.0.ebuild new file mode 100644 index 000000000000..9ac1fd588c74 --- /dev/null +++ b/dev-python/prettytable/prettytable-2.0.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Easily displaying tabular data in a visually appealing ASCII table format" +HOMEPAGE="https://github.com/jazzband/prettytable https://pypi.org/project/prettytable" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/wcwidth[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + $(python_gen_impl_dep sqlite) + )" + +distutils_enable_tests pytest + +python_test() { + distutils_install_for_testing + pytest -vv || die "Tests failed with ${EPYTHON}" +} diff --git a/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild b/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild index ac100d23389d..4864cb3f274a 100644 --- a/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild +++ b/dev-python/pyClamd/pyClamd-0.4.0-r2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild b/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild index e74f7a264c95..9c71fc360304 100644 --- a/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild +++ b/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -10,16 +10,14 @@ MY_P="PyPyDispatcher-${PV}" DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism" HOMEPAGE="https://github.com/scrapy/pypydispatcher https://pypi.org/project/PyPyDispatcher/" SRC_URI="mirror://pypi/${MY_P::1}/${MY_P%-*}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~x86" IUSE="doc" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="" - -S=${WORKDIR}/${MY_P} +distutils_enable_tests unittest python_compile_all() { if use doc; then @@ -28,10 +26,6 @@ python_compile_all() { fi } -python_test() { - "${EPYTHON}" -m unittest discover -v || die "Tests fail for ${EPYTHON}" -} - python_install_all() { use doc && local HTML_DOCS=( docs/pydoc/. ) distutils-r1_python_install_all diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest index db547acc53ad..ea9f49beb8c8 100644 --- a/dev-python/pyfakefs/Manifest +++ b/dev-python/pyfakefs/Manifest @@ -1,3 +1,4 @@ DIST pyfakefs-4.1.0.tar.gz 185920 BLAKE2B ee61e5ecda697150374bef035054038aed29e23958c58a3b135aae8dae7b397a194586ef6fd3ae70db1d136572a23a876d7f2dacb7e5814c1bedc9bb4502c3fe SHA512 946e21e34643db2b84e53d14bd9758c8edaa9e5e40b827fd74b245f018e8084995f55256900bf795c23a5aae29f124d9fcb80caf08442f6292adb80ee59d79b4 DIST pyfakefs-4.2.0.tar.gz 192826 BLAKE2B b1b337f5845075d8c9f32565dc1169ec2fde7e49a0bcf2f446d09f090c8c46c69690259bfc1d8e76b754477303de049790a69a209c0ed11af465bd5ca2b2ddcd SHA512 d70266bac134eca45af3d2838f9f276217305add719aa1ed3606406b33b2d2f8bda20fbcdd4653e2a5e08baf717dd0f20005aa6f66ea519e52247c88fa8d72b2 DIST pyfakefs-4.2.1.tar.gz 192910 BLAKE2B dd1826b8fbddb9c9f272cd6fe0a286a41dbcf1bba625cfaef22ea1f17089f6acf346c3a84e56e6ad41f501329c06539bcda72cad670481a3ad770d014ad1e93d SHA512 99ee0ece46ed457dcf98c4c59ee905e58bbfe66e4fadcc3d3d9d725c2ce7b4fae25bc3cf847c85045a828beab52f315ec2ee78e6fea4b23cfe9aaddfd49f1829 +DIST pyfakefs-4.3.0.tar.gz 194821 BLAKE2B f7deca18ad019dba12ac35bac44be339fc1eef0ef609f33b2fa8974f3bd65a25fba043f0afef0e332f9a71f5014444eb7c6e890acbfcfc9c8acb780dc88140a6 SHA512 42c6e9da0f098eeb948fbe3f1f26e8fddfb35d3156543ccc2297cc0fb971a87911a94ca925d2fd12531999fd9314b615f49688a3e9a4aef19522cd08bdabe72a diff --git a/dev-python/pyfakefs/pyfakefs-4.3.0.ebuild b/dev-python/pyfakefs/pyfakefs-4.3.0.ebuild new file mode 100644 index 000000000000..a437b0e387d6 --- /dev/null +++ b/dev-python/pyfakefs/pyfakefs-4.3.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) +DISTUTILS_IN_SOURCE_BUILD=1 + +inherit distutils-r1 + +DESCRIPTION="a fake file system that mocks the Python file system modules" +HOMEPAGE="https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/" +SRC_URI="https://github.com/jmcgeheeiv/${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 ~s390 ~sparc ~x86" + +distutils_enable_tests pytest + +python_test() { + "${EPYTHON}" -m pyfakefs.tests.all_tests -v || die "tests failed under ${EPYTHON}" +} diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest index 9a2c4caf21c3..747f365ba246 100644 --- a/dev-python/pyglet/Manifest +++ b/dev-python/pyglet/Manifest @@ -1,4 +1,3 @@ DIST pyglet-1.5.10.tar.gz 6417209 BLAKE2B 2c413c111ce3d016ca23186e92b17cb6f67bb904d90ca241eb0f95372a0a9ff8915014f31294a6609e2f35072cb963b6998d791157ede2e2bf01175edeb91582 SHA512 02b3859f2805f703997d7799e324e7debe9375f6c0df211ceff2f750aa7dbbad61b6ece55fbfec111e4f47f0ee6a71881fd73a47bef794a437615ecb42d0f411 +DIST pyglet-1.5.11.tar.gz 6414606 BLAKE2B bc39a611b10a6397f31ce402d0f4be17093e5c37fdbd6bb419156cc00929fd951cfc8e309a0c2a557afba9c567f203956c6ac7fdd1c677d4a5c199c1633e86e4 SHA512 4121fcd45c8d7f500e2bcbaf85e30e39d44b9de165a818455c006964787ad9dcdbb1a670ca72e149a3574ec7c18f113166190acca9a2dec4bef4b5fde856e129 DIST pyglet-1.5.7.tar.gz 6367378 BLAKE2B 68d4aa673a7463f7da0f4ccb7f413b602f32ecc423438326fc4262a4449fe22dff25a513074611ce2c77c130dfe9cc29e44e54a95169875208731f70803f1a45 SHA512 2c2a06636b1db788241028d1ef2290a774b98721ccc92ceed2b2895bcee81d4aa72b2111896091b54531936513772505b0d43003e412735d606130ed4b08f8c9 -DIST pyglet-1.5.8.tar.gz 6394207 BLAKE2B dcd3750b7296ab919ecb20417f0dfa2e89ab2754c28562a38175cf87f06bcd41d9b1ed2c568ed516e444a5968e21a772f0f4cfb5b626bb1aeb066f3b17f1cf18 SHA512 346dafbc751a4cfbdaf65643701500f5b5ad40541168eeea13467d0b97283baa35b22708dfc15569adcfad0b8ecb51d1b45d18775d564b12ed4be0965971229b -DIST pyglet-1.5.9.tar.gz 6417099 BLAKE2B ad25e8da39d943050706bf4cd6a210295349118f88c7a4ba5a5d060012a444b1adbb40bf4bdbe53093c444d7373e0678ddd6648085319700e2dc22ccfcbf23fc SHA512 2ded9f9eb24bb3c928c87da0160383c46b0b27ce01fd613b73304bc573607035517e1c0eeda365921d9de12d86a913fd0d16b71db4a4542fde04df5ee20f34e2 diff --git a/dev-python/pyglet/pyglet-1.5.8.ebuild b/dev-python/pyglet/pyglet-1.5.11.ebuild similarity index 100% rename from dev-python/pyglet/pyglet-1.5.8.ebuild rename to dev-python/pyglet/pyglet-1.5.11.ebuild diff --git a/dev-python/pyglet/pyglet-1.5.9.ebuild b/dev-python/pyglet/pyglet-1.5.9.ebuild deleted file mode 100644 index 225581d36f34..000000000000 --- a/dev-python/pyglet/pyglet-1.5.9.ebuild +++ /dev/null @@ -1,62 +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,9} ) - -inherit distutils-r1 virtualx xdg-utils - -DESCRIPTION="Cross-platform windowing and multimedia library for Python" -HOMEPAGE="http://www.pyglet.org/" -SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" -IUSE="examples image +sound" - -BDEPEND=" - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/gst-python[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - virtual/glu - virtual/opengl - image? ( || ( - dev-python/pillow[${PYTHON_USEDEP}] - x11-libs/gtk+:2 - ) ) - sound? ( || ( - media-libs/openal - media-sound/pulseaudio - ) ) -" -# ffmpeg? ( media-libs/avbin-bin ) - -DOCS=( DESIGN NOTICE README.md RELEASE_NOTES ) - -distutils_enable_tests pytest - -src_test() { - virtx distutils-r1_src_test -} - -python_test() { - xdg_environment_reset - - # Specify path to avoid running interactive tests - # We could add in integration tests, but they're slow - pytest -vv tests/unit || die "Tests failed with ${EPYTHON}" -} - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/pykka/pykka-2.0.2.ebuild b/dev-python/pykka/pykka-2.0.2.ebuild index f4385586e2e1..bf3aa5551225 100644 --- a/dev-python/pykka/pykka-2.0.2.ebuild +++ b/dev-python/pykka/pykka-2.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 diff --git a/dev-python/pykwalify/pykwalify-1.7.0.ebuild b/dev-python/pykwalify/pykwalify-1.7.0.ebuild index 357a50ad9e8d..3f65f653c429 100644 --- a/dev-python/pykwalify/pykwalify-1.7.0.ebuild +++ b/dev-python/pykwalify/pykwalify-1.7.0.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 diff --git a/dev-python/pykwalify/pykwalify-9999.ebuild b/dev-python/pykwalify/pykwalify-9999.ebuild deleted file mode 100644 index 8e7d7e6f6bfb..000000000000 --- a/dev-python/pykwalify/pykwalify-9999.ebuild +++ /dev/null @@ -1,40 +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} ) - -inherit distutils-r1 git-r3 - -DESCRIPTION="Python lib/cli for JSON/YAML schema validation" -HOMEPAGE="https://pypi.org/project/pykwalify/ https://github.com/Grokzen/pykwalify" -SRC_URI="" -EGIT_REPO_URI="https://github.com/Grokzen/pykwalify.git" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/docopt-0.6.2[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}] - >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/testfixtures[${PYTHON_USEDEP}] - ) -" - -PATCHES=( "${FILESDIR}"/${PN}-1.4.0-S.patch ) - -python_test() { - pytest -vv || die -} diff --git a/dev-python/pymediainfo/Manifest b/dev-python/pymediainfo/Manifest index 5e535a841d26..93dc5c392046 100644 --- a/dev-python/pymediainfo/Manifest +++ b/dev-python/pymediainfo/Manifest @@ -1,2 +1,2 @@ -DIST pymediainfo-4.2.1.tar.gz 434723 BLAKE2B 9dc9754fe8b993b9674da1a02150addb2f7eecfb38e60914e0644fddc1de564e8e0a81260c999f8ae3379d484e26786d0e67ed8aa0e3cc17b70066edf3e75b9c SHA512 33343838312ce240a23fa3856d808bf4b1346a1c65ed99c0405664aceaf452df610144114c228ad43e525f7abc9609420071bc6960f92b68ed7abe5dae8764aa DIST pymediainfo-4.3.tar.gz 437170 BLAKE2B a085268c90fd963501b0f57f4e58e000c58db57e902bfedf13b67ae2b56334b333bb028f24f7593416ba956943650031a3ab0b6d6627c9ffd3728e70c34182bb SHA512 641b335761a7382b4bb7e559afbba1a9694a3b588bc329187b62d1d6cb769a6ff0c110033e4fb50ab39991687a6f728cab53d528ecedf0164c55a9ce31250fe8 +DIST pymediainfo-5.0.2.tar.gz 444950 BLAKE2B e741802ebdf64752e41648d490179cf56510800fe1c631520be138bbb985a03f061a80d59b71a44ef73e7198853198e1d85c7007d5b99f26f2033b7f6026a4b5 SHA512 7db94cf2326a518f7693f2e8d76aa7aef3440466b0eac768a553cc0763d3bceb84d8051dcd79db6577e22a4ddd580f910ac286c571f3e51197ef2e268a73671a diff --git a/dev-python/pymediainfo/pymediainfo-4.2.1.ebuild b/dev-python/pymediainfo/pymediainfo-5.0.2.ebuild similarity index 70% rename from dev-python/pymediainfo/pymediainfo-4.2.1.ebuild rename to dev-python/pymediainfo/pymediainfo-5.0.2.ebuild index 32fb07f83dcc..8fcb1b108fb6 100644 --- a/dev-python/pymediainfo/pymediainfo-4.2.1.ebuild +++ b/dev-python/pymediainfo/pymediainfo-5.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) +PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE="xml(+)" DISTUTILS_USE_SETUPTOOLS=rdepend @@ -17,19 +17,15 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND=" - media-libs/libmediainfo -" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" +RDEPEND="media-libs/libmediainfo" +BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]" distutils_enable_sphinx docs dev-python/alabaster distutils_enable_tests pytest python_prepare_all() { - # Disable a test which requires network access - sed -i 's/def test_parse_url/def _test_parse_url/' \ + # Disable tests which requires network access + sed -i 's/@pytest.mark.internet/@pytest.mark.skip/' \ tests/test_pymediainfo.py || die distutils-r1_python_prepare_all } diff --git a/dev-python/pyproj/Manifest b/dev-python/pyproj/Manifest index 9ef79528f4d0..acbd64e22bb9 100644 --- a/dev-python/pyproj/Manifest +++ b/dev-python/pyproj/Manifest @@ -1,2 +1 @@ -DIST pyproj-2.4.2.tar.gz 463252 BLAKE2B aa80ee3052f42f0d49d02b1dfa3d1790e02fe6aa4092319ff8e827b0a341cff2cb4779891f74919c2b14781d841b3662154882b5f218a22b55ad79397f3eb4a7 SHA512 20f0a742ea5699a6d7a621e93157512478de69ba740bb7b0df46b6d5668f6db93b07e1fc0bf4d089362275ea8edddf3100a972a533ed8b6a0bc56a04a20d4ef9 DIST pyproj-2.6.1.post1.tar.gz 545482 BLAKE2B ba87cbbe93dad357c1fc4f333c7d3f02b632e6f2a00821b3875e73965f36fd7ea958f24705c125c3ae43dc8edac1b53a20578c46bc55bcbf335a9457d193d493 SHA512 43a885dbbf4ba54839c3b697d2582700e2b30172ef34acf6297b5e4ddba9b3148aeab83b3a515f1ce975898828c77ad457b6f6460e91083189f66a2fde6d77b7 diff --git a/dev-python/pyproj/files/pyproj-2.4.2-conftest.patch b/dev-python/pyproj/files/pyproj-2.4.2-conftest.patch deleted file mode 100644 index 36946527b2b2..000000000000 --- a/dev-python/pyproj/files/pyproj-2.4.2-conftest.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- a/test/conftest.py -+++ b/test/conftest.py -@@ -0,0 +1,28 @@ -+import os -+import shutil -+import tempfile -+ -+import pytest -+ -+import pyproj -+ -+ -+@pytest.fixture(scope="session") -+def aoi_data_directory(): -+ """ -+ This is to ensure that the ntv2_0.gsb file is actually -+ missing for the AOI tests. -+ """ -+ data_dir = pyproj.datadir.get_data_dir() -+ with tempfile.TemporaryDirectory() as tmpdir: -+ tmp_data_dir = os.path.join(tmpdir, "proj") -+ shutil.copytree(data_dir, tmp_data_dir) -+ try: -+ os.remove(os.path.join(str(tmp_data_dir), "ntv2_0.gsb")) -+ except OSError: -+ pass -+ try: -+ pyproj.datadir.set_data_dir(str(tmp_data_dir)) -+ yield -+ finally: -+ pyproj.datadir.set_data_dir(data_dir) diff --git a/dev-python/pyproj/pyproj-2.4.2-r1.ebuild b/dev-python/pyproj/pyproj-2.4.2-r1.ebuild deleted file mode 100644 index 40c39af68498..000000000000 --- a/dev-python/pyproj/pyproj-2.4.2-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Python < 3.6 requires https://pypi.org/project/aenum/ -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Python interface to the PROJ library" -HOMEPAGE="https://github.com/pyproj4/pyproj" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux" -IUSE="doc" - -RDEPEND=">=sci-libs/proj-6.2.0:=" -DEPEND="${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - sci-libs/shapely[${PYTHON_USEDEP}] - )" - -PATCHES=( "${FILESDIR}"/${P}-conftest.patch ) - -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme -distutils_enable_tests pytest - -python_test() { - PROJ_LIB="${EPREFIX}/usr/share/proj" pytest -ra || die -} diff --git a/dev-python/pyproj/pyproj-2.6.1_p1.ebuild b/dev-python/pyproj/pyproj-2.6.1_p1.ebuild index c1ce0936e020..059a009b7417 100644 --- a/dev-python/pyproj/pyproj-2.6.1_p1.ebuild +++ b/dev-python/pyproj/pyproj-2.6.1_p1.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${P/_p/.post}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 x86 ~amd64-linux" +KEYWORDS="amd64 x86 ~amd64-linux" IUSE="doc" RDEPEND=">=sci-libs/proj-6.2.0:=" diff --git a/dev-python/pytest-cov/pytest-cov-2.8.1.ebuild b/dev-python/pytest-cov/pytest-cov-2.8.1.ebuild index cb1fb3d61127..960f0686259e 100644 --- a/dev-python/pytest-cov/pytest-cov-2.8.1.ebuild +++ b/dev-python/pytest-cov/pytest-cov-2.8.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/pytest-rerunfailures/Manifest b/dev-python/pytest-rerunfailures/Manifest index f6db4036af72..4c5c2ed604cc 100644 --- a/dev-python/pytest-rerunfailures/Manifest +++ b/dev-python/pytest-rerunfailures/Manifest @@ -1,2 +1 @@ -DIST pytest-rerunfailures-8.0.tar.gz 13207 BLAKE2B 8a086783c5b6dae311aaa943a5c0eb56f5fbce4f687faf97ea0046bbce557cb82f8acd612247d235e249ef1a97157d3c356cf546b3d25a3dc4a4122286fcc04c SHA512 538fe5ca579ec50fc1689c4b7df3a55e0bdb08f87c2dfeb219ee141ef67c6c74a324c64f183f3ff85a5289ecfb54beef0fde2105eb0ae888ed861a15194a9dc5 DIST pytest-rerunfailures-9.1.1.tar.gz 12435 BLAKE2B b2118fe9460ebb750c72b05762d70cf53703e4c9982c6343ef02ebcec6630598ac98998ff994268b9108bd6850e71fd5b9cde1d0abb727d33fad238e9b26fa61 SHA512 875591306ab010494ccbb865ea6445ab37422fce9105260d9495215af44057210564aca4fed3b4765b5a30c1cbef120de716d15d10a6db91dcb7d9f5b4f3b102 diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-8.0.ebuild b/dev-python/pytest-rerunfailures/pytest-rerunfailures-8.0.ebuild deleted file mode 100644 index a6aa911747dd..000000000000 --- a/dev-python/pytest-rerunfailures/pytest-rerunfailures-8.0.ebuild +++ /dev/null @@ -1,22 +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} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="pytest plugin to re-run tests to eliminate flaky failures" -HOMEPAGE="https://pypi.org/project/pytest-rerunfailures/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="MPL-2.0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - /dev/null || die - pytest -vv ${ignored_tests[@]/#/--ignore } \ - || die "tests failed with ${EPYTHON}" - popd > /dev/null || die -} - -python_install() { - distutils-r1_python_install - python_optimize -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r Demo/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -} diff --git a/dev-python/python-magnumclient/Manifest b/dev-python/python-magnumclient/Manifest index da99480a5397..5952eaeb321e 100644 --- a/dev-python/python-magnumclient/Manifest +++ b/dev-python/python-magnumclient/Manifest @@ -1,2 +1 @@ -DIST python-magnumclient-2.12.0.tar.gz 106073 BLAKE2B aec03c74429b1934ea46aa8109f4f779aa06281136eab2ad422c851ca347f6703faec9feadb7bc49423b4e335cfedb3ebecaddaba7c9cdb32e8a8ca0de9118ca SHA512 a6d8790b87801ca313bb119e75490cb2913a11558925b6a49e276a7bfed102cf8e575f344fce8e31223f835c4961c50c2918844689ef88ef34c72c8a1032f340 DIST python-magnumclient-3.2.1.tar.gz 114288 BLAKE2B c8ed1d6ab2744fb082d33fab121594fa23a53523dfe74ad636e46681c52f3f9084ff5ced0dcdbd6f3cab219a093265da897b8b3b978d0fbb379765d123db348e SHA512 9c84e382e0be411100648ba4a33f33e45133dbfc75bf28945b97064998fe8c1bb0149970a8938498aefd322c87b87d6fa7b69286bb7ec336b40f6fbc9e31dbbc diff --git a/dev-python/python-magnumclient/python-magnumclient-2.12.0.ebuild b/dev-python/python-magnumclient/python-magnumclient-2.12.0.ebuild deleted file mode 100644 index 2c2835d5a4a3..000000000000 --- a/dev-python/python-magnumclient/python-magnumclient-2.12.0.ebuild +++ /dev/null @@ -1,46 +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} ) - -inherit distutils-r1 - -DESCRIPTION="A client for the OpenStack Magnum API" -HOMEPAGE="https://github.com/openstack/python-magnumclient" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND}" -RDEPEND=" - ${CDEPEND} - >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}] - !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] - >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] - >=dev-python/oslo-serialization-2.18.0[${PYTHON_USEDEP}] - !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/os-client-config-1.28.0[${PYTHON_USEDEP}] - >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}] - >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}] - =dev-python/cryptography-2.1.0[${PYTHON_USEDEP}] - >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}] -" - -python_prepare_all() { - # built in... - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/python-magnumclient/python-magnumclient-3.2.1.ebuild b/dev-python/python-magnumclient/python-magnumclient-3.2.1.ebuild index 7426b58746dd..629a001aa85c 100644 --- a/dev-python/python-magnumclient/python-magnumclient-3.2.1.ebuild +++ b/dev-python/python-magnumclient/python-magnumclient-3.2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" diff --git a/dev-python/python-mistralclient/Manifest b/dev-python/python-mistralclient/Manifest index 9bf50039ab2f..b529cef7a108 100644 --- a/dev-python/python-mistralclient/Manifest +++ b/dev-python/python-mistralclient/Manifest @@ -1,2 +1 @@ -DIST python-mistralclient-3.8.1.tar.gz 95616 BLAKE2B bc7185522b24e30321c5f57b6bc31cf239873343bce66e901e8928aedbc3caef36102a8ee67e01f6b46f77cc0d708006ac69ec4147a22b72e52e01441e39eec4 SHA512 ccde34b3ac6e12137d57dbfce597a8f9c43824a8b2450af15ab065fe03469edf0787a2b91c8e5e1da78de5d9d4d20213701e992d4c41e61c459fd987461d5298 DIST python-mistralclient-4.1.1.tar.gz 97257 BLAKE2B 8f58cc59f782d05111b1eb009ba06dc8dd356841ffdc75a4af2fde0492eafce4d728fe8e947e7ef80f4049c3889587ab2926294acd90191dbfc26f6a643cb2c6 SHA512 4f1f5d558ef4711b0ff7da565b0eefc9e3e32d4014d0b9c808370e0e0a00d759aa4f35a7f116f95db00d43277d614aea9fb57200e15c2c0258a48c8e828910e3 diff --git a/dev-python/python-mistralclient/python-mistralclient-3.8.1.ebuild b/dev-python/python-mistralclient/python-mistralclient-3.8.1.ebuild deleted file mode 100644 index 59510b24ae2b..000000000000 --- a/dev-python/python-mistralclient/python-mistralclient-3.8.1.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 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="A client for the OpenStack Mistral API" -HOMEPAGE="https://github.com/openstack/python-mistralclient" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND}" -RDEPEND=" - ${CDEPEND} - >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}] - !~dev-python/cliff-2.9.0[${PYTHON_USEDEP}] - >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] - >=dev-python/oslo-serialization-2.18.0[${PYTHON_USEDEP}] - !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] -" - -python_prepare_all() { - # built in... - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/python-mistralclient/python-mistralclient-4.1.1.ebuild b/dev-python/python-mistralclient/python-mistralclient-4.1.1.ebuild index 67c9396843f4..4b55da282369 100644 --- a/dev-python/python-mistralclient/python-mistralclient-4.1.1.ebuild +++ b/dev-python/python-mistralclient/python-mistralclient-4.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0" diff --git a/dev-python/python-monascaclient/Manifest b/dev-python/python-monascaclient/Manifest index 260530e2ad82..f52fb2dbafb1 100644 --- a/dev-python/python-monascaclient/Manifest +++ b/dev-python/python-monascaclient/Manifest @@ -1,2 +1 @@ -DIST python-monascaclient-1.15.0.tar.gz 46868 BLAKE2B fe78e21e0324f6a4b95d8583c43a9bf166896b3e610ad884d278208cd3e5597038c7a04b96f5e3ad6913e2a23c13dbcb4937bed05982a12c154cccae6698adda SHA512 d9378d01d78742e26abfc82ffcb13d64451ce10e6d3182a03893f21bcc76e9b961c3daaed6d9635b6bc709e5782f44e20485b53468bb2d825d64b18c6b9bca50 DIST python-monascaclient-2.2.1.tar.gz 51569 BLAKE2B f8c245867cd80530df0ba873d13465c364dd3f09003e7248497e102f88186ea18833598013fa3eb6b7015e37854036521edfb2850445d3db7d052e068477bdc1 SHA512 6a533c5fefdb31446aea62c997f69588c2c005f6ea4b419959381f623cc74b4fc4b0eeefccf7b305f1526a75ce86b91570338386f6dc959c31ce9f0b1e1022a2 diff --git a/dev-python/python-monascaclient/python-monascaclient-1.15.0.ebuild b/dev-python/python-monascaclient/python-monascaclient-1.15.0.ebuild deleted file mode 100644 index 946821edbabc..000000000000 --- a/dev-python/python-monascaclient/python-monascaclient-1.15.0.ebuild +++ /dev/null @@ -1,40 +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} ) - -inherit distutils-r1 - -DESCRIPTION="A client for the OpenStack Monasca API" -HOMEPAGE="https://github.com/openstack/python-monascaclient" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND}" -RDEPEND=" - ${CDEPEND} - >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}] - >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}] - !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}] - !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}] - >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}] - >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}] - =dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] -" - -python_prepare_all() { - # built in... - sed -i '/^hacking/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} diff --git a/dev-python/python-monascaclient/python-monascaclient-2.2.1.ebuild b/dev-python/python-monascaclient/python-monascaclient-2.2.1.ebuild index 5d9bbaa36eaf..65c500619fdb 100644 --- a/dev-python/python-monascaclient/python-monascaclient-2.2.1.ebuild +++ b/dev-python/python-monascaclient/python-monascaclient-2.2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0" diff --git a/dev-python/python-novaclient/python-novaclient-17.2.1.ebuild b/dev-python/python-novaclient/python-novaclient-17.2.1.ebuild index 67deedd059ad..e6dd17da3be7 100644 --- a/dev-python/python-novaclient/python-novaclient-17.2.1.ebuild +++ b/dev-python/python-novaclient/python-novaclient-17.2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/python-vitrageclient/Manifest b/dev-python/python-vitrageclient/Manifest index 414cf8473828..745fe2d5db14 100644 --- a/dev-python/python-vitrageclient/Manifest +++ b/dev-python/python-vitrageclient/Manifest @@ -1,2 +1 @@ -DIST python-vitrageclient-4.0.1.tar.gz 47671 BLAKE2B 6e1e72d0de1cddf9f72d1ff6bdb2261f4f2295a1fdd6ebe0e9ff497b48ea545ea999d7ac7bc79adabbbdebbb3b1b36e853d083d3b6c6e9875fe44bc36f76acf4 SHA512 607d669a4ccddc0eb938c26cc4f2b2cdaac8976a7c2b774b8ce49df6bd2e5fbe4ecf210eef008d49e3d1689a686bc6e0820c3b0a11f353a2711b9b2cc743c9e1 DIST python-vitrageclient-4.1.1.tar.gz 48885 BLAKE2B 87bbd0174567c142a38901ddf5a4f785e4a9eac9a9e22c3af6f101ead69695e6f9324e52c86c0f526e4120c2f6e807ff8719b017c38de8aad3f59ed4ebf8c2c2 SHA512 2d6758045e4250ceda55e991286e9391ccb9ec154a8802f2aa3faf81d4021b2a8b3be13cefe38df965cae4b2b094592185362780b14e32dcf7cfdc7a13d005af diff --git a/dev-python/python-vitrageclient/python-vitrageclient-4.0.1.ebuild b/dev-python/python-vitrageclient/python-vitrageclient-4.0.1.ebuild deleted file mode 100644 index 7b7df636f8df..000000000000 --- a/dev-python/python-vitrageclient/python-vitrageclient-4.0.1.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 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_7 ) - -inherit distutils-r1 - -DESCRIPTION="A client for the OpenStack Vitrage API" -HOMEPAGE="https://github.com/openstack/python-vitrageclient" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" - -DEPEND=">=dev-python/pbr-3.1.1[${PYTHON_USEDEP}]" -RDEPEND=" - >=dev-python/Babel-2.5.3[${PYTHON_USEDEP}] - >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}] - !~dev-python/cliff-2.9.0[${PYTHON_USEDEP}] - >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}] - >=dev-python/networkx-2.3[${PYTHON_USEDEP}] - >=dev-python/pydot-1.4.1[${PYTHON_USEDEP}]" diff --git a/dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild b/dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild index 250f49b6f951..264c6607e415 100644 --- a/dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild +++ b/dev-python/python-vitrageclient/python-vitrageclient-4.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND=">=dev-python/pbr-3.1.1[${PYTHON_USEDEP}]" diff --git a/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild b/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild index 9b8bd5a3c362..511e864168c6 100644 --- a/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild +++ b/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -14,12 +14,5 @@ SRC_URI="https://github.com/allanlei/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] )" - -python_test() { - nosetests -v || die "tests failed under ${EPYTHON}" -} +distutils_enable_tests nose diff --git a/dev-python/pywavelets/pywavelets-1.1.1.ebuild b/dev-python/pywavelets/pywavelets-1.1.1.ebuild index de07fe47ec1b..0c5b2fa68dd0 100644 --- a/dev-python/pywavelets/pywavelets-1.1.1.ebuild +++ b/dev-python/pywavelets/pywavelets-1.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6..8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 diff --git a/dev-python/pyzmq/Manifest b/dev-python/pyzmq/Manifest index 20950bd9d595..efb9b0bf0edb 100644 --- a/dev-python/pyzmq/Manifest +++ b/dev-python/pyzmq/Manifest @@ -1,3 +1,2 @@ -DIST pyzmq-19.0.1_p20200608.tar.gz 390927 BLAKE2B d70a2f615782cc5a53ed2ffab4d5549bc5d15cc1e0e63f640a357fe8575ca327a5976a3e8b11d97c236a31ca17025f37fe423d166b684b5c4aafc139a0941492 SHA512 7f077ed3858c226eb1e3f5e51dfb5d4b517ec94357b37cc66d17cfe2543786b86627ce7eb4c12785a2709a499af998d02642d972c119a637df3cec5201e909d1 DIST pyzmq-19.0.2.tar.gz 390927 BLAKE2B d70a2f615782cc5a53ed2ffab4d5549bc5d15cc1e0e63f640a357fe8575ca327a5976a3e8b11d97c236a31ca17025f37fe423d166b684b5c4aafc139a0941492 SHA512 7f077ed3858c226eb1e3f5e51dfb5d4b517ec94357b37cc66d17cfe2543786b86627ce7eb4c12785a2709a499af998d02642d972c119a637df3cec5201e909d1 DIST pyzmq-20.0.0.gh.tar.gz 393041 BLAKE2B 1f22f556f5d0f2755c2e56411fdb9f583bbdfad6315e4e72fbaa1fb18d0ad5436ee0ee8d17497641421cea3f4e1b53b8ff85bf7ced96c8f1c80db0be901ca3d5 SHA512 30359e501e76d6ec14175622d6c970d9ec0f227b372d2b1c6e6650be812dd47017b797a016f5a2da83f72d00536e64d2f005a38003c9a1b4fbb7266f2640782d diff --git a/dev-python/pyzmq/files/pyzmq-19.0.0-tests.patch b/dev-python/pyzmq/files/pyzmq-19.0.0-tests.patch deleted file mode 100644 index f56e7c6d3a5d..000000000000 --- a/dev-python/pyzmq/files/pyzmq-19.0.0-tests.patch +++ /dev/null @@ -1,186 +0,0 @@ -diff --git a/zmq/tests/test_auth.py b/zmq/tests/test_auth.py -index 003f171..9d882b6 100644 ---- a/zmq/tests/test_auth.py -+++ b/zmq/tests/test_auth.py -@@ -191,6 +191,7 @@ class TestThreadAuthentication(BaseAuthTestCase): - client.close() - server.close() - -+ @pytest.mark.skip("sometimes hangs") - def test_curve(self): - """threaded auth - CURVE""" - self.auth.allow('127.0.0.1') -@@ -309,6 +310,7 @@ class TestThreadAuthentication(BaseAuthTestCase): - - - @skip_pypy -+ @pytest.mark.skip("fails with cffi") - def test_curve_user_id(self): - """threaded auth - CURVE""" - self.auth.allow('127.0.0.1') -diff --git a/zmq/tests/test_constants.py b/zmq/tests/test_constants.py -index 6b4d0c9..d527b06 100644 ---- a/zmq/tests/test_constants.py -+++ b/zmq/tests/test_constants.py -@@ -91,6 +91,7 @@ class TestConstants(TestCase): - self.fail("Shouldn't have: zmq.%s=%s" % (name, value)) - - @pytest.mark.skipif(not zmq.DRAFT_API, reason="Only test draft API if built with draft API") -+ @pytest.mark.skip("fails with cffi") - def test_draft(self): - zmq_version = zmq.zmq_version_info() - for version, new_names in constant_names.draft_in.items(): -diff --git a/zmq/tests/test_draft.py b/zmq/tests/test_draft.py -index 5bb9e29..934ed50 100644 ---- a/zmq/tests/test_draft.py -+++ b/zmq/tests/test_draft.py -@@ -20,6 +20,7 @@ class TestDraftSockets(BaseZMQTestCase): - super(TestDraftSockets, self).setUp() - - -+ @pytest.mark.skip("fails with cffi") - def test_client_server(self): - client, server = self.create_bound_pair(zmq.CLIENT, zmq.SERVER) - client.send(b'request') -@@ -29,6 +30,7 @@ class TestDraftSockets(BaseZMQTestCase): - reply = self.recv(client) - assert reply == b'reply' - -+ @pytest.mark.skip("fails with cffi") - def test_radio_dish(self): - dish, radio = self.create_bound_pair(zmq.DISH, zmq.RADIO) - dish.rcvtimeo = 250 -diff --git a/zmq/tests/test_message.py b/zmq/tests/test_message.py -index d3a6aa8..9ce622c 100644 ---- a/zmq/tests/test_message.py -+++ b/zmq/tests/test_message.py -@@ -18,6 +18,7 @@ import zmq - from zmq.tests import BaseZMQTestCase, SkipTest, skip_pypy, PYPY - from zmq.utils.strtypes import unicode, bytes, b, u - -+import pytest - - # some useful constants: - -@@ -71,7 +72,7 @@ class TestFrame(BaseZMQTestCase): - m = zmq.Frame(s) - b = m.bytes - self.assertEqual(s, m.bytes) -- if not PYPY: -+ if not PYPY and False: - # check that it copies - self.assert_(b is not s) - # check that it copies only once -@@ -94,6 +95,7 @@ class TestFrame(BaseZMQTestCase): - self.assertEqual(len(s), len(m)) - - @skip_pypy -+ @pytest.mark.skip("seems to be broken") - def test_lifecycle1(self): - """Run through a ref counting cycle with a copy.""" - for i in range(5, 16): # 32, 64,..., 65536 -@@ -130,6 +132,7 @@ class TestFrame(BaseZMQTestCase): - del s - - @skip_pypy -+ @pytest.mark.skip("seems to be broken") - def test_lifecycle2(self): - """Run through a different ref counting cycle with a copy.""" - for i in range(5, 16): # 32, 64,..., 65536 -@@ -166,6 +169,7 @@ class TestFrame(BaseZMQTestCase): - del s - - @skip_pypy -+ @pytest.mark.skip("fails with cffi") - def test_tracker(self): - m = zmq.Frame(b'asdf', copy=False, track=True) - self.assertFalse(m.tracker.done) -@@ -186,6 +190,7 @@ class TestFrame(BaseZMQTestCase): - self.assertRaises(ValueError, zmq.MessageTracker, m) - - @skip_pypy -+ @pytest.mark.skip("fails with cffi") - def test_multi_tracker(self): - m = zmq.Frame(b'asdf', copy=False, track=True) - m2 = zmq.Frame(b'whoda', copy=False, track=True) -@@ -222,6 +227,7 @@ class TestFrame(BaseZMQTestCase): - self.assert_(m.buffer is m.buffer) - - @skip_pypy -+ @pytest.mark.skip("fails with cffi") - def test_memoryview_shape(self): - """memoryview shape info""" - if sys.version_info < (3,): -@@ -331,6 +337,7 @@ class TestFrame(BaseZMQTestCase): - B = numpy.frombuffer(msg, A.dtype).reshape(A.shape) - assert_array_equal(A, B) - -+ @pytest.mark.skip("fails with cffi") - def test_frame_more(self): - """test Frame.more attribute""" - frame = zmq.Frame(b"hello") -diff --git a/zmq/tests/test_security.py b/zmq/tests/test_security.py -index b73234d..8fdea48 100644 ---- a/zmq/tests/test_security.py -+++ b/zmq/tests/test_security.py -@@ -9,6 +9,8 @@ import contextlib - import time - from threading import Thread - -+import pytest -+ - import zmq - from zmq.tests import ( - BaseZMQTestCase, SkipTest, PYPY -@@ -114,6 +116,7 @@ class TestSecurity(BaseZMQTestCase): - client.connect("%s:%i" % (iface, port)) - self.bounce(server, client, False) - -+ @pytest.mark.skip("fails with cffi") - def test_plain(self): - """test PLAIN authentication""" - server = self.socket(zmq.DEALER) -@@ -201,6 +204,7 @@ class TestSecurity(BaseZMQTestCase): - # verify that it is equal to the known public key - self.assertEqual(derived_public, public) - -+ @pytest.mark.skip("fails with cffi") - def test_curve(self): - """test CURVE encryption""" - server = self.socket(zmq.DEALER) -diff --git a/zmq/tests/test_socket.py b/zmq/tests/test_socket.py -index 3046663..dcc66d0 100644 ---- a/zmq/tests/test_socket.py -+++ b/zmq/tests/test_socket.py -@@ -221,6 +221,7 @@ class TestSocket(BaseZMQTestCase): - self.assertEqual(rcvd, [b'b']) - - @skip_pypy -+ @pytest.mark.skip("test hangs") - def test_tracker(self): - "test the MessageTracker object for tracking when zmq is done with a buffer" - addr = 'tcp://127.0.0.1' -@@ -363,6 +364,7 @@ class TestSocket(BaseZMQTestCase): - s.close() - self.assertTrue(s.closed) - -+ @pytest.mark.skip("fails with cffi") - def test_poll(self): - a,b = self.create_bound_pair() - tic = time.time() -@@ -502,6 +504,7 @@ class TestSocket(BaseZMQTestCase): - self.assertEqual(events, []) - - # Travis can't handle how much memory PyPy uses on this test -+ @pytest.mark.skip("test hangs") - @mark.skipif( - ( - pypy and on_travis -@@ -536,6 +539,7 @@ class TestSocket(BaseZMQTestCase): - assert view[0] == byte - assert view[-1] == byte - -+ @pytest.mark.skip("fails with cffi") - def test_custom_serialize(self): - a, b = self.create_bound_pair(zmq.DEALER, zmq.ROUTER) - def serialize(msg): diff --git a/dev-python/pyzmq/pyzmq-19.0.1_p20200608.ebuild b/dev-python/pyzmq/pyzmq-19.0.1_p20200608.ebuild deleted file mode 100644 index 9b8e49085f08..000000000000 --- a/dev-python/pyzmq/pyzmq-19.0.1_p20200608.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 - -PYTHON_COMPAT=( python3_{6..9} ) -PYTHON_REQ_USE="threads(+)" - -inherit flag-o-matic distutils-r1 toolchain-funcs - -EGIT_COMMIT="dd4dac055152d47c829034224cdecf594c7b3f12" -DESCRIPTION="Lightweight and super-fast messaging library built on top of the ZeroMQ library" -HOMEPAGE=" - https://www.zeromq.org/bindings:python - https://pypi.org/project/pyzmq/ - https://github.com/zeromq/pyzmq/" -SRC_URI=" - https://github.com/zeromq/pyzmq/archive/${EGIT_COMMIT}.tar.gz - -> ${P}.tar.gz" -S=${WORKDIR}/${PN}-${EGIT_COMMIT} - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="+draft" - -DEPEND=" - >=net-libs/zeromq-4.2.2-r2:=[drafts] -" -RDEPEND="${DEPEND} - dev-python/py[${PYTHON_USEDEP}] - dev-python/cffi:=[${PYTHON_USEDEP}] -" -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - test? ( - >=www-servers/tornado-5.0.2[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}/pyzmq-19.0.0-tests.patch" -) - -distutils_enable_tests pytest -distutils_enable_sphinx docs \ - "dev-python/numpydoc" - -python_prepare_all() { - # probably broken with new numpy - sed -i -e 's:test_buffer_numpy:_&:' zmq/tests/test_message.py || die - - distutils-r1_python_prepare_all -} - -python_configure_all() { - tc-export CC - append-cppflags -DZMQ_BUILD_DRAFT_API=$(usex draft '1' '0') -} - -python_compile() { - esetup.py cython --force - distutils-r1_python_compile -} diff --git a/dev-python/pyzmq/pyzmq-19.0.2.ebuild b/dev-python/pyzmq/pyzmq-19.0.2.ebuild index e5d3e869ca13..24503432b6f0 100644 --- a/dev-python/pyzmq/pyzmq-19.0.2.ebuild +++ b/dev-python/pyzmq/pyzmq-19.0.2.ebuild @@ -21,7 +21,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT} LICENSE="LGPL-3" SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="+draft" DEPEND=" diff --git a/dev-python/scandir/scandir-1.10.0-r2.ebuild b/dev-python/scandir/scandir-1.10.0-r2.ebuild index 84c1093fe800..d7671f8bd5fe 100644 --- a/dev-python/scandir/scandir-1.10.0-r2.ebuild +++ b/dev-python/scandir/scandir-1.10.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -14,11 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { - ${EPYTHON} test/run_tests.py -v || die "tests failed under ${EPYTHON}" + "${EPYTHON}" test/run_tests.py -v || die "tests failed under ${EPYTHON}" } diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest index ae77f4b20e36..df2ff6ed86e8 100644 --- a/dev-python/sentry-sdk/Manifest +++ b/dev-python/sentry-sdk/Manifest @@ -4,3 +4,4 @@ DIST sentry-sdk-0.18.0.tar.gz 186389 BLAKE2B f531d68a1244c34d267cb332263c996afad DIST sentry-sdk-0.19.1.tar.gz 186747 BLAKE2B ae26751ac2e640b86b3c7426829e699cfdbd1c35e70edf0f1f835e35da82f658990a5f61adc4e7b93b032f6c9824d0df90bb2146f125c1fb846c3436228d5516 SHA512 dd4234a36920893e55026ba5ab8b1476cbc91b035a4b4c78f9dcf29cc8e232dc49c6f7312b8fb3d64cf469552d08ef5cadb65d3a7fb58ba73b87e43375c27c8d DIST sentry-sdk-0.19.2.tar.gz 199116 BLAKE2B c7e362003746e98e65c33eda3cca91c35cfc81d13d90a88ee70f75f33f564cfde3dfbf8d7a9fa17eadebeffdcd7381835d44d9bbde2c0b2f6268e8f265ba55b1 SHA512 a78c3d16f8414093e9b5e74e56893ba5734716ef5782d39a4dc61194e843ab8c5a17cb3a291c96bc0bbcc1b3b49aa84d50f30d8b41b9916de40e187fb3b0bdbb DIST sentry-sdk-0.19.3.tar.gz 205847 BLAKE2B dfd74fffdd9bf8075e43c2a86131f5aca04a84b198efa0625e4b2f71963fa9438897909ac45b44277696e516b339a1a8b5f42362243bbc4ff205086217e9e20e SHA512 e99df3290874c5080bee0152e062a63b0e3dac3db4726d0f93c71fc9f1b89b16bd386d26280b3cd364282121e4b6bc3843a53f2e830919a3aa710da1cae1b36f +DIST sentry-sdk-0.19.4.tar.gz 205992 BLAKE2B fdf7d1a29a04be01bc3b7dd7ef7ee0ad33bb03241d9c62e152aa829b2faddb52e7307705ec4f7d89db912ac625de477999167ea66372bcf9304caef31fb65aa4 SHA512 bc8d23b6767a1809ecb4d43becbe266f1e068cfb953cbad280313e54fd3d679308eace42fd880f356bac2f216894e45ee1b51eb2fc74f73f9e433bae406a2a37 diff --git a/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild b/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild index 2420ea26b0e0..d92a7e9b4c13 100644 --- a/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild +++ b/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/sentry-python-${PV}" LICENSE="PSF-2" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND=" dev-python/urllib3[${PYTHON_USEDEP}] diff --git a/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild new file mode 100644 index 000000000000..c95a72931379 --- /dev/null +++ b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild @@ -0,0 +1,87 @@ +# 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="Python client for Sentry" +HOMEPAGE="https://getsentry.com https://pypi.org/project/sentry-sdk/" +SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/sentry-python-${PV}" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/urllib3[${PYTHON_USEDEP}] + dev-python/certifi[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/asttokens[${PYTHON_USEDEP}] + dev-python/django[${PYTHON_USEDEP}] + =dev-ruby/pdf-reader-1.2 =dev-ruby/pdf-reader-1* )" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" spec/spec_helper.rb || die +} diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index c7f4bceaa413..c31961c0f9a8 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/ccache/ccache-4.0.ebuild b/dev-util/ccache/ccache-4.0.ebuild index 66c0f19279a3..da46cf9b15a3 100644 --- a/dev-util/ccache/ccache-4.0.ebuild +++ b/dev-util/ccache/ccache-4.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake +inherit cmake toolchain-funcs DESCRIPTION="fast compiler cache" HOMEPAGE="https://ccache.dev/" @@ -31,8 +31,39 @@ PATCHES=( "${FILESDIR}"/${PN}-3.5-nvcc-test.patch "${FILESDIR}"/${PN}-4.0-objdump.patch "${FILESDIR}"/${PN}-4.0-avoid-run-user.patch + "${FILESDIR}"/${PN}-4.0-atomic.patch ) +# ccache does not do it automatically. TODO: fix upstream +need_latomic() { + # test if -latomic is needed and helps. -latomic is needed + # at least on ppc32. Use bit of inodeCache.cpp test. + cat >"${T}"/a-test.cc <<-EOF + #include + #include + std::atomic a; + int main() { return a.load() == 0; } + EOF + + local cxx_cmd=( + $(tc-getCXX) + $CXXFLAGS + $LDFLAGS + "${T}"/a-test.cc + -o "${T}"/a-test + ) + + einfo "${cxx_cmd[@]}" + "${cxx_cmd[@]}" && return 1 + + einfo "Trying to add -latomic" + einfo "${cxx_cmd[@]}" + cxx_cmd+=(-latomic) + "${cxx_cmd[@]}" && return 0 + + return 1 +} + src_prepare() { cmake_src_prepare @@ -44,6 +75,13 @@ src_prepare() { tc-export CC OBJDUMP } +src_configure() { + local mycmakeargs=( + -DLINK_WITH_ATOMIC=$(need_latomic && echo YES || echo NO) + ) + cmake_src_configure +} + src_install() { # TODO: install manpage: https://github.com/ccache/ccache/issues/684 cmake_src_install diff --git a/dev-util/ccache/files/ccache-4.0-atomic.patch b/dev-util/ccache/files/ccache-4.0-atomic.patch new file mode 100644 index 000000000000..87b237c7dd56 --- /dev/null +++ b/dev-util/ccache/files/ccache-4.0-atomic.patch @@ -0,0 +1,21 @@ +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -63,11 +63,17 @@ if(WIN32) + endif() + endif() + ++option(LINK_WITH_ATOMIC "Add 'atomic' if needed" OFF) ++set(atomic_lib "") ++if(LINK_WITH_ATOMIC) ++ set(atomic_lib "atomic") ++endif() ++ + find_package(Threads REQUIRED) + target_link_libraries( + ccache_lib + PRIVATE standard_settings standard_warnings ZSTD::ZSTD +- Threads::Threads third_party_lib) ++ Threads::Threads third_party_lib ${atomic_lib}) + + target_include_directories(ccache_lib PRIVATE ${CMAKE_BINARY_DIR} .) + diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest index 37dd2c120654..d907983e4c87 100644 --- a/dev-util/cmake/Manifest +++ b/dev-util/cmake/Manifest @@ -2,4 +2,5 @@ DIST cmake-3.13.5.tar.gz 8618821 BLAKE2B 765678bc92821207c53bfb4ac995a791b938f20 DIST cmake-3.16.5.tar.gz 9111262 BLAKE2B 5f996113a4979563d7b9f298b4b1a32d6f91eebaa79af42e1cbf247884e443de47e30030fd0f16c7755c4086e2bff0c0741911753ea7c889b68c393c0b98c876 SHA512 204ce83501c8068ff660c30a68641a354764135e1600a9a95b39476d072876e400961377e19bbe03a7b18412b36dcf21a693946a2a81cff5985e637e9f193671 DIST cmake-3.17.4.tar.gz 9473549 BLAKE2B 2ce29415525b5292ae9e06d73570ed0af2173d8d15612f4d645f22d4f55cb99018663c374c4282731e09f8c6e4ffd59316d65f38aef9db5c34d874ca8992382b SHA512 6af879502e52388f3be02a4edfb006274840ad1afa8f28ffd6ec69b0310c7f718812b2272e5f77ffa422717f61407a6d482deb95941555c21c73fc5f62356a4e DIST cmake-3.18.4.tar.gz 8976659 BLAKE2B b121a641f5470c5e210bd0ee5506cdc2165ad186074b54bc81de72f36ff6b5748fe846794eff16a13c52e98ce246561fb1aab0f0fd1fdcf9173c4bdacd9cbb8f SHA512 2f0c5647ed58bf911d0bfeafc7f22a3de09aa3be86301158fa51c8560e994534d7500869067432ecf91e82213a0b36ddb5db11c5c55d2ca5e5647ac9f75717b9 -DIST cmake-3.19.0-rc3.tar.gz 9257384 BLAKE2B 7a865c77b953e0629ce21f751df03bed93d8d5c4ddd3576fa02e980f651e6987f71e57107653541ae33822d2f9fba5151e509feca2adb5e1d72748d2bb111131 SHA512 d9b3927d13097187cf60cb207158e3df555f50a92aee8a4f775b9e3e038e76dbe3e1a35214eaa8923935cdf8a11e6f38bb433898b45752f42ab1583c29697d35 +DIST cmake-3.18.5.tar.gz 8975784 BLAKE2B 62ea68b602e7e352c22ba6122aa010fb78fb5c4e484aa51bc336e750280d5fc03ffa439bd8005d2c43176f5a5db4ebfd419beca65cc59c5b8cd5666e38394fb8 SHA512 c15e0937a9c0ce0b6164c3d02a147e679ea57e1119cff4189a15de71429a7facb3c04eb8db467471876b5da5dbd4a25acb228efa7101fe78efd205f0d2c96343 +DIST cmake-3.19.0.tar.gz 9257338 BLAKE2B bcfbbc92e3b1a5ee540ad4d24a358eccd73bd36f43fa642536f73ffb51fc052150e41b356a4df8cd2b6b1e477f121adc8232d50f4f1464a31c91e8d2a8d6d3a2 SHA512 f9b880cf1e425101ea1e1015cb58fc006abc258b57a8b9734d5245ba0b4fca8acb9589ea495b3eb21d03e825a1fc3ff560d23b5b9c033266b4d858b1e561d54f diff --git a/dev-util/cmake/cmake-3.18.5.ebuild b/dev-util/cmake/cmake-3.18.5.ebuild new file mode 100644 index 000000000000..7334e72c320d --- /dev/null +++ b/dev-util/cmake/cmake-3.18.5.ebuild @@ -0,0 +1,214 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_MAKEFILE_GENERATOR="emake" # TODO: Re-check with 3.19, see commit 491dddfb; bug #596460 +CMAKE_REMOVE_MODULES_LIST=( none ) +inherit bash-completion-r1 cmake elisp-common flag-o-matic multiprocessing \ + toolchain-funcs virtualx xdg-utils + +MY_P="${P/_/-}" + +DESCRIPTION="Cross platform Make" +HOMEPAGE="https://cmake.org/" +SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz" + +LICENSE="CMake" +SLOT="0" +[[ "${PV}" = *_rc* ]] || \ +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 ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc emacs ncurses qt5 test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=app-arch/libarchive-3.3.3:= + app-crypt/rhash + >=dev-libs/expat-2.0.1 + >=dev-libs/jsoncpp-1.9.2-r2:0= + >=dev-libs/libuv-1.10.0:= + >=net-misc/curl-7.21.5[ssl] + sys-libs/zlib + virtual/pkgconfig + emacs? ( >=app-editors/emacs-23.1:* ) + ncurses? ( sys-libs/ncurses:0= ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( + dev-python/requests + dev-python/sphinx + ) +" + +S="${WORKDIR}/${MY_P}" + +SITEFILE="50${PN}-gentoo.el" + +PATCHES=( + # prefix + "${FILESDIR}"/${PN}-3.16.0_rc4-darwin-bundle.patch + "${FILESDIR}"/${PN}-3.14.0_rc3-prefix-dirs.patch + # Next patch requires new work from prefix people + #"${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch + + # handle gentoo packaging in find modules + "${FILESDIR}"/${PN}-3.17.0_rc1-FindBLAS.patch + "${FILESDIR}"/${PN}-3.17.0_rc1-FindLAPACK.patch + "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch + + # respect python eclasses + "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch + "${FILESDIR}"/${PN}-3.9.0_rc2-FindPythonInterp.patch + + "${FILESDIR}"/${PN}-3.18.0-filter_distcc_warning.patch # bug 691544 + + # upstream fixes (can usually be removed with a version bump) +) + +cmake_src_bootstrap() { + # disable running of cmake in bootstrap command + sed -i \ + -e '/"${cmake_bootstrap_dir}\/cmake"/s/^/#DONOTRUN /' \ + bootstrap || die "sed failed" + + # execinfo.h on Solaris isn't quite what it is on Darwin + if [[ ${CHOST} == *-solaris* ]] ; then + sed -i -e 's/execinfo\.h/blablabla.h/' \ + Source/kwsys/CMakeLists.txt || die + fi + + # bootstrap script isn't exactly /bin/sh compatible + tc-env_build ${CONFIG_SHELL:-sh} ./bootstrap \ + --prefix="${T}/cmakestrap/" \ + --parallel=$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)") \ + || die "Bootstrap failed" +} + +cmake_src_test() { + # fix OutDir and SelectLibraryConfigurations tests + # these are altered thanks to our eclass + sed -i -e 's:^#_cmake_modify_IGNORE ::g' \ + "${S}"/Tests/{OutDir,CMakeOnly/SelectLibraryConfigurations}/CMakeLists.txt \ + || die + + pushd "${BUILD_DIR}" > /dev/null + + local ctestargs + [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" + + # Excluded tests: + # BootstrapTest: we actually bootstrap it every time so why test it. + # BundleUtilities: bundle creation broken + # CMakeOnly.AllFindModules: pthread issues + # CTest.updatecvs: fails to commit as root + # Fortran: requires fortran + # RunCMake.CommandLineTar: whatever... + # RunCMake.CompilerLauncher: also requires fortran + # RunCMake.CPack_RPM: breaks if app-arch/rpm is installed because + # debugedit binary is not in the expected location + # RunCMake.CPack_DEB: breaks if app-arch/dpkg is installed because + # it can't find a deb package that owns libc + # RunCMake.{IncompatibleQt,ObsoleteQtMacros}: Require Qt4 + # TestUpload: requires network access + "${BUILD_DIR}"/bin/ctest \ + -j "$(makeopts_jobs)" \ + --test-load "$(makeopts_loadavg)" \ + ${ctestargs} \ + -E "(BootstrapTest|BundleUtilities|CMakeOnly.AllFindModules|CompileOptions|CTest.UpdateCVS|Fortran|RunCMake.CommandLineTar|RunCMake.CompilerLauncher|RunCMake.IncompatibleQt|RunCMake.ObsoleteQtMacros|RunCMake.PrecompileHeaders|RunCMake.CPack_(DEB|RPM)|TestUpload)" \ + || die "Tests failed" + + popd > /dev/null +} + +src_prepare() { + cmake_src_prepare + + # disable Xcode hooks, bug #652134 + if [[ ${CHOST} == *-darwin* ]] ; then + sed -i -e 's/__APPLE__/__DISABLED_APPLE__/' \ + Source/cmGlobalXCodeGenerator.cxx || die + fi + + # Add gcc libs to the default link paths + sed -i \ + -e "s|@GENTOO_PORTAGE_GCCLIBDIR@|${EPREFIX}/usr/${CHOST}/lib/|g" \ + -e "$(usex prefix-guest "s|@GENTOO_HOST@||" "/@GENTOO_HOST@/d")" \ + -e "s|@GENTOO_PORTAGE_EPREFIX@|${EPREFIX}/|g" \ + Modules/Platform/{UnixPaths,Darwin}.cmake || die "sed failed" + if ! has_version -b \>=${CATEGORY}/${PN}-3.4.0_rc1 || ! cmake --version &>/dev/null ; then + CMAKE_BINARY="${S}/Bootstrap.cmk/cmake" + cmake_src_bootstrap + fi +} + +src_configure() { + # Fix linking on Solaris + [[ ${CHOST} == *-solaris* ]] && append-ldflags -lsocket -lnsl + + local mycmakeargs=( + -DCMAKE_USE_SYSTEM_LIBRARIES=ON + -DCMAKE_DOC_DIR=/share/doc/${PF} + -DCMAKE_MAN_DIR=/share/man + -DCMAKE_DATA_DIR=/share/${PN} + -DSPHINX_MAN=$(usex doc) + -DSPHINX_HTML=$(usex doc) + -DBUILD_CursesDialog="$(usex ncurses)" + -DBUILD_TESTING=$(usex test) + ) + use qt5 && mycmakeargs+=( -DBUILD_QtDialog=ON ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + use emacs && elisp-compile Auxiliary/cmake-mode.el +} + +src_test() { + virtx cmake_src_test +} + +src_install() { + cmake_src_install + + if use emacs; then + elisp-install ${PN} Auxiliary/cmake-mode.el Auxiliary/cmake-mode.elc + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + fi + + insinto /usr/share/vim/vimfiles/syntax + doins Auxiliary/vim/syntax/cmake.vim + + insinto /usr/share/vim/vimfiles/indent + doins Auxiliary/vim/indent/cmake.vim + + insinto /usr/share/vim/vimfiles/ftdetect + doins "${FILESDIR}/${PN}.vim" + + dobashcomp Auxiliary/bash-completion/{${PN},ctest,cpack} +} + +pkg_postinst() { + use emacs && elisp-site-regen + if use qt5; then + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update + fi +} + +pkg_postrm() { + use emacs && elisp-site-regen + if use qt5; then + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update + fi +} diff --git a/dev-util/cmake/cmake-3.19.0_rc3.ebuild b/dev-util/cmake/cmake-3.19.0.ebuild similarity index 100% rename from dev-util/cmake/cmake-3.19.0_rc3.ebuild rename to dev-util/cmake/cmake-3.19.0.ebuild diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest index 97f75827f36e..a16803eb1478 100644 --- a/dev-util/jenkins-bin/Manifest +++ b/dev-util/jenkins-bin/Manifest @@ -1,3 +1,4 @@ DIST jenkins-bin-2.249.2.war 67399569 BLAKE2B df3d954988370a47d90363a01de97f17a92cb4d93049ceacea80f7d2a92195cd1e95b1f3780521efa166aee1058949f0e8861b887d6da5b0f0126a2579d22595 SHA512 0300369b3c427420a9c41ee17f3e098c77f14b25597059d740fdbea03f3679ce56d9e154d7765601274cd9dc866939595f7728bc2b8b8a0ef3ea131378648a98 DIST jenkins-bin-2.249.3.war 67400032 BLAKE2B eb9ffde454bf9ee2140655a985c6f383cb2e3d21f172075cf19171871564d356afd38b8ed6119cb3bd43801843d499242c0ae99087c5c4f7cb2db1b8b80b70a4 SHA512 5d65dee8c128ba2a307ade0750a0ad9b71136b1102a36df0a34a1217ce62df9c0c60449e0f5dd8861369b553000ef65f8bb0afb54a3c8e4315400dede58e779b DIST jenkins-bin-2.264.war 67272894 BLAKE2B 8cf8afc038420bbf101bf8c81cdb37e9ba25f631ccbe0f98d8897f12a93abf8355dca1ec23f254e14b16dbd8e88507a37b545c4854f2e8f3684bda871d8e171f SHA512 9bf29d7ae084c30c02931ba065e7d712a3cab4e4519587a1edc68e7205dac7a91934ca910536dd8d2c268575547fea2cdcc43229c726ed495658210cea7747a5 +DIST jenkins-bin-2.267.war 70971700 BLAKE2B 1470144d6be6cfc33d7b84c51ebb3f762b3e590427a362596302b87510d694b479608ff290b64a433aa98266d3c47b1294a505525cfdeae3547e58cc65f0d172 SHA512 39c042b3ca9d48c040d0a9d9ac9d65aff2f579888e24b800bc1e1b77b7175528aed31f2675b3417577b0b0eef7c17b6faa2d7b794360a17a6a4c8ba867007185 diff --git a/dev-util/jenkins-bin/jenkins-bin-2.267.ebuild b/dev-util/jenkins-bin/jenkins-bin-2.267.ebuild new file mode 100644 index 000000000000..231d58c8748f --- /dev/null +++ b/dev-util/jenkins-bin/jenkins-bin-2.267.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit user systemd + +DESCRIPTION="Extensible continuous integration server" +HOMEPAGE="https://jenkins.io/" +LICENSE="MIT" +SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war" +RESTRICT="mirror" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux" +IUSE="" + +RDEPEND="media-fonts/dejavu + media-libs/freetype + !dev-util/jenkins-bin:lts + >=virtual/jre-1.8.0" + +S=${WORKDIR} + +JENKINS_DIR=/var/lib/jenkins + +pkg_setup() { + enewgroup jenkins + enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins +} + +src_install() { + keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home + + insinto /opt/jenkins + newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war + + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/} + + newinitd "${FILESDIR}"/${PN}.init2 jenkins + newconfd "${FILESDIR}"/${PN}.confd jenkins + + systemd_newunit "${FILESDIR}"/${PN}.service2 jenkins.service + + fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} ${JENKINS_DIR}/home ${JENKINS_DIR}/backup +} diff --git a/dev-util/ninja/ninja-1.10.1.ebuild b/dev-util/ninja/ninja-1.10.1.ebuild index cc1ec4e983df..5ce80f5a06aa 100644 --- a/dev-util/ninja/ninja-1.10.1.ebuild +++ b/dev-util/ninja/ninja-1.10.1.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/ninja-build/ninja.git" else SRC_URI="https://github.com/ninja-build/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - 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 ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + 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 ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="A small build system similar to make" diff --git a/dev-util/perf/Manifest b/dev-util/perf/Manifest index 682b23199039..9d23c4e598be 100644 --- a/dev-util/perf/Manifest +++ b/dev-util/perf/Manifest @@ -1,4 +1,6 @@ DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f DIST linux-5.7.tar.xz 112690468 BLAKE2B b2b71e231507429b178b6b89be546c4a3ee2757f5d2c58b6137d383f16034a587225a75a9dbca6a01a433056ebe078487132c224e909a2971c9634687e47b1d1 SHA512 45bde01593f6147c8c169b9e46b4b56eee998142552ae0ff82f1dd21b1fd54f3b32f6283f6bd77ea717d374672167849e468c157f235d2f12f7d7816e4623bf6 DIST linux-5.8.tar.xz 114459324 BLAKE2B 7bd97f8fa4527840754434414c07283e89731dc8ebb1e95fa5bc1469a60af1122582c0d3b6e262e77882f023190068df3537bd8b65964b3caa820bb2c8e579c7 SHA512 45a53ecf351096ef6e98242cca4228b8da9b9139ecc6963695791ea6fb7a9484a4e1c19dcca7ce7cbfdfa49de0451b70973bb078f12bdae9cbaddbc3f8092556 +DIST linux-5.9.tar.xz 115507140 BLAKE2B e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb SHA512 d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca DIST patch-5.4.20.xz 776552 BLAKE2B bad2a95ed8521ac5c379fe91e16d60b2a38de19b9239755084621e5230677b232ec4cf9e2e8161c0022daff43fdbb37d5b5b5bfdc9e932ef3a860bcd17f640f8 SHA512 65fbcdbd41e35c17601ff15bbe33933be2ab7a694aa181a0b802cc11c1c653c9b688dbb382076cbad05983a0c07467955c035ae25f5175f7ce5bc24339303d77 +DIST patch-5.9.9.xz 502816 BLAKE2B 104fa2ecaac3c543662b891de22cb881a917320317d58dcaeb6b6826e3f0296126ab5177cc7a44a438c15d3ae9cab116ff6926cce9d5e4d310df99fca0d9b909 SHA512 87852bc4d08cd5e82c7de9a8c8d50c1b4c67eed7157bfe1034d279370ff21a194f082f126d49812f84ec726100c5d97b3d908994e92c2cbfd231a4ac851babe3 diff --git a/dev-util/perf/metadata.xml b/dev-util/perf/metadata.xml index 6755b7632512..279962a1a529 100644 --- a/dev-util/perf/metadata.xml +++ b/dev-util/perf/metadata.xml @@ -1,41 +1,42 @@ - - naota@gentoo.org - - - dlan@gentoo.org - Yixun Lan - - - amadio@gentoo.org - Guilherme Amadio - - - Enable builtin clang and LLVM support - - Enable C++ symbol name demangling, using libbfd from - sys-devel/binutils. When this flag is enabled, the - package will have to be rebuilt after every version bump of - binutils. - - - Build documentation and man pages. With this USE flag disabled, - the --help parameter for perf and its sub-tools will not be - available. This is optional because it depends on a few - documentation handling tools that are not always welcome on user - systems. - - Enable NUMA support - - Add support for Perl as a scripting language for perf tools. - - - Add support to define SDT event in perf tools. - - - Use sys-libs/libunwind for frame unwinding support. - - + + naota@gentoo.org + + + dlan@gentoo.org + Yixun Lan + + + amadio@gentoo.org + Guilherme Amadio + + + Enable builtin clang and LLVM support + + Enable C++ symbol name demangling, using libbfd from + sys-devel/binutils. When this flag is enabled, the + package will have to be rebuilt after every version bump of + binutils. + + + Build documentation and man pages. With this USE flag disabled, + the --help parameter for perf and its sub-tools will not be + available. This is optional because it depends on a few + documentation handling tools that are not always welcome on user + systems. + + Enable dev-libs/libpfm support + Enable NUMA support + + Add support for Perl as a scripting language for perf tools. + + + Add support to define SDT event in perf tools. + + + Use sys-libs/libunwind for frame unwinding support. + + diff --git a/dev-util/perf/perf-5.9.9.ebuild b/dev-util/perf/perf-5.9.9.ebuild new file mode 100644 index 000000000000..4ab143e4afea --- /dev/null +++ b/dev-util/perf/perf-5.9.9.ebuild @@ -0,0 +1,250 @@ +# 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 bash-completion-r1 estack eutils llvm toolchain-funcs prefix python-r1 linux-info + +DESCRIPTION="Userland tools for Linux Performance Counters" +HOMEPAGE="https://perf.wiki.kernel.org/" + +LINUX_V="${PV:0:1}.x" +if [[ ${PV} == *_rc* ]] ; then + LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1)) + PATCH_VERSION=$(ver_cut 1-3) + LINUX_PATCH=patch-${PV//_/-}.xz + SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH} + https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}" +elif [[ ${PV} == *.*.* ]] ; then + # stable-release series + LINUX_VER=$(ver_cut 1-2) + LINUX_PATCH=patch-${PV}.xz + SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" +else + LINUX_VER=${PV} + SRC_URI="" +fi + +LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" +SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="audit clang crypt debug +demangle +doc gtk java libpfm lzma numa perl python slang systemtap unwind zlib" +# TODO babeltrace +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +BDEPEND=" + sys-devel/bison + sys-devel/flex + doc? ( + app-text/asciidoc + app-text/sgml-common + app-text/xmlto + sys-process/time + )" + +RDEPEND="audit? ( sys-process/audit ) + crypt? ( dev-libs/openssl:0= ) + clang? ( + >> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" + tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ + "${paths[@]/#/linux-${LINUX_VER}/}" || die + + if [[ -n ${LINUX_PATCH} ]] ; then + eshopts_push -o noglob + ebegin "Filtering partial source patch" + filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} \ + > ${P}.patch + eend $? || die "filterdiff failed" + eshopts_pop + fi + + local a + for a in ${A}; do + [[ ${a} == ${LINUX_SOURCES} ]] && continue + [[ ${a} == ${LINUX_PATCH} ]] && continue + unpack ${a} + done +} + +src_prepare() { + default + if [[ -n ${LINUX_PATCH} ]] ; then + pushd "${S_K}" >/dev/null || die + eapply "${WORKDIR}"/${P}.patch + popd || die + fi + + # Drop some upstream too-developer-oriented flags and fix the + # Makefile in general + sed -i \ + -e "s:\$(sysconfdir_SQ)/bash_completion.d:$(get_bashcompdir):" \ + "${S}"/Makefile.perf || die + # A few places still use -Werror w/out $(WERROR) protection. + sed -i -e 's:-Werror::' \ + "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile || die + + # Avoid the call to make kernelversion + sed -i -e '/PERF-VERSION-GEN/d' Makefile.perf || die + echo "#define PERF_VERSION \"${PV}\"" > PERF-VERSION-FILE + + # The code likes to compile local assembly files which lack ELF markings. + find -name '*.S' -exec sed -i '$a.section .note.GNU-stack,"",%progbits' {} + + + # Fix shebang to use python from prefix + if [[ -n "${EPREFIX}" ]]; then + hprefixify ${S_K}/scripts/bpf_helpers_doc.py + fi +} + +puse() { usex $1 "" no; } +perf_make() { + # The arch parsing is a bit funky. The perf tools package is integrated + # into the kernel, so it wants an ARCH that looks like the kernel arch, + # but it also wants to know about the split value -- i386/x86_64 vs just + # x86. We can get that by telling the func to use an older linux version. + # It's kind of a hack, but not that bad ... + + # LIBDIR sets a search path of perf-gtk.so. Bug 515954 + + local arch=$(tc-arch-kernel) + local java_dir + use java && java_dir="${EPREFIX}/etc/java-config-2/current-system-vm" + # FIXME: NO_CORESIGHT + # FIXME: NO_LIBBABELTRACE + emake V=1 VF=1 \ + HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" \ + CC="$(tc-getCC)" CXX="$(tc-getCXX)" AR="$(tc-getAR)" LD="$(tc-getLD)" NM="$(tc-getNM)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + prefix="${EPREFIX}/usr" bindir_relative="bin" \ + tipdir="share/doc/${PF}" \ + EXTRA_CFLAGS="${CFLAGS}" \ + ARCH="${arch}" \ + JDIR="${java_dir}" \ + LIBCLANGLLVM=$(usex clang 1 "") \ + LIBPFM4=$(usex libpfm 1 "") \ + NO_AUXTRACE="" \ + NO_BACKTRACE="" \ + NO_CORESIGHT=1 \ + NO_DEMANGLE=$(puse demangle) \ + NO_GTK2=$(puse gtk) \ + feature-gtk2-infobar=$(usex gtk 1 "") \ + NO_JVMTI=$(puse java) \ + NO_LIBAUDIT=$(puse audit) \ + NO_LIBBABELTRACE=1 \ + NO_LIBBIONIC=1 \ + NO_LIBBPF= \ + NO_LIBCRYPTO=$(puse crypt) \ + NO_LIBDW_DWARF_UNWIND= \ + NO_LIBELF= \ + NO_LIBNUMA=$(puse numa) \ + NO_LIBPERL=$(puse perl) \ + NO_LIBPYTHON=$(puse python) \ + NO_LIBUNWIND=$(puse unwind) \ + NO_SDT=$(puse systemtap) \ + NO_SLANG=$(puse slang) \ + NO_LZMA=$(puse lzma) \ + NO_ZLIB= \ + WERROR=0 \ + LIBDIR="/usr/libexec/perf-core" \ + "$@" +} + +src_compile() { + # test-clang.bin not build with g++ + if use clang; then + pushd "${S_K}/tools/build/feature/" || die + make V=1 CXX=${CHOST}-clang++ test-clang.bin || die + popd + fi + perf_make -f Makefile.perf + use doc && perf_make -C Documentation +} + +src_test() { + : +} + +src_install() { + _install_python_ext() { + perf_make -f Makefile.perf install-python_ext DESTDIR="${D}" + } + + perf_make -f Makefile.perf install DESTDIR="${D}" + + if use python; then + python_foreach_impl _install_python_ext + fi + + if use gtk; then + local libdir + libdir="$(get_libdir)" + # on some arches it ends up in lib even on 64bit, ppc64 for instance. + [[ -f "${ED}"/usr/lib/libperf-gtk.so ]] && libdir="lib" + mv "${ED}"/usr/${libdir}/libperf-gtk.so \ + "${ED}"/usr/libexec/perf-core || die + fi + + dodoc CREDITS + + dodoc *txt Documentation/*.txt + + # perf needs this decompressed to print out tips for users + docompress -x /usr/share/doc/${PF}/tips.txt + + if use doc ; then + HTML_DOCS="Documentation/*.html" einstalldocs + doman Documentation/*.1 + fi +} diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index b793855cd0b8..4bdcf235ec3a 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest index 0a2f26c8da8c..613df178825c 100644 --- a/dev-vcs/git-lfs/Manifest +++ b/dev-vcs/git-lfs/Manifest @@ -1 +1,2 @@ DIST git-lfs-2.11.0.tar.gz 2839623 BLAKE2B e9d0e8ea37f19617a4f727abdc93c3c937052ad98b6ac40de27ced6b250789701797d04f1bf795b259e83155e5d8a1ca122dbf8b40503c2c41d6d891a3ecf096 SHA512 2117b425864a36f773c14d34c78999636d836646184cf8d89045ef6de90cbded873d4de4613ecfafb0fa2ea8ae068e11f5ae22eed6af01715b5fac9be70f033b +DIST git-lfs-2.12.1.tar.gz 2848245 BLAKE2B 745a1ad252b925074a9ddfd9f899098dfca0b672b176178675652d910737f76c2c55aa502d0a544ad36a7eee00a464e12b9bb178ccd1fb118c2a96b362de80d1 SHA512 728bf414910a9a9106ea6769b939aae9ec25976e686399d0612e8ff99131a6571641b4121cb123ad6c32fc6dd59674ca50416a48e4771924b27062326df78ce0 diff --git a/dev-vcs/git-lfs/git-lfs-2.12.1.ebuild b/dev-vcs/git-lfs/git-lfs-2.12.1.ebuild new file mode 100644 index 000000000000..f5a948c8f4fd --- /dev/null +++ b/dev-vcs/git-lfs/git-lfs-2.12.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +EGO_PN=github.com/git-lfs/git-lfs +inherit go-module + +DESCRIPTION="Command line extension and specification for managing large files with git" +HOMEPAGE="https://git-lfs.github.com/" + +if [[ "${PV}" = 9999* ]]; then + EGIT_REPO_URI="https://${EGO_PN}" + inherit git-r3 +else + SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0 BSD BSD-2 BSD-4 ISC MIT" +SLOT="0" +IUSE="doc test" + +BDEPEND="doc? ( app-text/ronn )" +RDEPEND="dev-vcs/git" + +RESTRICT+=" !test? ( test )" + +src_compile() { + # Flags -w, -s: Omit debugging information to reduce binary size, + # see https://golang.org/cmd/link/. + local mygobuildargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT} -s -w" + -mod vendor -v -work -x + ) + go build "${mygobuildargs[@]}" -o git-lfs git-lfs.go || die + + if use doc; then + ronn docs/man/*.ronn || die "man building failed" + fi +} + +src_install() { + dobin git-lfs + dodoc {CHANGELOG,CODE-OF-CONDUCT,CONTRIBUTING,README}.md + use doc && doman docs/man/*.1 +} + +src_test() { + local mygotestargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}" + -mod vendor + ) + go test "${mygotestargs[@]}" ./... || die +} + +pkg_postinst () { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "Run \'git lfs install\' once for each user account manually." + elog "For more details see https://bugs.gentoo.org/show_bug.cgi?id=733372." + fi +} diff --git a/dev-vcs/git-lfs/git-lfs-9999.ebuild b/dev-vcs/git-lfs/git-lfs-9999.ebuild index a48a6fe6e6c6..f5a948c8f4fd 100644 --- a/dev-vcs/git-lfs/git-lfs-9999.ebuild +++ b/dev-vcs/git-lfs/git-lfs-9999.ebuild @@ -13,7 +13,7 @@ if [[ "${PV}" = 9999* ]]; then inherit git-r3 else SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" fi LICENSE="Apache-2.0 BSD BSD-2 BSD-4 ISC MIT" @@ -26,12 +26,13 @@ RDEPEND="dev-vcs/git" RESTRICT+=" !test? ( test )" src_compile() { - set -- go build \ - -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}" \ - -mod vendor -v -work -x \ - -o git-lfs git-lfs.go - echo "$@" - "$@" || die + # Flags -w, -s: Omit debugging information to reduce binary size, + # see https://golang.org/cmd/link/. + local mygobuildargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT} -s -w" + -mod vendor -v -work -x + ) + go build "${mygobuildargs[@]}" -o git-lfs git-lfs.go || die if use doc; then ronn docs/man/*.ronn || die "man building failed" @@ -45,12 +46,11 @@ src_install() { } src_test() { - set -- go test \ - -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}" \ - -mod vendor \ - ./... - echo "$@" - "$@" || die + local mygotestargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}" + -mod vendor + ) + go test "${mygotestargs[@]}" ./... || die } pkg_postinst () { diff --git a/games-server/Manifest.gz b/games-server/Manifest.gz index 066e442aa86e..f33c57c7e8d1 100644 Binary files a/games-server/Manifest.gz and b/games-server/Manifest.gz differ diff --git a/games-server/bedrock-server/Manifest b/games-server/bedrock-server/Manifest index 7f392f583ab6..1761a45f5e72 100644 --- a/games-server/bedrock-server/Manifest +++ b/games-server/bedrock-server/Manifest @@ -1 +1,2 @@ +DIST bedrock-server-1.16.100.04.zip 89007325 BLAKE2B baaa1244297385938ea45ed0559e9965d6b0c03f13ccaa6a85e9ee4b272ad46eeb9ce0b1a23fd3eb1b4cfdda730d3251a7df86470bdfebe617dea2f87e5c35b0 SHA512 7442237169dbc64d11629321a5ec75b004f4e29e28b3c031cfca98498d079b759bcecb56fe0c7f8df8c3fca4bdc7127b282614a50adeb7afa41aa89f190f1fc7 DIST bedrock-server-1.16.40.02.zip 69910097 BLAKE2B 6c074a3f99bcd9dfe0214a43550d08714af9a58ee619765bf6713b59b997c1c322bba906966c18181fdb3c5e3e5791140fa49d25146820b649f30ace1c147adb SHA512 e0d012719a413656ed0f4b8ffc0ca96d537e3dbfc306ce8e05d757442e209ce2b1f9a43c1152c3a36ed251a35f68f6072401742e1ab2cf75d75ef9420232702b diff --git a/games-server/bedrock-server/bedrock-server-1.16.100.04.ebuild b/games-server/bedrock-server/bedrock-server-1.16.100.04.ebuild new file mode 100644 index 000000000000..a60cb02addb6 --- /dev/null +++ b/games-server/bedrock-server/bedrock-server-1.16.100.04.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="The official bedrock (non-java) based server for the sandbox video game" +HOMEPAGE="https://www.minecraft.net/" +SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip" + +LICENSE="Mojang" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + acct-group/bedrock + acct-user/bedrock + app-misc/dtach + dev-libs/openssl:0/1.1 + net-misc/curl[ssl] +" + +BDEPEND="app-arch/unzip" + +RESTRICT="bindist mirror" + +S="${WORKDIR}" + +DOCS=( + "bedrock_server_how_to.html" + "release-notes.txt" +) + +QA_PREBUILT=" + opt/bedrock-server/bedrock_server + opt/bedrock-server/libCrypto.so +" + +src_install() { + exeinto /opt/bedrock-server + doexe bedrock_server libCrypto.so + + insinto /opt/bedrock-server + doins {permissions,whitelist}.json server.properties + doins -r {behavior,resource}_packs definitions structures + + dodir /opt/bin + dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server + + newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server + newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server + + einstalldocs +} diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz index b469e729cac3..f412aaa6e81a 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 0c739f8d011b..69487e9e5241 100644 --- a/games-util/pyfa/Manifest +++ b/games-util/pyfa/Manifest @@ -1,2 +1,2 @@ -DIST pyfa-2.29.0.tar.gz 12631717 BLAKE2B 5999c82f090d36355188601158c648112b5d194066b193080260d609e3edbecba4078d9a02ebdfaa6561f555e3876833b20f81b0992e95f4efd0dc632563c95f SHA512 2d7945c7d93a358ab06de554bd6a7f359934a8508cb828d5a4c4c47e743217560083ed16dc91e8c7f0f14f7aec96ec2c7965bae51b687a8e63558365628c0d43 DIST pyfa-2.30.0.tar.gz 28042200 BLAKE2B b822e76979744c55673fec61b3c37eb27a500b031d1493724eec09a52d0bfa8f7815c1f03f3bc6da5233ceb2e6ff1b0217ad29201d6021545a944c7ee0342b68 SHA512 424c114b2ad869a950348811716865ed037abfa0ccd52194a920adcf05aee319e24c6f1fa3abb56193d02d1054986b9e4b0da5e49ffab38e488f0126e05d9669 +DIST pyfa-2.31.0.tar.gz 28138681 BLAKE2B a183fa073a34f0db1264aae980e36e28e90374153e372bcb14cf3a0c3e3c1ff95084f8c23a9710a169671d12ec830e3203d1eb072d1dfc1d9c1095e0422bccfb SHA512 813ca3f7f43b08ceceb1e607ddbc2ff0b47836823dde91787da2c3905fd9af2fdddfa582ec867dd4311f14f4180cc8ec993a49f0ed62b6ce68d4eed6060c3c5b diff --git a/games-util/pyfa/pyfa-2.29.0.ebuild b/games-util/pyfa/pyfa-2.31.0.ebuild similarity index 100% rename from games-util/pyfa/pyfa-2.29.0.ebuild rename to games-util/pyfa/pyfa-2.31.0.ebuild diff --git a/games-util/pyfa/pyfa-9999.ebuild b/games-util/pyfa/pyfa-9999.ebuild index 00faae6993c0..50ffcdd37c25 100644 --- a/games-util/pyfa/pyfa-9999.ebuild +++ b/games-util/pyfa/pyfa-9999.ebuild @@ -6,7 +6,7 @@ EAPI="7" PYTHON_COMPAT=( python3_{6,7,8} ) PYTHON_REQ_USE="sqlite" -inherit desktop eutils python-single-r1 xdg-utils +inherit desktop edos2unix python-single-r1 xdg DESCRIPTION="Python Fitting Assistant - a ship fitting application for EVE Online" HOMEPAGE="https://github.com/pyfa-org/Pyfa" @@ -76,7 +76,7 @@ src_install() { insinto /usr/share/${PN} einfo "Creating database ..." - python ./db_update.py || die + ${EPYTHON} ./db_update.py || die doins eve.db einfo "Compressing images ..." @@ -90,11 +90,3 @@ src_install() { newicon -s 64 imgs/gui/pyfa64.png pyfa.png domenu "${FILESDIR}/${PN}.desktop" } - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz index e521cb2708fe..3f50e0ee6a4d 100644 Binary files a/gui-apps/Manifest.gz and b/gui-apps/Manifest.gz differ diff --git a/gui-apps/wcm/wcm-0.5.0.ebuild b/gui-apps/wcm/wcm-0.5.0.ebuild index 375772702783..f1467516605b 100644 --- a/gui-apps/wcm/wcm-0.5.0.ebuild +++ b/gui-apps/wcm/wcm-0.5.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git" else SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 ~x86" fi LICENSE="MIT" diff --git a/gui-apps/wf-shell/wf-shell-0.5.0.ebuild b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild index 94c26507f32a..f4c6ec5dafef 100644 --- a/gui-apps/wf-shell/wf-shell-0.5.0.ebuild +++ b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git" else SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 ~x86" fi LICENSE="MIT" diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index 962df1bd36c7..aeca3f9d87f9 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/wf-config/wf-config-0.5.0.ebuild b/gui-libs/wf-config/wf-config-0.5.0.ebuild index b100b1d861f4..f931c5c75f9f 100644 --- a/gui-libs/wf-config/wf-config-0.5.0.ebuild +++ b/gui-libs/wf-config/wf-config-0.5.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git" else SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 ~x86" fi LICENSE="MIT" diff --git a/gui-wm/Manifest.gz b/gui-wm/Manifest.gz index f06779d2f301..815492300205 100644 Binary files a/gui-wm/Manifest.gz and b/gui-wm/Manifest.gz differ diff --git a/gui-wm/wayfire/wayfire-0.5.0.ebuild b/gui-wm/wayfire/wayfire-0.5.0.ebuild index f2df4accbaa3..5b1a4cb2d819 100644 --- a/gui-wm/wayfire/wayfire-0.5.0.ebuild +++ b/gui-wm/wayfire/wayfire-0.5.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git" else SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 ~x86" fi LICENSE="MIT" diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz index bb9e92d85df7..133c0764799c 100644 Binary files a/kde-apps/Manifest.gz and b/kde-apps/Manifest.gz differ diff --git a/kde-apps/kdav/Manifest b/kde-apps/kdav/Manifest deleted file mode 100644 index 153d3b954c02..000000000000 --- a/kde-apps/kdav/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kdav-20.04.3.tar.xz 58292 BLAKE2B d8972f33b86621b013b365656955c3bd69718aff73c3ab27d14311009ca821266c23a257790c96e3b0b171f110e2262a548fad31a15204957a70c25b6827ab65 SHA512 ba9f5dd26b60ce339aeeacd3777b70d490020a5a23179e71bfb7c54a4bdcaf6d940e68a44c2291b3ce06783b28edc5aa5e608a45561d18db2cdf72621f4a44ec diff --git a/kde-apps/kdav/kdav-20.04.3.ebuild b/kde-apps/kdav/kdav-20.04.3.ebuild deleted file mode 100644 index 029d943ae022..000000000000 --- a/kde-apps/kdav/kdav-20.04.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_TEST="forceoptional" -KFMIN=5.70.0 -QTMIN=5.14.2 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="DAV protocol implemention with KJobs" -HOMEPAGE="https://api.kde.org/kdepim/kdav/html/index.html" - -LICENSE="LGPL-2+" -SLOT="5" -KEYWORDS="amd64 arm64 ~ppc64 x86" -IUSE="" - -DEPEND=" - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=dev-qt/qtxmlpatterns-${QTMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kio-${KFMIN}:5 -" -RDEPEND="${DEPEND}" - -src_test() { - # bug 616808 - DavItemFetchJobTest requires D-Bus - # bug 653602 - DavItemsListJobTest mimetypes unsupported - local myctestargs=( - -E "(kdav-davitemfetchjob|kdav-davitemslistjob)" - ) - ecm_src_test -} diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index 7e03469d4095..0d47520fc33f 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/discover/discover-5.20.3.ebuild b/kde-plasma/discover/discover-5.20.3.ebuild deleted file mode 100644 index 28a1d2bcbf89..000000000000 --- a/kde-plasma/discover/discover-5.20.3.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_TEST="forceoptional" -KFMIN=5.74.0 -QTMIN=5.15.1 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="KDE Plasma resources management GUI" -HOMEPAGE="https://userbase.kde.org/Discover" - -LICENSE="GPL-2" # TODO: CHECK -SLOT="5" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="+firmware telemetry" - -# libmarkdown (app-text/discount) only used in PackageKitBackend -DEPEND=" - >=dev-qt/qtconcurrent-${QTMIN}:5 - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtdeclarative-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=kde-frameworks/attica-${KFMIN}:5 - >=kde-frameworks/kconfig-${KFMIN}:5 - >=kde-frameworks/kconfigwidgets-${KFMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kcrash-${KFMIN}:5 - >=kde-frameworks/kdbusaddons-${KFMIN}:5 - >=kde-frameworks/kdeclarative-${KFMIN}:5 - >=kde-frameworks/ki18n-${KFMIN}:5 - >=kde-frameworks/kio-${KFMIN}:5 - >=kde-frameworks/kirigami-${KFMIN}:5 - >=kde-frameworks/kitemmodels-${KFMIN}:5 - >=kde-frameworks/knewstuff-${KFMIN}:5 - >=kde-frameworks/knotifications-${KFMIN}:5 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 - >=kde-frameworks/kxmlgui-${KFMIN}:5 - firmware? ( sys-apps/fwupd ) - telemetry? ( dev-libs/kuserfeedback:5 ) -" -RDEPEND="${DEPEND} - >=dev-qt/qtquickcontrols2-${QTMIN}:5 - >=kde-frameworks/kirigami-${KFMIN}:5 -" - -src_prepare() { - ecm_src_prepare - # we don't need it with PackageKitBackend off - ecm_punt_bogus_dep KF5 Archive -} - -src_configure() { - local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_packagekitqt5=ON - -DCMAKE_DISABLE_FIND_PACKAGE_AppStreamQt=ON - -DCMAKE_DISABLE_FIND_PACKAGE_Snapd=ON - -DBUILD_FlatpakBackend=OFF - -DBUILD_FwupdBackend=$(usex firmware) - $(cmake_use_find_package telemetry KUserFeedback) - ) - - ecm_src_configure -} - -src_test() { - # bug 686392: needs network connection - local myctestargs=( - -E "(knsbackendtest)" - ) - - ecm_src_test -} diff --git a/mail-client/Manifest.gz b/mail-client/Manifest.gz index 4c588b5dabad..72f9066f276b 100644 Binary files a/mail-client/Manifest.gz and b/mail-client/Manifest.gz differ diff --git a/mail-client/claws-mail/Manifest b/mail-client/claws-mail/Manifest index a9e2915dc783..31950c519a2a 100644 --- a/mail-client/claws-mail/Manifest +++ b/mail-client/claws-mail/Manifest @@ -1,3 +1,2 @@ -DIST claws-mail-3.17.6.tar.xz 6400692 BLAKE2B ce5fc914db89835a2a678e68da950d7487e8df919847f3d69baabc73012908f3853dcb274ae4c0e1a4f0f46fb38903b77fe7a2aa7e5b9169bd8eb597035d2ce5 SHA512 07fdf7fce722ee1e50aa155bca720323a58842b372d8295bed33c7245fce5790a1bd3ed7462130664a218a804ab6bd1ba3663ee3e53fbbac6a4a477dd676ede0 DIST claws-mail-3.17.7.tar.xz 6447268 BLAKE2B 432e36e5a376622508eed2e4ba7fbc885df66b05b7f91386f8bb3cb1f96980b946362fad55848f1c0534bc079981d7e4d894ebf62d6ecaa9c60cfde709927a75 SHA512 b8089b0454c8e91a2e1fac8829e44ab01faa049f899252eb226e0b4998be4136334bba3d3efc5baff90e23e027ad928162950b4c986504d918dc628fcf9fa2ff DIST claws-mail-3.17.8.tar.xz 6435692 BLAKE2B 2fb981ea86294eba0918c4b9bd74b762e19b6658d1970e6ec8f41e97e37063d3823f4aaae3ffcd855bd2839b7feb3a4bca0c15595fce2968de2418758f4fc50c SHA512 dc29c968dc81a184af8f66c1afe5c9d17558ce6a4a8b196136a9fb5deec96aa67eec42148ed0f4d6d6ee94aec2791247b9034090dac81beec193bd7d366617d7 diff --git a/mail-client/claws-mail/claws-mail-3.17.6-r1.ebuild b/mail-client/claws-mail/claws-mail-3.17.6-r1.ebuild deleted file mode 100644 index 6274cc62b9fc..000000000000 --- a/mail-client/claws-mail/claws-mail-3.17.6-r1.ebuild +++ /dev/null @@ -1,215 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools desktop xdg - -DESCRIPTION="An email client (and news reader) based on GTK+" -HOMEPAGE="https://www.claws-mail.org/" - -if [[ "${PV}" == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="git://git.claws-mail.org/claws.git" -else - SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz" - KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" -fi - -SLOT="0" -LICENSE="GPL-3" - -IUSE="+appindicator archive bogofilter calendar clamav dbus debug dillo doc gdata +gnutls +imap ipv6 ldap +libcanberra +libnotify litehtml networkmanager nls nntp +notification pdf perl +pgp rss session sieve smime spamassassin spam-report spell startup-notification svg valgrind xface" - -REQUIRED_USE=" - appindicator? ( notification ) - libcanberra? ( notification ) - libnotify? ( notification ) - networkmanager? ( dbus ) - smime? ( pgp ) -" - -COMMONDEPEND=" - dev-libs/nettle:= - net-mail/ytnef - sys-libs/zlib:= - x11-libs/cairo - x11-libs/gdk-pixbuf:2[jpeg] - >=x11-libs/gtk+-2.24:2 - x11-libs/libX11 - x11-libs/pango - archive? ( - app-arch/libarchive - >=net-misc/curl-7.9.7 - ) - bogofilter? ( mail-filter/bogofilter ) - calendar? ( - >=dev-libs/libical-2.0.0:= - >=net-misc/curl-7.9.7 - ) - dbus? ( - >=dev-libs/dbus-glib-0.60 - sys-apps/dbus - ) - gdata? ( >=dev-libs/libgdata-0.17.2 ) - dillo? ( www-client/dillo ) - gnutls? ( >=net-libs/gnutls-3.0 ) - imap? ( >=net-libs/libetpan-0.57 ) - ldap? ( >=net-nds/openldap-2.0.7 ) - litehtml? ( - >=dev-libs/glib-2.36:2 - >=dev-libs/gumbo-0.10 - net-misc/curl - media-libs/fontconfig - ) - nls? ( >=sys-devel/gettext-0.18 ) - nntp? ( >=net-libs/libetpan-0.57 ) - notification? ( - dev-libs/glib:2 - appindicator? ( dev-libs/libindicate:3[gtk] ) - libcanberra? ( media-libs/libcanberra[gtk] ) - libnotify? ( x11-libs/libnotify ) - ) - pdf? ( app-text/poppler[cairo] ) - pgp? ( >=app-crypt/gpgme-1.0.0 ) - session? ( - x11-libs/libICE - x11-libs/libSM - ) - smime? ( >=app-crypt/gpgme-1.0.0 ) - spam-report? ( >=net-misc/curl-7.9.7 ) - spell? ( >=app-text/enchant-2.0.0:2= ) - startup-notification? ( x11-libs/startup-notification ) - svg? ( >=gnome-base/librsvg-2.40.5 ) - valgrind? ( dev-util/valgrind ) -" - -DEPEND="${COMMONDEPEND} - xface? ( >=media-libs/compface-1.4 ) -" -BDEPEND=" - app-arch/xz-utils - virtual/pkgconfig -" -RDEPEND="${COMMONDEPEND} - app-misc/mime-types - x11-misc/shared-mime-info - clamav? ( app-antivirus/clamav ) - networkmanager? ( net-misc/networkmanager ) - pdf? ( app-text/ghostscript-gpl ) - perl? ( dev-lang/perl:= ) - rss? ( - dev-libs/libxml2 - net-misc/curl - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-3.17.5-enchant-2_default.patch" -) - -src_prepare() { - xdg_src_prepare - eautoreconf -} - -src_configure() { - # Don't use libsoup-gnome (bug #565924) - export HAVE_LIBSOUP_GNOME=no - - local myeconfargs=( - --disable-bsfilter-plugin - --disable-fancy-plugin - --disable-generic-umpc - --disable-jpilot #735118 - --enable-acpi_notifier-plugin - --enable-address_keeper-plugin - --enable-alternate-addressbook - --enable-att_remover-plugin - --enable-attachwarner-plugin - --enable-fetchinfo-plugin - --enable-mailmbox-plugin - --enable-newmail-plugin - --enable-tnef_parse-plugin - --with-password-encryption=$(usex gnutls gnutls old) - $(use_enable archive archive-plugin) - $(use_enable bogofilter bogofilter-plugin) - $(use_enable calendar vcalendar-plugin) - $(use_enable clamav clamd-plugin) - $(use_enable dbus) - $(use_enable debug crash-dialog) - $(use_enable dillo dillo-plugin) - $(use_enable doc manual) - $(use_enable gdata gdata-plugin) - $(use_enable gnutls) - $(use_enable ipv6) - $(use_enable ldap) - $(use_enable litehtml litehtml_viewer-plugin) - $(use_enable networkmanager) - $(use_enable nls) - $(use_enable notification notification-plugin) - $(use_enable pdf pdf_viewer-plugin) - $(use_enable perl perl-plugin) - $(use_enable pgp pgpcore-plugin) - $(use_enable pgp pgpinline-plugin) - $(use_enable pgp pgpmime-plugin) - --disable-python-plugin - $(use_enable rss rssyl-plugin) - $(use_enable session libsm) - $(use_enable sieve managesieve-plugin) - $(use_enable smime smime-plugin) - $(use_enable spam-report spam_report-plugin) - $(use_enable spamassassin spamassassin-plugin) - $(use_enable spell enchant) - $(use_enable startup-notification) - $(use_enable svg) - $(use_enable valgrind valgrind) - $(use_enable xface compface) - ) - - # libetpan is needed if user wants nntp or imap functionality - if use imap || use nntp ; then - myeconfargs+=( --enable-libetpan ) - else - myeconfargs+=( --disable-libetpan ) - fi - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -src_install() { - local DOCS=( AUTHORS ChangeLog* INSTALL* NEWS README* TODO* ) - default - - # Makefile install claws-mail.png in /usr/share/icons/hicolor/48x48/apps - # => also install it in /usr/share/pixmaps for other desktop envs - # => also install higher resolution icons in /usr/share/icons/hicolor/... - insinto /usr/share/pixmaps - doins ${PN}.png - local size - for size in 64 128 ; do - newicon -s ${size} ${PN}-${size}x${size}.png ${PN}.png - done - - docinto tools - dodoc tools/README* - - domenu ${PN}.desktop - - einfo "Installing extra tools" - cd "${S}"/tools || die - exeinto /usr/$(get_libdir)/${PN}/tools - doexe *.pl *.py *.conf *.sh - doexe tb2claws-mail update-po uudec uuooffice - - # kill useless files - rm -f "${ED}"/usr/lib*/claws-mail/plugins/*.{a,la} -} - -pkg_postinst() { - ewarn "When upgrading from version 3.9.0 or below some changes have happened:" - ewarn "- There are no individual plugins in mail-client/claws-mail-* anymore, but they are integrated mostly controlled through USE flags" - ewarn "- Plugins with no special dependencies are just built and can be loaded through the interface" - ewarn "- The gtkhtml2 and trayicon plugins have been dropped entirely" - xdg_pkg_postinst -} diff --git a/mail-client/claws-mail/claws-mail-3.17.7.ebuild b/mail-client/claws-mail/claws-mail-3.17.7.ebuild index 81c3de08b2e5..6274cc62b9fc 100644 --- a/mail-client/claws-mail/claws-mail-3.17.7.ebuild +++ b/mail-client/claws-mail/claws-mail-3.17.7.ebuild @@ -13,7 +13,7 @@ if [[ "${PV}" == 9999 ]] ; then EGIT_REPO_URI="git://git.claws-mail.org/claws.git" else SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" + KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" fi SLOT="0" diff --git a/mail-client/thunderbird-bin/Manifest b/mail-client/thunderbird-bin/Manifest index 7b5f737614e5..45a4cc91ce41 100644 --- a/mail-client/thunderbird-bin/Manifest +++ b/mail-client/thunderbird-bin/Manifest @@ -62,5 +62,71 @@ DIST thunderbird-78.4.2-uz.xpi 586574 BLAKE2B 42b42fa115339649f8ca557c0a114eacee DIST thunderbird-78.4.2-vi.xpi 674611 BLAKE2B c6e8054e03b6196067315af6bb800febc66c152daa0e9bd04a6196ab12e48a8ef4f2293ae7bcd94723f2089955c1b003c7901d3b428e07b54b28093a39cb4700 SHA512 476e531817cca8365859638f2139fd5bf8077e505d83f8c3adc905ff5a79e57e4e5183fb9d7c26dfec1405c648a3a97cdd0ccfbbb8796d4423dcc6bb7b6ed211 DIST thunderbird-78.4.2-zh-CN.xpi 687180 BLAKE2B 83e41c6109deb204aa5d2f12b7b8b0eeac578881de4ef5f393efa89f9b0e87ad1ed9e62cd5a94e3b25afa102fe5d08e0cce8a1d54394f753fe8011de8ef025f9 SHA512 0fa70df0a14d600008fb94186e3c384128130071324f5baf96ba677435a5c90fc3ad8fd344aac03f993c56e1f046eb334f580e446a628e9886a3f36a837b19d4 DIST thunderbird-78.4.2-zh-TW.xpi 687614 BLAKE2B e6cf4c29878bf8d1269e40e38a4e69d836f101a3ec220462a050a5d8616ec45b36f643bce2798c87fb6546ba07aaf27a4e20b7af7cfcdfa9fccd506ccc190c0a SHA512 cac2f2890d920def6731c0ead80b515970a87de18d5640b1351ae887f5933a2f35be2b3b3a9cf6d0c70e745af4bb76ff85f1a8828294ba5537b531df448c95b1 +DIST thunderbird-78.5.0-af.xpi 548318 BLAKE2B 479eebf8437aeed5e2ee9b4f743729ae97111dc19b75502670587b8848118282a9b18aaa1f570270c073408d9354a55cffc90878ceb52e857be19d3f3fc32bd4 SHA512 96691128a3d6b93392fa48dd7485cec8ca92a0af1df6949493aa096289ca2488e07672ad87fa1d5377b4fc5bf66aa171b6953e928b3638951f25eefb16a23534 +DIST thunderbird-78.5.0-ar.xpi 648572 BLAKE2B a5f17cd99faee0800d221ecb97cd98e1e74f23e03103a0aa2489c64686b072e692e1bff53bd64e7b3bef62b8fa94a0c3e207580d051a95dfd8d0d2bad6154522 SHA512 5d28982dbefb8d7186490cf3ba591b349321bae46ec0b30d79749389b17678f739ef04b6943e7028b223cea7e4835edc46fdd397c0f64439adba02321ed5e892 +DIST thunderbird-78.5.0-ast.xpi 561213 BLAKE2B 7863103ed4c83b0c00825c3588f9b23798d141e3cf6faa378bacaa45b177ddeb75643125815733b3e3e7ee43433f97f483215efecd11b25c1a3110125e27ac68 SHA512 845b5c19ef773ca2a169122e3a8dd2513a91f016748ca834a0d2eb5579455be918ce38f77e71257c916ac6cf719c4c25795851cdd1b716029d75c4705a5de0b7 +DIST thunderbird-78.5.0-be.xpi 666633 BLAKE2B a333de1dde21f1d450f1a97b46d319f840b6ef5b3f1b3031dea2b4bbe8c7ee9a58c4c61e740835efc735b7894d3ef09c18d5f239b55c1ca9ed3af0d75695e474 SHA512 9c0cd7ad9b3994b87f48cb406a758d3b10e9bd397ff782f9e5d0a9c92467b25c5cf06ca81ac00e117b2080268a6500d78283dc8c281304941508c7c963cccebd +DIST thunderbird-78.5.0-bg.xpi 672382 BLAKE2B 4dbbeea6db33e4f8172ef9d95781b50d68916091673441463b0104873443dad3cd906137fbaca9e70674cbed61505bc7d298695f47adfba134e469bd3c547f92 SHA512 3386be24f48ad47ca7467997831b1f81e79f2007da5e74699b929b8d023ca715edf6354392b4865ef4b62635f3689902ac94c700b1941cae584691d8cda5cbd1 +DIST thunderbird-78.5.0-br.xpi 604498 BLAKE2B 6f368232ef0ffec699f89239c8de8295307fb0b53b6b3dafe84d3b765c9b46dca099cea50707783b8bb4891c6c6d60effa8fc31b220ea9ffd78818cba7edc77a SHA512 78803f838b4c7315b5761f0a93e362cd267674c532758e29190ec233aa886dd4840afbdf298856cf726540b21b6d67e41cb79781e8ed467a45c1724b0ae6e165 +DIST thunderbird-78.5.0-ca.xpi 620410 BLAKE2B b20e21ac5063486eec47721877eab8d8ea73ebd12604c6be2356be45dc2898f552067f6b38807fedbed605b21554fdd78a60d8a4b15188e9dcd52bf17430c442 SHA512 d5e122b96588ff32fd775da351d90a96db21850e73e00cfcdca1da65bc6229a5e481fea1c4b3e89a1dbcccb24ae55e60daf7952af6416cb0a7c0c671569705a7 +DIST thunderbird-78.5.0-cak.xpi 635653 BLAKE2B d2f4f5601fe56cb2336ef7d049ed144f30b78bf7f1ae7eefe401bc10210749e9c9ac53e2b3abc2c34292abcf4300191bf09108bd3db1ecea58a57188c63e5b32 SHA512 20ba4003476f673468cad2edbfb43d6ddfda8deccd44ba48fe8332c5d12aea01c4355de1a8d0ea372f59b526efa2e3b085339db70bedbbccc1a23ca4b3da4bb0 +DIST thunderbird-78.5.0-cs.xpi 635315 BLAKE2B 2d4a08c27cc7b69e44f79c36c81e6d4d92c0fe91a7ca5d7267e4b7993c049fbf057c67e8974d95789f6465fb62e659869295f8e60159e8f923a0127ed988561a SHA512 1a968bf633093513d326242d2ff057cee9824d91e3328b3bda6b2acb18aaafa4540bd2f974f8be0b4767a3a4bef68060d96449fafc9ee9e877a02527d4ae7d0c +DIST thunderbird-78.5.0-cy.xpi 646244 BLAKE2B ebf23594f0053f179bb655339393edf562c8204f9dadf1b49f810a97de71d4ad096c841e51cf68c6ad05ed4b9e953e62751e7843ce5c09b1940d63172e482e5f SHA512 53005cd6f409fed072211a504faa86f4456ab849e001cb44ad99c148228b11f1885f8d0a2505dc9f71f83c2061c8d7f67d2d5e6752e35c07f427536a978d2efc +DIST thunderbird-78.5.0-da.xpi 620986 BLAKE2B 56bdfacb9c40cf2c70560aec395cda594024b82d31d6c96bef4a5b71214edbc3bbf74ae013f0cce4bf44287160477e08a2ef6a91df14e8e700d2d9ccfaecfe67 SHA512 7c3af279f77e313c79b26a84ecb937cf799dce35abdbefdf1dca084d532a4121248b5ae056f9ec370171e8c1bdb70a6b05674b2b5eb1e7e7b7b9a51f9b5d0e61 +DIST thunderbird-78.5.0-de.xpi 665194 BLAKE2B 2f0e1acf124aa2ddfd8615d1b596332762e105ec065cffa4a763d54a504d381c37bd16aef8a2093a99ab514b9efa226650d1d31649e3c58335dca35b71fb90c7 SHA512 63a326c45198aa2d41f8621d0624a412dd635955f0397090d931c2fa3fc7a3fe6e9e896c00954cee9fbaefd6650de4b86571d038ddd8c60f81e5c2c661df55a3 +DIST thunderbird-78.5.0-dsb.xpi 666774 BLAKE2B 751095ef5074451e5c31554c325f15063fecab8c7e9ac1c4f330e0ff091205b800e7dbfb15908988eaa234aac75899813f9effe927e34acb21aec48d52ef0991 SHA512 300e63b1f3503bd8943ad757efb4fc04564e316a3484445750b29198ad3c1a41a485728c09b81364ea6538f34338d0d3addc85996855fdbe0ac4d6ff50c21b9b +DIST thunderbird-78.5.0-el.xpi 774453 BLAKE2B 7227d22a148d5c8a1f8e9f6ad787fbb1f3049b9348b9c19d731bf1886fd8bd7c5f90494a7b7a27b7e7eb3544fe03d0ba4bee4dfdf2d458e1742bdb449b8ee488 SHA512 58eb6309690db9b871b3e7d1aad35ad26dbaf84ef5e17207d4fc8d46ffab5f588592858aa56b3141b2fb62f77a2454bfd6e86260a33e455bd870bee822a61e02 +DIST thunderbird-78.5.0-en-CA.xpi 611774 BLAKE2B db5cff4f516ec03b6fb6b9f64294c32679414ff88e533e3bf9f8519ca937c952d6f51f76ee3354430a29438db0a85b7ce407afd7e6173ff9446d7c271e4a61a0 SHA512 ac0c9f7dff24427c597075c354cb4d9df4051749a77c94a1a5ffb8dc04a312a18cea97b37e5e3afda28aaf6feea07e479508cfe2a0080697f1ba5ba59d662719 +DIST thunderbird-78.5.0-en-GB.xpi 611183 BLAKE2B 9dd73b2216fbf886064e5d000672d083456c0eaf405e638a2ba4ee205fa02b36f029352728d4424b4ffc41bb94fd4c1a9c7df8a40276e8b84026354ad7856e40 SHA512 0af500a12631db42c986fab910e30ac6d385b2b2c51960c70b21dc1110d6073681ba2ade60447eaa1e5d52052fe3c2217f2d70f817b250b22ab3a7ec864f4d70 +DIST thunderbird-78.5.0-es-AR.xpi 657791 BLAKE2B aa70da5cc23e9577c36106f2368e345edbe53b6861be5c92cc37d5565f430993d6ccc64f275cdc6550220c4f2f55e9d007b1549deb12b3ddb83538c3fb53b74c SHA512 4b3f29a8ca6e03af2413ad8a1776412eadcd280fa9fc90b0e6465ffc0915453e792abf1ba9cae05b2a8e3b07b103d76524bc9725d425189babc8003dd52deb29 +DIST thunderbird-78.5.0-es-ES.xpi 569792 BLAKE2B 2545d12db6082522f3ff7840edeef3b90fbad543b555853ddef5dd6b0c97b3fcbbe9d21495878e0deee497e2053611a8eda4327e502eb02b4e32cccdc5732e2f SHA512 0a84d0adf2ca64b0d869c39a59a493d130cad491e02f2255aa5360f573a65bc7cb5666842378485f2717673087d452570b90d59ac97b2e48f2486374b042ddfb +DIST thunderbird-78.5.0-et.xpi 597699 BLAKE2B 8832e1ecfc20a5a812b78d603d689ef67b87f6a6b763afe421491f978a0b3e1f63dec8b4e6d4909b96aa996961f50b4290901ab70ea2c7081809481b999afc32 SHA512 cd57822ccddb61092d5b8b9330578aca883d2ea4d536e7f1e9546351f382b7a78f171905c360c9a4aef143983ff83db85b062a34b1828a1e99b992ffccc2411d +DIST thunderbird-78.5.0-eu.xpi 632935 BLAKE2B 0de8f2679a007a06af29c43db017934af8ba20910234e3689cbc1509b2f9e2c31c4c5adb6f6879a32122d05e616e3e0d305104e5abee7693ee3e88128d24385a SHA512 53e0ad6c2ea7d08b47852d399b1c1139bea0ce6b0956f8458e4623524abf4213f0f2b085250964421586523486d95ef4550b17afd435db3905dd08afde75aadc +DIST thunderbird-78.5.0-fa.xpi 639717 BLAKE2B 95ba7fc570b926c7598d824ca49d5938fd39a10f96464b45ade2c693faa296210641f33bf6965e3d5c3934c30e0c7c7021e1aa613d71fb01ff656d2014e90fbd SHA512 d46dc6015e5c8b80dbf5de451e4378a2a0a4792b4ef4b17be8b6abd8b6c7c0a1cb22fb8546e22fe857cf916a5a7d250238ee94b28303f6bec8b515380a68707a +DIST thunderbird-78.5.0-fi.xpi 642442 BLAKE2B 72477dc4eabd7f044849a3b117141dff8a19d24063939ae96105380ab8c67de769a09e93409f9f11c46b00800e73db530392dbe5026b06c19b501499da2f3849 SHA512 6b5071e983d2cb87957e097f72383501dfa1487fa16bc69d8895e1060768d4470ec54e402792c254a0f29cf5ed5aa36927b3bbe5b29aa1e3e85ff593dfcae2b9 +DIST thunderbird-78.5.0-fr.xpi 669492 BLAKE2B 8a33feeb9465cec5b76b98a6c3160afcdddf6bdcf636d049eb6b62a77bf1c5a59866a58350a9bf16495fd80bb8c8ff8184a4c7b9ed371777621f2d6a8cdb9b20 SHA512 189d57b9e2400fc64385df87bb7108e85d145b003bd528231dec525cf5271cb68dec4ed274107350d3895799782b8837e51bf0e23d19c129b26ee80d169b3174 +DIST thunderbird-78.5.0-fy-NL.xpi 653078 BLAKE2B a01388939ac01e3f80d94af5619184d2e4b1ea7e4793dbf9ea4a13ba108edf88fa9ec4c2306505fa0dc4007f65d1973ab2e35ec84e734f24ff0ef7cc85ba7b26 SHA512 b68691898d813b25751c7785198ea934bd268536b6ff955cada16692b53c31836d41d9630dd2a19fb6e41c181bd4fb4d183dfb255ecd5b6a3ecbefb1af316b15 +DIST thunderbird-78.5.0-ga-IE.xpi 600682 BLAKE2B 4132e89fe97cb2f7bed52c249de87402e17aba8d6c8df65e4acc7fed9df68eb8a2427538593586d6c510b01a0b3f754a33f12e4aa81ff63d5792e74f968c890e SHA512 12f599046bde3d5b5da69575ff00e7bf6b106e8d4b69a838d38542ec77568db3b0a702c7eb73a7a0572b479547b2c9d0aabfbf4496740e8a5c3a76cd75c602bd +DIST thunderbird-78.5.0-gd.xpi 609349 BLAKE2B 794edca1cfd129a8c40e0314be00b55ea9220dc2891dcfaad47f8edcb7b88972528954e4d1ef608330cde89d77c2b17fc9495c4b8c8f1161dab90ec108d51bcd SHA512 6837e09384170805e5525fd0421dafc9b33f2ae24955ef7d7c4193418d12cabfb6adae16d81719ce41cc9931d2c4c47eb61bc0ca77e4018905e07c07ff6d3d28 +DIST thunderbird-78.5.0-gl.xpi 615720 BLAKE2B 4c323cf22735d0906ffdeebd8163eb0068d3d2925142d805d0abd836cdbcae5c55dfe5c25e78afcd8d90ca481219bf6fa00c98451bad5fb6214b2710525a5d37 SHA512 8adabc5252396d873e4e85edf7bf42d1db91f9a4fbecf81b44a99f550375eb2f3d0c6cd95837edc10637c0d1f27a6b05e050a47c33b7598449b97f30b6927cb1 +DIST thunderbird-78.5.0-he.xpi 640490 BLAKE2B cc2bf3f5e0dec1f999292e15f47b380155f64920f978dc690f7a98410db979374b9ef7a9ea42f96359ca2171c8c800b3ff7ef4fcb2ef34f81d70107043b90faf SHA512 47d1b89dc20cdf01b5bf49afa4a6dd7e93f1cda6e9a557cfe2012305832f9e9e37a2fab1ffcea1be173030dcb4229120b0f19381bc3e4ddf572235237e23adfd +DIST thunderbird-78.5.0-hr.xpi 628987 BLAKE2B 88092f356b745ae7b9b934ae707b24a57fda6896f493e8863378abcde2ea082ccdc6ca94ac751877b73246dc6e90ca5cc25e9008480761ead6a0968938f71ca2 SHA512 762789377ed6766475c6a9fd35c89898088fe5cea59ea1540dd654b5bdc017c3b5b8314639d834093cdf9808002a8ab1f64b9bd2b18c9e1f4e2569adb1e1e390 +DIST thunderbird-78.5.0-hsb.xpi 668606 BLAKE2B 94d94a476217ef84221540dc494fed8b14323c42952dbc9d8a82eaf1f28b50f3641779fcd5b174e84d5cfc2bd4d1c60ce15a42cc25a987d64f26ae11d478fda5 SHA512 1115090bc146536a9fbc5ccea7e599814fc2351bd499d66d95844b16a71599067eb2c593e21a3a49934689312841d974328ea8d6a528a97202364ac0010d28de +DIST thunderbird-78.5.0-hu.xpi 679829 BLAKE2B 4dfa36bb84a1e4141fa01ee667c23e66c48835e24f43af0ee4e9c07be1d69131cb939a53003266e9a58fc2695a95adc22c9a37e0a661c28f19f9c920426ad04a SHA512 04624a6fe98b6e0786e74b9a2ee5d769a477b74b35b92f83e84e4570554750d9cfe49cadb6613fb81345cfbc32fc7cf0128c0df740908f74ac16afc59f866ad0 +DIST thunderbird-78.5.0-hy-AM.xpi 713297 BLAKE2B f885bfc263998c4e0ab7a1bce0399e84ae807b4c2cbddfe22e222841f762d38d12269d5ccfba9dcd2eeeb9b830ead2f8cd8d39e101c7db7a0a99913ed4a1d1f0 SHA512 8d459e9aaa2db307bc32e004d8d8919dccd17b02da08fdcc6220f654669c315c85fa4eb26084bfbf6250a95552b2781d5afabd82820e4292fd2e4d897b67ae6d +DIST thunderbird-78.5.0-id.xpi 620640 BLAKE2B d113eed7cecc377615df9d890061f266cf221bd59a6804d7cedef9372c9de71f9882d06c9383f964a1d30a1f313eff5d0c39e3e04c0d2ac8b90ecf0d1f90a54a SHA512 cd7868591687ea85e746f22ded825b7c64d640666faaad61fa543baf3d4754d2363d1d6899285c694315db5a4800be18e59e56b28455c6a96a03909e7ef00776 +DIST thunderbird-78.5.0-is.xpi 581605 BLAKE2B 67c78746e0fb1a513d327280c29a1eb118fffaf004bc1e8d34e5bc490f94bef7679c4fad80b170e363a7a0b1d58da5362f708a7b46b0f9689eeb3d30369db978 SHA512 f21f12913d4a79dbcfb5688dba909345404761b2832467e9d31b370aa39c7fa7ed06f8b147eb8e55161bb345a78c4fdee7e8f1a25da9057c78ec76b5414ee18d +DIST thunderbird-78.5.0-it.xpi 572958 BLAKE2B f005acb2a117146726bf944688be8cb5fc35e4c820bd68e99cf7858d8f3f2fbfd9fe7e315e24314f2428fdc7b9275572d5ea96aa198c06b15fa2cabf29eb8007 SHA512 b79a5eaec4b7e0e043bd0b39a0129326b2bdb11793428e8f722405cee5c922575876528e5da4109bae97546ef110c864910d35d5b791f04ffda24bf5f1e3974e +DIST thunderbird-78.5.0-ja.xpi 722455 BLAKE2B aac3e647fd677b69c501b8a974e55558610581c857d4aa728300325d11b66d0233ab7853170cd9ac91644aa51f6d348192adc528208fb38a50a815da9ab96800 SHA512 8ea3d523759fd92464ffeb6f5432f80259068cd0fa85003f007be622bcbe788a59e6efc83feb736673db95e32069e132cbeb08eb2f21790e053ea9b32bf9d555 +DIST thunderbird-78.5.0-ka.xpi 717014 BLAKE2B edd1c1f6f9936344585006c63feae3cb100f2a2f7c6095e3fb08291e8760d2d3334574e5582d3dea35fd6ab487ff21149f10d2bb1b936628a492c23ceae75a65 SHA512 fd9e0f27ea490b998d399dc542442c755e27a11ba3748d125eb3841e4fc193c2776988744872c77f7fc77094dca7b58698772978e38618ada224c553177a92ce +DIST thunderbird-78.5.0-kab.xpi 651925 BLAKE2B 7c6e54095c3450b34e36eac6b31412097f84327e6bebaed1196162f1e5ce6518326c85596dd7fc04603e1be577bc69b6e7358576fde607e56dd273d7d62000df SHA512 06b29cf7509b63a6f668c71ef900be12e3b6bb3b77b261eda16ae009d5214572148e30d30f660b18c72bf3b90b2926b5e931be892f299381ecce41d3885f639a +DIST thunderbird-78.5.0-kk.xpi 720431 BLAKE2B 58681793c59f883f8838ca7ce2a4c6cb5cc4d72d4b9aa6e8b9d492302dd1aced926eba3ece59589b92b1310f989356409e928f6a3b465dd57e799e401b5d1714 SHA512 9e7f589c20b6b06dd41fe6a4bc4a42d50a1d8be2745aaf6b14057db7abb9c59935f45e314efe7209b08897d78122737d5b42a0589c25d1adfc8c9ce704e7695f +DIST thunderbird-78.5.0-ko.xpi 688209 BLAKE2B e50ed2289e34cfc0819c334959fc1eb790241efbecf82980fb8eefee80e5d7b45fea69b6ad2fec8a587fd3b26d8f09e52f255d531c7685347c3be7849b72ea09 SHA512 74985c58df4bc72bc1719383dfd8ae2ad601105645f852caae922128afc64ce10354edc11ab1f7e8e517ce95196db52ed0fc0bc41adffe521a2450302bcacaa8 +DIST thunderbird-78.5.0-lt.xpi 660299 BLAKE2B 1cf913c519472630640bcd610c3f81a0ce93d2d7c6512b46ae8825f8be2144ccdb42926c0d587a2895af64d24866b33e655ddd6fad52f3cd45b47c73abf23c65 SHA512 d4df0dbbf5c9055fcd5f64da33b715d597408a65e684e59e7c05da70a16a0a4c6dc057f031b1eadcc7a499c10afa0cd8987c857ee408592a47fc4e7aab44998f +DIST thunderbird-78.5.0-ms.xpi 572136 BLAKE2B 5b49ae2b21691c0de11e3f3813aa958e5c818edd407127031a631c8749391b113c9dc0263714f0b1fe1e28bef6829a05ad4d1a858b26422346d7944ca965a8f6 SHA512 2db29f15f5d1016a3656de9b668416031776df5a821953dc57235955652e1bff29e0abf82023081bbc4b0b1005d75b168de9ba7c18f3f8b147df118a33d33c18 +DIST thunderbird-78.5.0-nb-NO.xpi 637235 BLAKE2B f1e6daf9fc7529e10fd1b4e65691fee484c911815db7c96e472c17d79a5e56addca302e3f21d76cf491c05479a82e61dd169dbc12892ac88ec970dc89d8f444c SHA512 524c9ed6e0a66cb53f8394f8459ff34a2894b3d07edced3eeef1f1169b275898cc6c2b30fc78b4f4dd06f1fbc6651999a7050cd428cb0bf2bf439f866fcdfd69 +DIST thunderbird-78.5.0-nl.xpi 644354 BLAKE2B 7d3f8f9e88957608c343a643afb2193878e239841aadae541429ce3441957bf5a0ffb7d016003d883a53f97b011c5ef096769de4a109c4b0615e620a93832fd3 SHA512 3621c41faea13780a139ed7485e9904893552b8b3e182f34ea49fb4a2e4f85654aa26fe7b76753b8b883a04d481e808bc616758624fc61e7ff9aed1d09e92df8 +DIST thunderbird-78.5.0-nn-NO.xpi 640684 BLAKE2B bbf1ff1201dfb1c2e5764072098d1a1ba1500326507c4f9274e479fe8fa07b5446fdc9bc6a8d9b84c80a876f7b2606bd1921be1343e46bf56533fb5ef577422b SHA512 4560e185285c942667ff7d9f8af6659fa11efd4c2c5cbbe85494beb084f6bc6671a88dac0ec46ae2e738666a718cb14695e84e6a8e67dbbc93ad4ceb3aa04b33 +DIST thunderbird-78.5.0-pa-IN.xpi 633177 BLAKE2B 628a1922abdf728a82520014f6da315be96a3c159752e5eccf3c3b18396e37202844b3cee4edc068bc8a8b0497e97d904f6f11fa28a0d74221ae4bd8c95ef992 SHA512 5ed8c7afe3bb9a92fec130e8ec377288472ab910b9bc0a028dd18960c39889f28211e11da7e34acc203ce57ab24fa524d862e22653f3c26a349fd604d1df8c1c +DIST thunderbird-78.5.0-pl.xpi 637112 BLAKE2B a6bc4e8e8021eac5f53ced8b0decf23460b83282bddf0b9aa5822f2f2c9b8c1026b8d5c4b1aece0435cd88167257c2ff306a8405ceaa9df3c6b81e2e1197d1a9 SHA512 1b415108ae218ea9269a4cc2f51fd64d716deaaebc8116a94611fe2800c39ab56c123345ff4d075dca92cae56f00e97bb55f205bdb6b19948528211fb6574528 +DIST thunderbird-78.5.0-pt-BR.xpi 649414 BLAKE2B a0a56356620ec5226e47560e08132f56cbdf360576715a517ccd3ee9d9f55ebe5e7be6a6ce08f522687a32795ab128a8b9ccb78cf3b9ee8f3cd858a882cbb076 SHA512 349c8f47cf1405210d01e91a59a1132c47a84771d5da878b5f668f497e522d259c3ebd4ff1001604f580c1b54a3ff4fbe6084785b4c580c7a9b79056153afb9d +DIST thunderbird-78.5.0-pt-PT.xpi 655497 BLAKE2B d49efa87dd516027f30b5dae1dca9f3b11f23802de03b9643804ce2d0554c494153a20500883a7c04fab15b3d30fc32bc65daf329aef1b9f352f3cf1627b56dc SHA512 cd00271ff1919b88920d734706670b63dc00c6de4b0caa1c1b5e91f7f7ea5b82fef18452ee228f6949222bb6ab3d7a297c3123e3f10d34a7d7090afa186a930b +DIST thunderbird-78.5.0-rm.xpi 646531 BLAKE2B 0b56269c62d275dca843c57460dfd70bba13f01de7a852a29cfbbeedd4d9842e7cedc57ce9574f6348543d15623a607e283dcf89740b16328061664a8267878a SHA512 f81a43a476c91d8f3d6f830bd27479b92a8fadf539f46fba8ca0dd07dbd2cb639ece560fcda88764e4510e8854537c5a558e1b837a4e7fd6ddc1dac914a88092 +DIST thunderbird-78.5.0-ro.xpi 662642 BLAKE2B b19931aa66e26fca2f857439c0e47172ced0255c23f3d7731af95a9639078f0869bd524e0cbbad49118c374d5ecc7f652467862076c2b8870cd467d957603f4d SHA512 53356a655803f14d68312d461920d3a6f17db118547fb7d040f5110d4e65db76104e072646b3849efa5ca47f027e5c761a721be83ebf3cd200e36b9deb15ebbd +DIST thunderbird-78.5.0-ru.xpi 756187 BLAKE2B 42d2470e72e519a63addd3356824f4604ab300e43b0d9bcf08c79cd6d393d1decfa9a30f1c44fc136540af9979284a90530a6ca8b7c8886517b871536e029629 SHA512 2ade9448e0178aefa8ea032a2e53a42b8f77641dc56e790826f44ff3628d381dfd490b08164838c85ed80e84a69348251a1b5920291586720044a51e587b8b5b +DIST thunderbird-78.5.0-si.xpi 651069 BLAKE2B 78fcd5569a87e3938893f8010d3bb3a515365b92986a75bb2d27ae36482eed906eeabe59c6beed626027267dd0380ae1f186221d9227bad3e25ae60a213b3739 SHA512 5b22ef4072b0d81ccffbd62ac6279a783a5acf716b67561d206034f66e8569935bf1d0eca8e03d6af7a4601acc1176be0c78bb40daf95c544bb11b918aad9673 +DIST thunderbird-78.5.0-sk.xpi 643185 BLAKE2B e4fc5bb819bd79161359cd90aadb56f28d887897a4bc5b5c4b6db79ae525fae2ebd0f1d53e3897194cfa11232fdedb99538f398a1a48accefd18f7046d2efaf1 SHA512 e948a48e333306d744dc7c397b2839ce4b899a44c72c68748557657422ca0149781395c870a3bb38e97f8a2a786d2373f3aa64331e99f392b6bd451a3dac1a6c +DIST thunderbird-78.5.0-sl.xpi 632340 BLAKE2B 046266bce228b914c30f726bd78d00d725791cd6710c65fe146054e8a9fc0af743b3c839b57f1e773a2d009776ef2d703532cb2bcaef324149018bfd149e53b2 SHA512 aae9faa7de38d6d55e39bfc95ee035526bb7cc67136afd80b3304930067a8739cd5e8bb4d867fb49f2f8de784c4fd306857d9139a5d619f1679e5e7d64ce7c68 +DIST thunderbird-78.5.0-sq.xpi 657818 BLAKE2B d0af6bd2947854326be426109899308fe0d085ceff533e66db0b58cbd64ec419e85d7076e61bf4af17065d02292b64e7ac257657f4ccf4c3451de53ef398e4b7 SHA512 9ba4ec6ae1b69802d2db51649f05db16d1cd472af7fbb7cf00dfa87cebda6496bb8c293f88aef3bdb5b0cf84c8a751eabb461673b2dca2d89f7a049cdc01a654 +DIST thunderbird-78.5.0-sr.xpi 683076 BLAKE2B df42669c5ea3ff0341d3365f01e05911f6e6b275f2595ab2662131436907f0ec70edee6b0aef48f9afec12258257f3744c0cabfec288589b4e558a3ea76bdd21 SHA512 e85a21aaa1e83d97470241fec487b8df29982a21e7a0aa1ead9057b6dd2261f103882b31e3fd39ed1b35b296297651976e998d80f07eae135bd35538a97ff64b +DIST thunderbird-78.5.0-sv-SE.xpi 648863 BLAKE2B 18900bcda5bf2edfeccf2d2aec02ec7ad3bd413caf4d89d85f4723fd27254787b0968cb0740d367acf1590cc9601486b4027e0e9617844106c96efe52afb48e7 SHA512 2d0f6d8f7c5d7661c4a6d2a09487c03b952a4c542631b4b9d947464e6e74e6b760dbe7ecf808ebc8fdd258ad5f69211dbbbe7b68b08770b67b8eebe5413968cc +DIST thunderbird-78.5.0-th.xpi 712031 BLAKE2B 8de6fd5f9eafaa4b97658eb303289be97c053bc153fdc2d902d8ae8bbb0e290c4e0512f3085dc87c18afdff4dc37338d18fc9253419b0b7bfb66ac2e007d394c SHA512 c9769389be0e9b154ce686e79fd4cc7047d7f115eff2b888dcaaf4a70b29d0f27a2b0a840a231569bf2229419ddef53c111fb4a3103d836b100915ab979997bd +DIST thunderbird-78.5.0-tr.xpi 649071 BLAKE2B b7fd59c4c846e1214f7a16899741a74044cf9c945385bb57735ef2773da1877085368f273c25aa37e2dbc8549f0c805dff501614e63d7761e5892e0eb6240b6a SHA512 e77fc7064bc530df959e73f0bcd2e977cc09ca3cc0adde703850a3c89b171e73ae57a9b7c715e75310b8d6ecc2a3444c36519e2c56f9c0c7aba561b26d8f2f30 +DIST thunderbird-78.5.0-uz.xpi 586572 BLAKE2B 7ada629d4274e2500c59dd6ab75ff8c9e9b88fface27fb650abc0637a137971f6a95323b6fcf4bda995203b42b0f9a6a135f48aa16c37f6b7e5fb09a08f68b95 SHA512 9c627329b438b1a4afc7507a4e87c4c5a94bb665d51935227df51023d7c37e407ee4d6c84626668fd50d1f3b7d282c7701ac7a273ee37c665e99492fd22aa6b4 +DIST thunderbird-78.5.0-vi.xpi 674608 BLAKE2B af9954482a76f094a0ae0a48135198465f656fe739419b3cf75931967cb9561b8a16d44eb9dac54d78f024ff28658a8a5ea2144c344aaed63e8c33b3b67392e4 SHA512 2641538591d060a60abeb25893bee0446a55ee750de430e39ba147ff1620836a9f486f142e3f1c1180bc7b3c142b399cbb2765a162b792f8fcd1884163b7d61b +DIST thunderbird-78.5.0-zh-CN.xpi 687174 BLAKE2B 2fcd423229281528ea8767dafe8c6f7073b29b8b1e0d22624b81f84bb944bfca3040c840031317edb0f94a0c7afbd9126fd97ef76442a6d213416c0ab29cd4c0 SHA512 569e3dc49d102d56b50d9dccb7587e76481bc637f008493c40fdf7bcf2b7dd58c776131ac3cd6b37d479b900d77da4621e7c6476526159a0026da7bd156a163b +DIST thunderbird-78.5.0-zh-TW.xpi 687620 BLAKE2B be48d9da7320faf2bea2f3cb682a34114321f7a0af505f4cf4e677b3ade4784f0a9d444c0b407a9d97bc50eb1f6292078a3e38f1e6d83c32ba64f094378c3b71 SHA512 a7a5e00e02ba66fd8dedbfe60af12843f5af67aa72e43c4b99bea1c6edd598d39219a58e147f819390a7d2f1536a27e87f63139a4014d84ac5ccb4ee653ccde4 DIST thunderbird-bin_i686-78.4.2.tar.bz2 68075157 BLAKE2B f4ec4aabe23f4c72d063b0195d32eeb5d69be2c1c6a017df1511fe7992205460ba5b29b5bacb948b18bb5a00c64bfe75e9d0ba5a6e7f38301a1012d5a6ecd28a SHA512 4c71e9272df1878c2d87cbd870dcde148ac48de84ace22ad62888ec10901319eed3ea63670018e1059d65889e662c0d1ec028206c47fd5a0373486e15d414e55 +DIST thunderbird-bin_i686-78.5.0.tar.bz2 68172901 BLAKE2B 279cfa0c35b78948dbde04ee2b9e7589d7584b9e85614c322102c4f97c7879f07c07168317b4cf65ca2dfd4a713eca2e06a76c00ef0d1f25973c3f8793d91ba3 SHA512 c9afc63e22849d0bdb6e07d447f9bd25180397ab88844b6455f3d95ad11f287d63224f35be748b7286d7928bbb8235ec88e4fe88eef6003741f513a72f53dded DIST thunderbird-bin_x86_64-78.4.2.tar.bz2 65103520 BLAKE2B ae56656db21e5a763dcec256260317708708f517e0bbb5d5ce3761ce9d6101c5dce0a8acc474ceea5cea1f10c5017923f6474ba9ea26f77c41608ba821e5dbd8 SHA512 a7d94579e8277728775e734d1bcb0932ba66c5e23f2049d78a2974e31cf9b1fa29fbe994067bf19939a0be9257f4f4c9c57526fcf472cb929d84dfad3d0c1fc4 +DIST thunderbird-bin_x86_64-78.5.0.tar.bz2 65186918 BLAKE2B 1c1bc418826dd02ec62c885ca76ac47b0d223490b0b4cafb1d9b088527745b49c850267f18dc20bc202c7494513a0fb6a2f1a739bc3db9fa3c5f2c5911efb48f SHA512 bb731e63d4558fc13d8f64302665aea5ba1b1068f69dfad1530d1897d033786c2dcc5c344f1efd9f5c4bc8826ae4ec2a2eefdb9ac386949b4825965234ef6bee diff --git a/www-client/firefox-bin/firefox-bin-82.0.3.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-78.5.0.ebuild similarity index 83% rename from www-client/firefox-bin/firefox-bin-82.0.3.ebuild rename to mail-client/thunderbird-bin/thunderbird-bin-78.5.0.ebuild index 062d39d12dff..45502b7eb099 100644 --- a/www-client/firefox-bin/firefox-bin-82.0.3.ebuild +++ b/mail-client/thunderbird-bin/thunderbird-bin-78.5.0.ebuild @@ -33,13 +33,13 @@ MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 ) x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )" -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="https://www.mozilla.com/firefox" +DESCRIPTION="Thunderbird Mail Client" +HOMEPAGE="https://www.thunderbird.net/" KEYWORDS="-* amd64 x86" SLOT="0/$(ver_cut 1)" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland" +IUSE="+alsa +ffmpeg +pulseaudio selinux wayland" RESTRICT="strip" @@ -85,20 +85,11 @@ RDEPEND="${CDEPEND} QA_PREBUILT="opt/${MOZ_PN}/*" -# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or -# overridden in the enviromnent (advanced hackers only) -if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then - MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) -fi - MOZ_LANGS=( - ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy - da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu - fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM - ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my - nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru - si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi - xh zh-CN zh-TW + af ar ast be bg br ca cak cs cy da de dsb el en-CA en-GB en-US + es-AR es-ES et eu fa fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM + id is it ja ka kab kk ko lt ms nb-NO nl nn-NO pa-IN pl pt-BR + pt-PT rm ro ru si sk sl sq sr sv-SE th tr uz vi zh-CN zh-TW ) mozilla_set_globals() { @@ -210,21 +201,11 @@ src_install() { newins "${FILESDIR}"/disable-auto-update.policy.json policies.json # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref" insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + newins "${FILESDIR}"/gentoo-default-prefs.js gentoo-prefs.js - if ! use gmp-autoupdate ; then - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - einfo "Disabling auto-update for ${plugin} plugin ..." - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" - pref("media.${plugin}.autoupdate", false); - EOF - done - fi + local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" # Install language packs local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) @@ -233,11 +214,7 @@ src_install() { fi # Install icons - local icon_srcdir="${ED}/${MOZILLA_FIVE_HOME}/browser/chrome/icons/default" - local icon_symbolic_file="${FILESDIR}/firefox-symbolic.svg" - - insinto /usr/share/icons/hicolor/symbolic/apps - newins "${icon_symbolic_file}" ${PN}-symbolic.svg + local icon_srcdir="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" local icon size for icon in "${icon_srcdir}"/default*.png ; do @@ -254,7 +231,7 @@ src_install() { # Install menus local wrapper_wayland="${PN}-wayland.sh" local wrapper_x11="${PN}-x11.sh" - local desktop_file="${FILESDIR}/${PN}-r2.desktop" + local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" local display_protocols="auto X11" local icon="${PN}" local name="Mozilla ${MOZ_PN^} (bin)" @@ -332,16 +309,6 @@ src_install() { pkg_postinst() { xdg_pkg_postinst - if ! use gmp-autoupdate ; then - elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" - elog "installing into new profiles:" - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - elog "\t ${plugin}" - done - elog - fi - if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' \ || ! has_version 'net-misc/curl'; then einfo @@ -375,7 +342,7 @@ pkg_postinst() { show_doh_information=yes fi - if ver_test "${replacing_version}" -lt 74.0-r2 ; then + if ver_test "${replacing_version}" -lt 74.0-r1 ; then # Tell user only once about our Normandy default show_normandy_information=yes fi diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index 8bffa103df60..0a4ad96e0063 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -1,4 +1,5 @@ DIST firefox-78esr-patches-04.tar.xz 171504 BLAKE2B d51e55c255d1f5cfa0c7c030b1ea50cb54951bed3bc21b21f5cb3b1e4b8b2ad406b3d12db2baabd4a90e3c88a38f187f277e7a4afe441ea6cf82c48f84bb0ac5 SHA512 6f00ec898fafb34d7c7e0ff2a6fb5c1cbf1205458845e14eb39c131125c5bf6b2418fea1050bb72449ec40e18fd775fc844437ce0290281d66961de40a53235a +DIST firefox-78esr-patches-06.tar.xz 36764 BLAKE2B bba340f1c275cd9f140864599bf8b8b69aab44a3b66352182f403bc5edb6e375af5da8dbbffb0a0fa45aec2150857f23b01d103d8f1e8d16ad3ff88f81075022 SHA512 638a11e6b46e6023c0c0a2904032c9726cd1d143c2e0671ca762341d2bb7cb95d5c309bd09e7b80cc883420f612cdf5e7ddf26896dfe8df894bfa393435f962a DIST thunderbird-78.4.2-af.xpi 548308 BLAKE2B 80ec8a02d84141f167ad049ae84c8524092dc28e9f9cc7b9d9d30a635d33acc2e976356c7ca870b2d388a4e7970c69fd8037c99f47a4777024b9d12bcb45aff2 SHA512 c20d205ad3609dc2debb2a9fb473468b3734dca7dc06feac97b3b54775ff61e8269c1599ac88f30d300b220ee7d2c868edae96c3d5773ede75bb69ecc6e86dc9 DIST thunderbird-78.4.2-ar.xpi 648570 BLAKE2B 2debfb451e74022f316668ff5a8da11266ed2f4151dd743fe951e165d4f380a382e9280015edb2e82d7b45897ad44dd7f129407e344a629838b9254232791551 SHA512 45e8302db47fe0fecf522c09a407ec8e5a31474331a6035f0a6e56fd1c792ac00e50d26d4c13c58ba9704a7a39b8a9c9396cc4ed4f4af3c41a9bb4076a6eaeff DIST thunderbird-78.4.2-ast.xpi 561221 BLAKE2B b1d78ac212cf5935867d2b0b26e390059235a380d1abe781733ffcdd261fe29ff4f2fa80b212959fee6d30225f706d82dd9d53e070765cc3f584b42686ae7dc1 SHA512 31d9ff5a9f7f04ccbab68e1d0ebd72a16acba482642ac583952a3f52b4de33cebbda7ede1da3ea6cb9fdaca69a9beb98b37a8baa88d62dc24ce1409686365d03 @@ -64,3 +65,68 @@ DIST thunderbird-78.4.2-vi.xpi 674611 BLAKE2B c6e8054e03b6196067315af6bb800febc6 DIST thunderbird-78.4.2-zh-CN.xpi 687180 BLAKE2B 83e41c6109deb204aa5d2f12b7b8b0eeac578881de4ef5f393efa89f9b0e87ad1ed9e62cd5a94e3b25afa102fe5d08e0cce8a1d54394f753fe8011de8ef025f9 SHA512 0fa70df0a14d600008fb94186e3c384128130071324f5baf96ba677435a5c90fc3ad8fd344aac03f993c56e1f046eb334f580e446a628e9886a3f36a837b19d4 DIST thunderbird-78.4.2-zh-TW.xpi 687614 BLAKE2B e6cf4c29878bf8d1269e40e38a4e69d836f101a3ec220462a050a5d8616ec45b36f643bce2798c87fb6546ba07aaf27a4e20b7af7cfcdfa9fccd506ccc190c0a SHA512 cac2f2890d920def6731c0ead80b515970a87de18d5640b1351ae887f5933a2f35be2b3b3a9cf6d0c70e745af4bb76ff85f1a8828294ba5537b531df448c95b1 DIST thunderbird-78.4.2.source.tar.xz 353466336 BLAKE2B cc102a81b3376cefb1a551e1bfcb8a9625b0ec5d9b6775dc9da270065d13049139e290e8397e6b9d5dac6c9be9ce0ac9ab0b8cbe58abec9b3bfe9c4c2230bdb8 SHA512 9eccb442715937ac083e607a1180aea6c9e64726a151cfb94df1d3f72d516e0130376eca3f52ff6fe51adba689e7bcb38f622d415958c7e3123fada8ce7cd456 +DIST thunderbird-78.5.0-af.xpi 548318 BLAKE2B 479eebf8437aeed5e2ee9b4f743729ae97111dc19b75502670587b8848118282a9b18aaa1f570270c073408d9354a55cffc90878ceb52e857be19d3f3fc32bd4 SHA512 96691128a3d6b93392fa48dd7485cec8ca92a0af1df6949493aa096289ca2488e07672ad87fa1d5377b4fc5bf66aa171b6953e928b3638951f25eefb16a23534 +DIST thunderbird-78.5.0-ar.xpi 648572 BLAKE2B a5f17cd99faee0800d221ecb97cd98e1e74f23e03103a0aa2489c64686b072e692e1bff53bd64e7b3bef62b8fa94a0c3e207580d051a95dfd8d0d2bad6154522 SHA512 5d28982dbefb8d7186490cf3ba591b349321bae46ec0b30d79749389b17678f739ef04b6943e7028b223cea7e4835edc46fdd397c0f64439adba02321ed5e892 +DIST thunderbird-78.5.0-ast.xpi 561213 BLAKE2B 7863103ed4c83b0c00825c3588f9b23798d141e3cf6faa378bacaa45b177ddeb75643125815733b3e3e7ee43433f97f483215efecd11b25c1a3110125e27ac68 SHA512 845b5c19ef773ca2a169122e3a8dd2513a91f016748ca834a0d2eb5579455be918ce38f77e71257c916ac6cf719c4c25795851cdd1b716029d75c4705a5de0b7 +DIST thunderbird-78.5.0-be.xpi 666633 BLAKE2B a333de1dde21f1d450f1a97b46d319f840b6ef5b3f1b3031dea2b4bbe8c7ee9a58c4c61e740835efc735b7894d3ef09c18d5f239b55c1ca9ed3af0d75695e474 SHA512 9c0cd7ad9b3994b87f48cb406a758d3b10e9bd397ff782f9e5d0a9c92467b25c5cf06ca81ac00e117b2080268a6500d78283dc8c281304941508c7c963cccebd +DIST thunderbird-78.5.0-bg.xpi 672382 BLAKE2B 4dbbeea6db33e4f8172ef9d95781b50d68916091673441463b0104873443dad3cd906137fbaca9e70674cbed61505bc7d298695f47adfba134e469bd3c547f92 SHA512 3386be24f48ad47ca7467997831b1f81e79f2007da5e74699b929b8d023ca715edf6354392b4865ef4b62635f3689902ac94c700b1941cae584691d8cda5cbd1 +DIST thunderbird-78.5.0-br.xpi 604498 BLAKE2B 6f368232ef0ffec699f89239c8de8295307fb0b53b6b3dafe84d3b765c9b46dca099cea50707783b8bb4891c6c6d60effa8fc31b220ea9ffd78818cba7edc77a SHA512 78803f838b4c7315b5761f0a93e362cd267674c532758e29190ec233aa886dd4840afbdf298856cf726540b21b6d67e41cb79781e8ed467a45c1724b0ae6e165 +DIST thunderbird-78.5.0-ca.xpi 620410 BLAKE2B b20e21ac5063486eec47721877eab8d8ea73ebd12604c6be2356be45dc2898f552067f6b38807fedbed605b21554fdd78a60d8a4b15188e9dcd52bf17430c442 SHA512 d5e122b96588ff32fd775da351d90a96db21850e73e00cfcdca1da65bc6229a5e481fea1c4b3e89a1dbcccb24ae55e60daf7952af6416cb0a7c0c671569705a7 +DIST thunderbird-78.5.0-cak.xpi 635653 BLAKE2B d2f4f5601fe56cb2336ef7d049ed144f30b78bf7f1ae7eefe401bc10210749e9c9ac53e2b3abc2c34292abcf4300191bf09108bd3db1ecea58a57188c63e5b32 SHA512 20ba4003476f673468cad2edbfb43d6ddfda8deccd44ba48fe8332c5d12aea01c4355de1a8d0ea372f59b526efa2e3b085339db70bedbbccc1a23ca4b3da4bb0 +DIST thunderbird-78.5.0-cs.xpi 635315 BLAKE2B 2d4a08c27cc7b69e44f79c36c81e6d4d92c0fe91a7ca5d7267e4b7993c049fbf057c67e8974d95789f6465fb62e659869295f8e60159e8f923a0127ed988561a SHA512 1a968bf633093513d326242d2ff057cee9824d91e3328b3bda6b2acb18aaafa4540bd2f974f8be0b4767a3a4bef68060d96449fafc9ee9e877a02527d4ae7d0c +DIST thunderbird-78.5.0-cy.xpi 646244 BLAKE2B ebf23594f0053f179bb655339393edf562c8204f9dadf1b49f810a97de71d4ad096c841e51cf68c6ad05ed4b9e953e62751e7843ce5c09b1940d63172e482e5f SHA512 53005cd6f409fed072211a504faa86f4456ab849e001cb44ad99c148228b11f1885f8d0a2505dc9f71f83c2061c8d7f67d2d5e6752e35c07f427536a978d2efc +DIST thunderbird-78.5.0-da.xpi 620986 BLAKE2B 56bdfacb9c40cf2c70560aec395cda594024b82d31d6c96bef4a5b71214edbc3bbf74ae013f0cce4bf44287160477e08a2ef6a91df14e8e700d2d9ccfaecfe67 SHA512 7c3af279f77e313c79b26a84ecb937cf799dce35abdbefdf1dca084d532a4121248b5ae056f9ec370171e8c1bdb70a6b05674b2b5eb1e7e7b7b9a51f9b5d0e61 +DIST thunderbird-78.5.0-de.xpi 665194 BLAKE2B 2f0e1acf124aa2ddfd8615d1b596332762e105ec065cffa4a763d54a504d381c37bd16aef8a2093a99ab514b9efa226650d1d31649e3c58335dca35b71fb90c7 SHA512 63a326c45198aa2d41f8621d0624a412dd635955f0397090d931c2fa3fc7a3fe6e9e896c00954cee9fbaefd6650de4b86571d038ddd8c60f81e5c2c661df55a3 +DIST thunderbird-78.5.0-dsb.xpi 666774 BLAKE2B 751095ef5074451e5c31554c325f15063fecab8c7e9ac1c4f330e0ff091205b800e7dbfb15908988eaa234aac75899813f9effe927e34acb21aec48d52ef0991 SHA512 300e63b1f3503bd8943ad757efb4fc04564e316a3484445750b29198ad3c1a41a485728c09b81364ea6538f34338d0d3addc85996855fdbe0ac4d6ff50c21b9b +DIST thunderbird-78.5.0-el.xpi 774453 BLAKE2B 7227d22a148d5c8a1f8e9f6ad787fbb1f3049b9348b9c19d731bf1886fd8bd7c5f90494a7b7a27b7e7eb3544fe03d0ba4bee4dfdf2d458e1742bdb449b8ee488 SHA512 58eb6309690db9b871b3e7d1aad35ad26dbaf84ef5e17207d4fc8d46ffab5f588592858aa56b3141b2fb62f77a2454bfd6e86260a33e455bd870bee822a61e02 +DIST thunderbird-78.5.0-en-CA.xpi 611774 BLAKE2B db5cff4f516ec03b6fb6b9f64294c32679414ff88e533e3bf9f8519ca937c952d6f51f76ee3354430a29438db0a85b7ce407afd7e6173ff9446d7c271e4a61a0 SHA512 ac0c9f7dff24427c597075c354cb4d9df4051749a77c94a1a5ffb8dc04a312a18cea97b37e5e3afda28aaf6feea07e479508cfe2a0080697f1ba5ba59d662719 +DIST thunderbird-78.5.0-en-GB.xpi 611183 BLAKE2B 9dd73b2216fbf886064e5d000672d083456c0eaf405e638a2ba4ee205fa02b36f029352728d4424b4ffc41bb94fd4c1a9c7df8a40276e8b84026354ad7856e40 SHA512 0af500a12631db42c986fab910e30ac6d385b2b2c51960c70b21dc1110d6073681ba2ade60447eaa1e5d52052fe3c2217f2d70f817b250b22ab3a7ec864f4d70 +DIST thunderbird-78.5.0-es-AR.xpi 657791 BLAKE2B aa70da5cc23e9577c36106f2368e345edbe53b6861be5c92cc37d5565f430993d6ccc64f275cdc6550220c4f2f55e9d007b1549deb12b3ddb83538c3fb53b74c SHA512 4b3f29a8ca6e03af2413ad8a1776412eadcd280fa9fc90b0e6465ffc0915453e792abf1ba9cae05b2a8e3b07b103d76524bc9725d425189babc8003dd52deb29 +DIST thunderbird-78.5.0-es-ES.xpi 569792 BLAKE2B 2545d12db6082522f3ff7840edeef3b90fbad543b555853ddef5dd6b0c97b3fcbbe9d21495878e0deee497e2053611a8eda4327e502eb02b4e32cccdc5732e2f SHA512 0a84d0adf2ca64b0d869c39a59a493d130cad491e02f2255aa5360f573a65bc7cb5666842378485f2717673087d452570b90d59ac97b2e48f2486374b042ddfb +DIST thunderbird-78.5.0-et.xpi 597699 BLAKE2B 8832e1ecfc20a5a812b78d603d689ef67b87f6a6b763afe421491f978a0b3e1f63dec8b4e6d4909b96aa996961f50b4290901ab70ea2c7081809481b999afc32 SHA512 cd57822ccddb61092d5b8b9330578aca883d2ea4d536e7f1e9546351f382b7a78f171905c360c9a4aef143983ff83db85b062a34b1828a1e99b992ffccc2411d +DIST thunderbird-78.5.0-eu.xpi 632935 BLAKE2B 0de8f2679a007a06af29c43db017934af8ba20910234e3689cbc1509b2f9e2c31c4c5adb6f6879a32122d05e616e3e0d305104e5abee7693ee3e88128d24385a SHA512 53e0ad6c2ea7d08b47852d399b1c1139bea0ce6b0956f8458e4623524abf4213f0f2b085250964421586523486d95ef4550b17afd435db3905dd08afde75aadc +DIST thunderbird-78.5.0-fa.xpi 639717 BLAKE2B 95ba7fc570b926c7598d824ca49d5938fd39a10f96464b45ade2c693faa296210641f33bf6965e3d5c3934c30e0c7c7021e1aa613d71fb01ff656d2014e90fbd SHA512 d46dc6015e5c8b80dbf5de451e4378a2a0a4792b4ef4b17be8b6abd8b6c7c0a1cb22fb8546e22fe857cf916a5a7d250238ee94b28303f6bec8b515380a68707a +DIST thunderbird-78.5.0-fi.xpi 642442 BLAKE2B 72477dc4eabd7f044849a3b117141dff8a19d24063939ae96105380ab8c67de769a09e93409f9f11c46b00800e73db530392dbe5026b06c19b501499da2f3849 SHA512 6b5071e983d2cb87957e097f72383501dfa1487fa16bc69d8895e1060768d4470ec54e402792c254a0f29cf5ed5aa36927b3bbe5b29aa1e3e85ff593dfcae2b9 +DIST thunderbird-78.5.0-fr.xpi 669492 BLAKE2B 8a33feeb9465cec5b76b98a6c3160afcdddf6bdcf636d049eb6b62a77bf1c5a59866a58350a9bf16495fd80bb8c8ff8184a4c7b9ed371777621f2d6a8cdb9b20 SHA512 189d57b9e2400fc64385df87bb7108e85d145b003bd528231dec525cf5271cb68dec4ed274107350d3895799782b8837e51bf0e23d19c129b26ee80d169b3174 +DIST thunderbird-78.5.0-fy-NL.xpi 653078 BLAKE2B a01388939ac01e3f80d94af5619184d2e4b1ea7e4793dbf9ea4a13ba108edf88fa9ec4c2306505fa0dc4007f65d1973ab2e35ec84e734f24ff0ef7cc85ba7b26 SHA512 b68691898d813b25751c7785198ea934bd268536b6ff955cada16692b53c31836d41d9630dd2a19fb6e41c181bd4fb4d183dfb255ecd5b6a3ecbefb1af316b15 +DIST thunderbird-78.5.0-ga-IE.xpi 600682 BLAKE2B 4132e89fe97cb2f7bed52c249de87402e17aba8d6c8df65e4acc7fed9df68eb8a2427538593586d6c510b01a0b3f754a33f12e4aa81ff63d5792e74f968c890e SHA512 12f599046bde3d5b5da69575ff00e7bf6b106e8d4b69a838d38542ec77568db3b0a702c7eb73a7a0572b479547b2c9d0aabfbf4496740e8a5c3a76cd75c602bd +DIST thunderbird-78.5.0-gd.xpi 609349 BLAKE2B 794edca1cfd129a8c40e0314be00b55ea9220dc2891dcfaad47f8edcb7b88972528954e4d1ef608330cde89d77c2b17fc9495c4b8c8f1161dab90ec108d51bcd SHA512 6837e09384170805e5525fd0421dafc9b33f2ae24955ef7d7c4193418d12cabfb6adae16d81719ce41cc9931d2c4c47eb61bc0ca77e4018905e07c07ff6d3d28 +DIST thunderbird-78.5.0-gl.xpi 615720 BLAKE2B 4c323cf22735d0906ffdeebd8163eb0068d3d2925142d805d0abd836cdbcae5c55dfe5c25e78afcd8d90ca481219bf6fa00c98451bad5fb6214b2710525a5d37 SHA512 8adabc5252396d873e4e85edf7bf42d1db91f9a4fbecf81b44a99f550375eb2f3d0c6cd95837edc10637c0d1f27a6b05e050a47c33b7598449b97f30b6927cb1 +DIST thunderbird-78.5.0-he.xpi 640490 BLAKE2B cc2bf3f5e0dec1f999292e15f47b380155f64920f978dc690f7a98410db979374b9ef7a9ea42f96359ca2171c8c800b3ff7ef4fcb2ef34f81d70107043b90faf SHA512 47d1b89dc20cdf01b5bf49afa4a6dd7e93f1cda6e9a557cfe2012305832f9e9e37a2fab1ffcea1be173030dcb4229120b0f19381bc3e4ddf572235237e23adfd +DIST thunderbird-78.5.0-hr.xpi 628987 BLAKE2B 88092f356b745ae7b9b934ae707b24a57fda6896f493e8863378abcde2ea082ccdc6ca94ac751877b73246dc6e90ca5cc25e9008480761ead6a0968938f71ca2 SHA512 762789377ed6766475c6a9fd35c89898088fe5cea59ea1540dd654b5bdc017c3b5b8314639d834093cdf9808002a8ab1f64b9bd2b18c9e1f4e2569adb1e1e390 +DIST thunderbird-78.5.0-hsb.xpi 668606 BLAKE2B 94d94a476217ef84221540dc494fed8b14323c42952dbc9d8a82eaf1f28b50f3641779fcd5b174e84d5cfc2bd4d1c60ce15a42cc25a987d64f26ae11d478fda5 SHA512 1115090bc146536a9fbc5ccea7e599814fc2351bd499d66d95844b16a71599067eb2c593e21a3a49934689312841d974328ea8d6a528a97202364ac0010d28de +DIST thunderbird-78.5.0-hu.xpi 679829 BLAKE2B 4dfa36bb84a1e4141fa01ee667c23e66c48835e24f43af0ee4e9c07be1d69131cb939a53003266e9a58fc2695a95adc22c9a37e0a661c28f19f9c920426ad04a SHA512 04624a6fe98b6e0786e74b9a2ee5d769a477b74b35b92f83e84e4570554750d9cfe49cadb6613fb81345cfbc32fc7cf0128c0df740908f74ac16afc59f866ad0 +DIST thunderbird-78.5.0-hy-AM.xpi 713297 BLAKE2B f885bfc263998c4e0ab7a1bce0399e84ae807b4c2cbddfe22e222841f762d38d12269d5ccfba9dcd2eeeb9b830ead2f8cd8d39e101c7db7a0a99913ed4a1d1f0 SHA512 8d459e9aaa2db307bc32e004d8d8919dccd17b02da08fdcc6220f654669c315c85fa4eb26084bfbf6250a95552b2781d5afabd82820e4292fd2e4d897b67ae6d +DIST thunderbird-78.5.0-id.xpi 620640 BLAKE2B d113eed7cecc377615df9d890061f266cf221bd59a6804d7cedef9372c9de71f9882d06c9383f964a1d30a1f313eff5d0c39e3e04c0d2ac8b90ecf0d1f90a54a SHA512 cd7868591687ea85e746f22ded825b7c64d640666faaad61fa543baf3d4754d2363d1d6899285c694315db5a4800be18e59e56b28455c6a96a03909e7ef00776 +DIST thunderbird-78.5.0-is.xpi 581605 BLAKE2B 67c78746e0fb1a513d327280c29a1eb118fffaf004bc1e8d34e5bc490f94bef7679c4fad80b170e363a7a0b1d58da5362f708a7b46b0f9689eeb3d30369db978 SHA512 f21f12913d4a79dbcfb5688dba909345404761b2832467e9d31b370aa39c7fa7ed06f8b147eb8e55161bb345a78c4fdee7e8f1a25da9057c78ec76b5414ee18d +DIST thunderbird-78.5.0-it.xpi 572958 BLAKE2B f005acb2a117146726bf944688be8cb5fc35e4c820bd68e99cf7858d8f3f2fbfd9fe7e315e24314f2428fdc7b9275572d5ea96aa198c06b15fa2cabf29eb8007 SHA512 b79a5eaec4b7e0e043bd0b39a0129326b2bdb11793428e8f722405cee5c922575876528e5da4109bae97546ef110c864910d35d5b791f04ffda24bf5f1e3974e +DIST thunderbird-78.5.0-ja.xpi 722455 BLAKE2B aac3e647fd677b69c501b8a974e55558610581c857d4aa728300325d11b66d0233ab7853170cd9ac91644aa51f6d348192adc528208fb38a50a815da9ab96800 SHA512 8ea3d523759fd92464ffeb6f5432f80259068cd0fa85003f007be622bcbe788a59e6efc83feb736673db95e32069e132cbeb08eb2f21790e053ea9b32bf9d555 +DIST thunderbird-78.5.0-ka.xpi 717014 BLAKE2B edd1c1f6f9936344585006c63feae3cb100f2a2f7c6095e3fb08291e8760d2d3334574e5582d3dea35fd6ab487ff21149f10d2bb1b936628a492c23ceae75a65 SHA512 fd9e0f27ea490b998d399dc542442c755e27a11ba3748d125eb3841e4fc193c2776988744872c77f7fc77094dca7b58698772978e38618ada224c553177a92ce +DIST thunderbird-78.5.0-kab.xpi 651925 BLAKE2B 7c6e54095c3450b34e36eac6b31412097f84327e6bebaed1196162f1e5ce6518326c85596dd7fc04603e1be577bc69b6e7358576fde607e56dd273d7d62000df SHA512 06b29cf7509b63a6f668c71ef900be12e3b6bb3b77b261eda16ae009d5214572148e30d30f660b18c72bf3b90b2926b5e931be892f299381ecce41d3885f639a +DIST thunderbird-78.5.0-kk.xpi 720431 BLAKE2B 58681793c59f883f8838ca7ce2a4c6cb5cc4d72d4b9aa6e8b9d492302dd1aced926eba3ece59589b92b1310f989356409e928f6a3b465dd57e799e401b5d1714 SHA512 9e7f589c20b6b06dd41fe6a4bc4a42d50a1d8be2745aaf6b14057db7abb9c59935f45e314efe7209b08897d78122737d5b42a0589c25d1adfc8c9ce704e7695f +DIST thunderbird-78.5.0-ko.xpi 688209 BLAKE2B e50ed2289e34cfc0819c334959fc1eb790241efbecf82980fb8eefee80e5d7b45fea69b6ad2fec8a587fd3b26d8f09e52f255d531c7685347c3be7849b72ea09 SHA512 74985c58df4bc72bc1719383dfd8ae2ad601105645f852caae922128afc64ce10354edc11ab1f7e8e517ce95196db52ed0fc0bc41adffe521a2450302bcacaa8 +DIST thunderbird-78.5.0-lt.xpi 660299 BLAKE2B 1cf913c519472630640bcd610c3f81a0ce93d2d7c6512b46ae8825f8be2144ccdb42926c0d587a2895af64d24866b33e655ddd6fad52f3cd45b47c73abf23c65 SHA512 d4df0dbbf5c9055fcd5f64da33b715d597408a65e684e59e7c05da70a16a0a4c6dc057f031b1eadcc7a499c10afa0cd8987c857ee408592a47fc4e7aab44998f +DIST thunderbird-78.5.0-ms.xpi 572136 BLAKE2B 5b49ae2b21691c0de11e3f3813aa958e5c818edd407127031a631c8749391b113c9dc0263714f0b1fe1e28bef6829a05ad4d1a858b26422346d7944ca965a8f6 SHA512 2db29f15f5d1016a3656de9b668416031776df5a821953dc57235955652e1bff29e0abf82023081bbc4b0b1005d75b168de9ba7c18f3f8b147df118a33d33c18 +DIST thunderbird-78.5.0-nb-NO.xpi 637235 BLAKE2B f1e6daf9fc7529e10fd1b4e65691fee484c911815db7c96e472c17d79a5e56addca302e3f21d76cf491c05479a82e61dd169dbc12892ac88ec970dc89d8f444c SHA512 524c9ed6e0a66cb53f8394f8459ff34a2894b3d07edced3eeef1f1169b275898cc6c2b30fc78b4f4dd06f1fbc6651999a7050cd428cb0bf2bf439f866fcdfd69 +DIST thunderbird-78.5.0-nl.xpi 644354 BLAKE2B 7d3f8f9e88957608c343a643afb2193878e239841aadae541429ce3441957bf5a0ffb7d016003d883a53f97b011c5ef096769de4a109c4b0615e620a93832fd3 SHA512 3621c41faea13780a139ed7485e9904893552b8b3e182f34ea49fb4a2e4f85654aa26fe7b76753b8b883a04d481e808bc616758624fc61e7ff9aed1d09e92df8 +DIST thunderbird-78.5.0-nn-NO.xpi 640684 BLAKE2B bbf1ff1201dfb1c2e5764072098d1a1ba1500326507c4f9274e479fe8fa07b5446fdc9bc6a8d9b84c80a876f7b2606bd1921be1343e46bf56533fb5ef577422b SHA512 4560e185285c942667ff7d9f8af6659fa11efd4c2c5cbbe85494beb084f6bc6671a88dac0ec46ae2e738666a718cb14695e84e6a8e67dbbc93ad4ceb3aa04b33 +DIST thunderbird-78.5.0-pa-IN.xpi 633177 BLAKE2B 628a1922abdf728a82520014f6da315be96a3c159752e5eccf3c3b18396e37202844b3cee4edc068bc8a8b0497e97d904f6f11fa28a0d74221ae4bd8c95ef992 SHA512 5ed8c7afe3bb9a92fec130e8ec377288472ab910b9bc0a028dd18960c39889f28211e11da7e34acc203ce57ab24fa524d862e22653f3c26a349fd604d1df8c1c +DIST thunderbird-78.5.0-pl.xpi 637112 BLAKE2B a6bc4e8e8021eac5f53ced8b0decf23460b83282bddf0b9aa5822f2f2c9b8c1026b8d5c4b1aece0435cd88167257c2ff306a8405ceaa9df3c6b81e2e1197d1a9 SHA512 1b415108ae218ea9269a4cc2f51fd64d716deaaebc8116a94611fe2800c39ab56c123345ff4d075dca92cae56f00e97bb55f205bdb6b19948528211fb6574528 +DIST thunderbird-78.5.0-pt-BR.xpi 649414 BLAKE2B a0a56356620ec5226e47560e08132f56cbdf360576715a517ccd3ee9d9f55ebe5e7be6a6ce08f522687a32795ab128a8b9ccb78cf3b9ee8f3cd858a882cbb076 SHA512 349c8f47cf1405210d01e91a59a1132c47a84771d5da878b5f668f497e522d259c3ebd4ff1001604f580c1b54a3ff4fbe6084785b4c580c7a9b79056153afb9d +DIST thunderbird-78.5.0-pt-PT.xpi 655497 BLAKE2B d49efa87dd516027f30b5dae1dca9f3b11f23802de03b9643804ce2d0554c494153a20500883a7c04fab15b3d30fc32bc65daf329aef1b9f352f3cf1627b56dc SHA512 cd00271ff1919b88920d734706670b63dc00c6de4b0caa1c1b5e91f7f7ea5b82fef18452ee228f6949222bb6ab3d7a297c3123e3f10d34a7d7090afa186a930b +DIST thunderbird-78.5.0-rm.xpi 646531 BLAKE2B 0b56269c62d275dca843c57460dfd70bba13f01de7a852a29cfbbeedd4d9842e7cedc57ce9574f6348543d15623a607e283dcf89740b16328061664a8267878a SHA512 f81a43a476c91d8f3d6f830bd27479b92a8fadf539f46fba8ca0dd07dbd2cb639ece560fcda88764e4510e8854537c5a558e1b837a4e7fd6ddc1dac914a88092 +DIST thunderbird-78.5.0-ro.xpi 662642 BLAKE2B b19931aa66e26fca2f857439c0e47172ced0255c23f3d7731af95a9639078f0869bd524e0cbbad49118c374d5ecc7f652467862076c2b8870cd467d957603f4d SHA512 53356a655803f14d68312d461920d3a6f17db118547fb7d040f5110d4e65db76104e072646b3849efa5ca47f027e5c761a721be83ebf3cd200e36b9deb15ebbd +DIST thunderbird-78.5.0-ru.xpi 756187 BLAKE2B 42d2470e72e519a63addd3356824f4604ab300e43b0d9bcf08c79cd6d393d1decfa9a30f1c44fc136540af9979284a90530a6ca8b7c8886517b871536e029629 SHA512 2ade9448e0178aefa8ea032a2e53a42b8f77641dc56e790826f44ff3628d381dfd490b08164838c85ed80e84a69348251a1b5920291586720044a51e587b8b5b +DIST thunderbird-78.5.0-si.xpi 651069 BLAKE2B 78fcd5569a87e3938893f8010d3bb3a515365b92986a75bb2d27ae36482eed906eeabe59c6beed626027267dd0380ae1f186221d9227bad3e25ae60a213b3739 SHA512 5b22ef4072b0d81ccffbd62ac6279a783a5acf716b67561d206034f66e8569935bf1d0eca8e03d6af7a4601acc1176be0c78bb40daf95c544bb11b918aad9673 +DIST thunderbird-78.5.0-sk.xpi 643185 BLAKE2B e4fc5bb819bd79161359cd90aadb56f28d887897a4bc5b5c4b6db79ae525fae2ebd0f1d53e3897194cfa11232fdedb99538f398a1a48accefd18f7046d2efaf1 SHA512 e948a48e333306d744dc7c397b2839ce4b899a44c72c68748557657422ca0149781395c870a3bb38e97f8a2a786d2373f3aa64331e99f392b6bd451a3dac1a6c +DIST thunderbird-78.5.0-sl.xpi 632340 BLAKE2B 046266bce228b914c30f726bd78d00d725791cd6710c65fe146054e8a9fc0af743b3c839b57f1e773a2d009776ef2d703532cb2bcaef324149018bfd149e53b2 SHA512 aae9faa7de38d6d55e39bfc95ee035526bb7cc67136afd80b3304930067a8739cd5e8bb4d867fb49f2f8de784c4fd306857d9139a5d619f1679e5e7d64ce7c68 +DIST thunderbird-78.5.0-sq.xpi 657818 BLAKE2B d0af6bd2947854326be426109899308fe0d085ceff533e66db0b58cbd64ec419e85d7076e61bf4af17065d02292b64e7ac257657f4ccf4c3451de53ef398e4b7 SHA512 9ba4ec6ae1b69802d2db51649f05db16d1cd472af7fbb7cf00dfa87cebda6496bb8c293f88aef3bdb5b0cf84c8a751eabb461673b2dca2d89f7a049cdc01a654 +DIST thunderbird-78.5.0-sr.xpi 683076 BLAKE2B df42669c5ea3ff0341d3365f01e05911f6e6b275f2595ab2662131436907f0ec70edee6b0aef48f9afec12258257f3744c0cabfec288589b4e558a3ea76bdd21 SHA512 e85a21aaa1e83d97470241fec487b8df29982a21e7a0aa1ead9057b6dd2261f103882b31e3fd39ed1b35b296297651976e998d80f07eae135bd35538a97ff64b +DIST thunderbird-78.5.0-sv-SE.xpi 648863 BLAKE2B 18900bcda5bf2edfeccf2d2aec02ec7ad3bd413caf4d89d85f4723fd27254787b0968cb0740d367acf1590cc9601486b4027e0e9617844106c96efe52afb48e7 SHA512 2d0f6d8f7c5d7661c4a6d2a09487c03b952a4c542631b4b9d947464e6e74e6b760dbe7ecf808ebc8fdd258ad5f69211dbbbe7b68b08770b67b8eebe5413968cc +DIST thunderbird-78.5.0-th.xpi 712031 BLAKE2B 8de6fd5f9eafaa4b97658eb303289be97c053bc153fdc2d902d8ae8bbb0e290c4e0512f3085dc87c18afdff4dc37338d18fc9253419b0b7bfb66ac2e007d394c SHA512 c9769389be0e9b154ce686e79fd4cc7047d7f115eff2b888dcaaf4a70b29d0f27a2b0a840a231569bf2229419ddef53c111fb4a3103d836b100915ab979997bd +DIST thunderbird-78.5.0-tr.xpi 649071 BLAKE2B b7fd59c4c846e1214f7a16899741a74044cf9c945385bb57735ef2773da1877085368f273c25aa37e2dbc8549f0c805dff501614e63d7761e5892e0eb6240b6a SHA512 e77fc7064bc530df959e73f0bcd2e977cc09ca3cc0adde703850a3c89b171e73ae57a9b7c715e75310b8d6ecc2a3444c36519e2c56f9c0c7aba561b26d8f2f30 +DIST thunderbird-78.5.0-uz.xpi 586572 BLAKE2B 7ada629d4274e2500c59dd6ab75ff8c9e9b88fface27fb650abc0637a137971f6a95323b6fcf4bda995203b42b0f9a6a135f48aa16c37f6b7e5fb09a08f68b95 SHA512 9c627329b438b1a4afc7507a4e87c4c5a94bb665d51935227df51023d7c37e407ee4d6c84626668fd50d1f3b7d282c7701ac7a273ee37c665e99492fd22aa6b4 +DIST thunderbird-78.5.0-vi.xpi 674608 BLAKE2B af9954482a76f094a0ae0a48135198465f656fe739419b3cf75931967cb9561b8a16d44eb9dac54d78f024ff28658a8a5ea2144c344aaed63e8c33b3b67392e4 SHA512 2641538591d060a60abeb25893bee0446a55ee750de430e39ba147ff1620836a9f486f142e3f1c1180bc7b3c142b399cbb2765a162b792f8fcd1884163b7d61b +DIST thunderbird-78.5.0-zh-CN.xpi 687174 BLAKE2B 2fcd423229281528ea8767dafe8c6f7073b29b8b1e0d22624b81f84bb944bfca3040c840031317edb0f94a0c7afbd9126fd97ef76442a6d213416c0ab29cd4c0 SHA512 569e3dc49d102d56b50d9dccb7587e76481bc637f008493c40fdf7bcf2b7dd58c776131ac3cd6b37d479b900d77da4621e7c6476526159a0026da7bd156a163b +DIST thunderbird-78.5.0-zh-TW.xpi 687620 BLAKE2B be48d9da7320faf2bea2f3cb682a34114321f7a0af505f4cf4e677b3ade4784f0a9d444c0b407a9d97bc50eb1f6292078a3e38f1e6d83c32ba64f094378c3b71 SHA512 a7a5e00e02ba66fd8dedbfe60af12843f5af67aa72e43c4b99bea1c6edd598d39219a58e147f819390a7d2f1536a27e87f63139a4014d84ac5ccb4ee653ccde4 +DIST thunderbird-78.5.0.source.tar.xz 355944116 BLAKE2B ca785b280f66442e1e3014f0e09343ef341d22e073d179514b6059f566e1436ec64fba9dc104382d38cd694baf58dc253eee35aaec1453cc8d5ca850df298c35 SHA512 dae49dc0910dd017250643c920c79f03d3ef14bcbafde7fcdb3aaeba2b27a42ef6f88c8de8b961f8bb1c3d1a153bc8988ab43a39eb051d81839cf3b9e8373118 diff --git a/www-client/firefox/firefox-82.0.3.ebuild b/mail-client/thunderbird/thunderbird-78.5.0.ebuild similarity index 87% rename from www-client/firefox/firefox-82.0.3.ebuild rename to mail-client/thunderbird/thunderbird-78.5.0.ebuild index 5ea82a357ec6..3e15f555b194 100644 --- a/www-client/firefox/firefox-82.0.3.ebuild +++ b/mail-client/thunderbird/thunderbird-78.5.0.ebuild @@ -3,7 +3,7 @@ EAPI="7" -FIREFOX_PATCHSET="firefox-82-patches-03.tar.xz" +FIREFOX_PATCHSET="firefox-78esr-patches-06.tar.xz" LLVM_MAX_SLOT=11 @@ -54,27 +54,25 @@ PATCH_URIS=( SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz ${PATCH_URIS[@]}" -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="https://www.mozilla.com/firefox" +DESCRIPTION="Thunderbird Mail Client" +HOMEPAGE="https://www.mozilla.org/thunderbird" KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" SLOT="0/$(ver_cut 1)" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate - hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +IUSE="clang cpu_flags_arm_neon dbus debug eme-free + hardened jack lto +openh264 pgo pulseaudio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi" -REQUIRED_USE="screencast? ( wayland )" - BDEPEND="${PYTHON_DEPS} app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.14.3 >=net-libs/nodejs-10.19.0 virtual/pkgconfig - >=virtual/rust-1.43.0 + >=virtual/rust-1.41.0 || ( ( sys-devel/clang:11 @@ -112,8 +110,8 @@ BDEPEND="${PYTHON_DEPS} )" CDEPEND=" - >=dev-libs/nss-3.57 - >=dev-libs/nspr-4.29 + >=dev-libs/nss-3.53.1 + >=dev-libs/nspr-4.25 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] @@ -143,7 +141,6 @@ CDEPEND=" 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:= @@ -176,7 +173,8 @@ RDEPEND="${CDEPEND} >=media-sound/apulse-0.1.12-r4 ) ) - selinux? ( sec-policy/selinux-mozilla )" + selinux? ( sec-policy/selinux-mozilla ) + !&2 @@ -221,13 +213,10 @@ llvm_check_deps() { } MOZ_LANGS=( - ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy - da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu - fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM - ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my - nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru - si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi - xh zh-CN zh-TW + af ar ast be bg br ca cak cs cy da de dsb el en-CA en-GB en-US + es-AR es-ES et eu fa fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM + id is it ja ka kab kk ko lt ms nb-NO nl nn-NO pa-IN pl pt-BR + pt-PT rm ro ru si sk sl sq sr sv-SE th tr uz vi zh-CN zh-TW ) mozilla_set_globals() { @@ -373,9 +362,9 @@ pkg_pretend() { # Ensure we have enough disk space to compile if use pgo || use lto || use debug ; then - CHECKREQS_DISK_BUILD="13G" + CHECKREQS_DISK_BUILD="13500M" else - CHECKREQS_DISK_BUILD="5600M" + CHECKREQS_DISK_BUILD="6400M" fi check-reqs_pkg_pretend @@ -392,9 +381,9 @@ pkg_setup() { # Ensure we have enough disk space to compile if use pgo || use lto || use debug ; then - CHECKREQS_DISK_BUILD="13G" + CHECKREQS_DISK_BUILD="13500M" else - CHECKREQS_DISK_BUILD="5600M" + CHECKREQS_DISK_BUILD="6400M" fi check-reqs_pkg_setup @@ -565,7 +554,8 @@ src_configure() { export MOZCONFIG="${S}/.mozconfig" # Initialize MOZCONFIG - mozconfig_add_options_ac '' --enable-application=browser + mozconfig_add_options_ac '' --enable-application=comm/mail + mozconfig_add_options_ac '' --enable-calendar # Set Gentoo defaults export MOZILLA_OFFICIAL=1 @@ -632,8 +622,6 @@ src_configure() { use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme - mozconfig_use_enable geckodriver - if use hardened ; then mozconfig_add_options_ac "+hardened" --enable-hardening append-ldflags "-Wl,-z,relro -Wl,-z,now" @@ -647,8 +635,6 @@ src_configure() { mozconfig_add_options_ac '-pulseaudio' --enable-alsa fi - mozconfig_use_enable screencast pipewire - mozconfig_use_enable wifi necko-wifi if use wayland ; then @@ -882,34 +868,17 @@ src_install() { newins "${FILESDIR}"/disable-auto-update.policy.json policies.json # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" + local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref" insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js + newins "${FILESDIR}"/gentoo-default-prefs.js gentoo-prefs.js - local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" + local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" # Set dictionary path to use system hunspell cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set spellchecker.dictionary_path pref" pref("spellchecker.dictionary_path", "${EPREFIX}/usr/share/myspell"); EOF - # Force hwaccel prefs if USE=hwaccel is enabled - if use hwaccel ; then - cat "${FILESDIR}"/gentoo-hwaccel-prefs.js \ - >>"${GENTOO_PREFS}" \ - || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" - fi - - if ! use gmp-autoupdate ; then - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - einfo "Disabling auto-update for ${plugin} plugin ..." - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" - pref("media.${plugin}.autoupdate", false); - EOF - done - fi - # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it if use system-harfbuzz ; then cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set gfx.font_rendering.graphite.enabled pref" @@ -923,19 +892,9 @@ src_install() { moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" fi - # Install geckodriver - if use geckodriver ; then - einfo "Installing geckodriver into ${ED}${MOZILLA_FIVE_HOME} ..." - pax-mark m "${BUILD_DIR}"/dist/bin/geckodriver - exeinto "${MOZILLA_FIVE_HOME}" - doexe "${BUILD_DIR}"/dist/bin/geckodriver - - dosym ${MOZILLA_FIVE_HOME}/geckodriver /usr/bin/geckodriver - fi - # Install icons - local icon_srcdir="${S}/browser/branding/official" - local icon_symbolic_file="${FILESDIR}/icon/firefox-symbolic.svg" + local icon_srcdir="${S}/comm/mail/branding/thunderbird" + local icon_symbolic_file="${icon_srcdir}/TB-symbolic.svg" insinto /usr/share/icons/hicolor/symbolic/apps newins "${icon_symbolic_file}" ${PN}-symbolic.svg @@ -1053,16 +1012,6 @@ pkg_preinst() { pkg_postinst() { xdg_pkg_postinst - if ! use gmp-autoupdate ; then - elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" - elog "installing into new profiles:" - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - elog "\t ${plugin}" - done - elog - fi - if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then elog "Apulse was detected at merge time on this system and so it will always be" elog "used for sound. If you wish to use pulseaudio instead please unmerge" @@ -1070,25 +1019,11 @@ pkg_postinst() { elog fi - local show_doh_information show_normandy_information + local show_doh_information if [[ -z "${REPLACING_VERSIONS}" ]] ; then # New install; Tell user that DoH is disabled by default show_doh_information=yes - show_normandy_information=yes - else - local replacing_version - for replacing_version in ${REPLACING_VERSIONS} ; do - if ver_test "${replacing_version}" -lt 70 ; then - # Tell user only once about our DoH default - show_doh_information=yes - fi - - if ver_test "${replacing_version}" -lt 74.0-r2 ; then - # Tell user only once about our Normandy default - show_normandy_information=yes - fi - done fi if [[ -n "${show_doh_information}" ]] ; then @@ -1100,21 +1035,4 @@ pkg_postinst() { elog "(\"Off by choice\") by default." elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." fi - - # bug 713782 - if [[ -n "${show_normandy_information}" ]] ; then - elog - elog "Upstream operates a service named Normandy which allows Mozilla to" - elog "push changes for default settings or even install new add-ons remotely." - elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" - elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" - elog "concerns prevail, which is why we have switched off the use of this" - elog "service by default." - elog - elog "To re-enable this service set" - elog - elog " app.normandy.enabled=true" - elog - elog "in about:config." - fi } diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index 549e4211cfaa..b68b68584928 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2-r1.ebuild b/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2-r1.ebuild index 4bf771d0a33e..807a9a0772ed 100644 --- a/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2-r1.ebuild +++ b/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="" DEPEND="mail-mta/courier" diff --git a/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2.ebuild b/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2.ebuild deleted file mode 100644 index e37b200da1bc..000000000000 --- a/mail-filter/courier-pythonfilter/courier-pythonfilter-3.0.2.ebuild +++ /dev/null @@ -1,19 +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} ) -inherit distutils-r1 - -DESCRIPTION="Python filtering architecture for the Courier MTA" -HOMEPAGE="https://pypi.org/project/courier-pythonfilter/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="mail-mta/courier" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/mail-mta/Manifest.gz b/mail-mta/Manifest.gz index 05a6c37195bc..317cf8c41ac6 100644 Binary files a/mail-mta/Manifest.gz and b/mail-mta/Manifest.gz differ diff --git a/mail-mta/courier/courier-1.0.14.ebuild b/mail-mta/courier/courier-1.0.14.ebuild index 6f5990c95e80..7919c9f23584 100644 --- a/mail-mta/courier/courier-1.0.14.ebuild +++ b/mail-mta/courier/courier-1.0.14.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 s390 sparc x86" IUSE="postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite \ fam web webmail gnutls" diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index 882cbdddbe9c..40a2cfdba482 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/fbida/fbida-2.14-r2.ebuild b/media-gfx/fbida/fbida-2.14-r2.ebuild index 46e671b8cc49..7a8c7095485b 100644 --- a/media-gfx/fbida/fbida-2.14-r2.ebuild +++ b/media-gfx/fbida/fbida-2.14-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI=" " LICENSE="GPL-2 IJG" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~hppa ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 sparc x86" IUSE="curl fbcon ghostscript +gif lirc +png scanner +tiff X +webp" REQUIRED_USE=" ghostscript? ( tiff ) diff --git a/media-gfx/gmic/Manifest b/media-gfx/gmic/Manifest index 39f44b3db54c..4ecb061abd17 100644 --- a/media-gfx/gmic/Manifest +++ b/media-gfx/gmic/Manifest @@ -1 +1,2 @@ DIST gmic_2.9.2.tar.gz 6639693 BLAKE2B 4b452cc5c82e8ea30a1bd65e51b6187fc12d9c7f8af6d0f8107a8d183c6e87dff11394f103eae7ac17daa00c6c9aa0f47ce78a92156e2da9bc4ee0fcacbf398d SHA512 be8707b5c156b17189548c1f808b976afcb7b7cce20ff54ff4589eda9a76a8cddf81c64b7a53c332254b2c8c29fb8ca0926016cadcb1efb7131a38d857fce796 +DIST gmic_2.9.3.tar.gz 7279292 BLAKE2B 920a94321b2916f65bb2c5b273c4938acdcd7b4825a3eeeb15407b1a6d7881f927792f89524db7d3a33272ddae8e39e8f60d29a922b5dd2873e6b9be2948a646 SHA512 e640c73b9d008b445d075b02ed7d359a0c2ee51df8245557192e38ed108e6db43de0fca577f1636c40b2c4a7db038f79926e7666b9f00b6421cda96d9a91b3ff diff --git a/media-gfx/gmic/gmic-2.9.3.ebuild b/media-gfx/gmic/gmic-2.9.3.ebuild new file mode 100644 index 000000000000..4af6d1c63fa1 --- /dev/null +++ b/media-gfx/gmic/gmic-2.9.3.ebuild @@ -0,0 +1,192 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_BUILD_TYPE=Release + +inherit cmake bash-completion-r1 toolchain-funcs + +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="https://github.com/dtschump/gmic.git" + inherit git-r3 +else + SRC_URI="https://gmic.eu/files/source/${PN}_${PV}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +DESCRIPTION="GREYC's Magic Image Converter" +HOMEPAGE="https://gmic.eu/ https://github.com/dtschump/gmic" + +LICENSE="CeCILL-2 GPL-3" +SLOT="0" +IUSE="+cli curl digikam ffmpeg fftw gimp graphicsmagick jpeg krita opencv openexr openmp png qt5 static-libs tiff X zlib" +REQUIRED_USE=" + || ( cli digikam gimp krita qt5 ) + digikam? ( png zlib fftw X ) + gimp? ( png zlib fftw X ) + krita? ( png zlib fftw X ) + qt5? ( png zlib fftw X ) +" + +MIN_QT_VER="5.2.0" +QT_DEPEND=" + >=dev-qt/qtcore-${MIN_QT_VER}:5= + >=dev-qt/qtgui-${MIN_QT_VER}:5= + >=dev-qt/qtnetwork-${MIN_QT_VER}:5= + >=dev-qt/qtwidgets-${MIN_QT_VER}:5= +" +COMMON_DEPEND=" + curl? ( net-misc/curl ) + digikam? ( + media-gfx/digikam + ${QT_DEPEND} + ) + fftw? ( sci-libs/fftw:3.0=[threads] ) + gimp? ( + media-gfx/gimp:0/2 + ${QT_DEPEND} + ) + graphicsmagick? ( media-gfx/graphicsmagick:0= ) + jpeg? ( virtual/jpeg:0 ) + krita? ( ${QT_DEPEND} ) + opencv? ( >=media-libs/opencv-2.3.1a-r1:0= ) + openexr? ( + media-libs/ilmbase:0= + media-libs/openexr:0= + ) + png? ( media-libs/libpng:0= ) + qt5? ( ${QT_DEPEND} ) + tiff? ( media-libs/tiff:0 ) + X? ( + x11-libs/libX11 + x11-libs/libXext + ) + zlib? ( sys-libs/zlib:0= )" +RDEPEND="${COMMON_DEPEND} + ffmpeg? ( media-video/ffmpeg:0= ) +" +DEPEND="${COMMON_DEPEND} + digikam? ( dev-qt/linguist-tools ) + gimp? ( dev-qt/linguist-tools ) + krita? ( dev-qt/linguist-tools ) + qt5? ( dev-qt/linguist-tools ) +" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-2.9.2_ipa-sra.patch +) + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + if use openmp; then + tc-has-openmp || die "Please switch to an openmp compatible compiler" + fi + fi +} + +src_prepare() { + cmake_src_prepare + sed -i '/CMAKE_CXX_FLAGS/s/-g //' CMakeLists.txt || die + + if use digikam || use gimp || use krita || use qt5; then + # respect user flags + sed -e '/CMAKE_CXX_FLAGS_RELEASE/d' \ + -e '/${CMAKE_EXE_LINKER_FLAGS} -s/d' \ + -i gmic-qt/CMakeLists.txt || die + local S="${S}/gmic-qt" + # Bug #753377 + local PATCHES=() + cmake_src_prepare + fi +} + +src_configure() { + local mycmakeargs=( + -DBUILD_LIB=ON + -DBUILD_LIB_STATIC=$(usex static-libs) + -DBUILD_CLI=$(usex cli) + -DBUILD_MAN=$(usex cli) + -DBUILD_BASH_COMPLETION=$(usex cli) + -DCUSTOM_CFLAGS=ON + -DENABLE_CURL=$(usex curl) + -DENABLE_X=$(usex X) + -DENABLE_FFMPEG=$(usex ffmpeg) + -DENABLE_FFTW=$(usex fftw) + -DENABLE_GRAPHICSMAGICK=$(usex graphicsmagick) + -DENABLE_JPEG=$(usex jpeg) + -DENABLE_OPENCV=$(usex opencv) + -DENABLE_OPENEXR=$(usex openexr) + -DENABLE_OPENMP=$(usex openmp) + -DENABLE_PNG=$(usex png) + -DENABLE_TIFF=$(usex tiff) + -DENABLE_ZLIB=$(usex zlib) + -DENABLE_DYNAMIC_LINKING=ON + ) + + cmake_src_configure + + # configure gmic-qt frontends + local CMAKE_USE_DIR="${S}/gmic-qt" + mycmakeargs=( + -DENABLE_DYNAMIC_LINKING=ON + -DENABLE_CURL=$(usex curl) + -DGMIC_LIB_PATH="${BUILD_DIR}" + -DGMIC_PATH="${S}/src" + ) + + if use digikam; then + mycmakeargs+=( -DGMIC_QT_HOST=digikam ) + BUILD_DIR="${BUILD_DIR}"/digikam cmake_src_configure + fi + + if use gimp; then + mycmakeargs+=( -DGMIC_QT_HOST=gimp ) + BUILD_DIR="${BUILD_DIR}"/gimp cmake_src_configure + fi + + if use krita; then + mycmakeargs+=( -DGMIC_QT_HOST=krita ) + BUILD_DIR="${BUILD_DIR}"/krita cmake_src_configure + fi + + if use qt5; then + mycmakeargs+=( -DGMIC_QT_HOST=none ) + BUILD_DIR="${BUILD_DIR}"/qt5 cmake_src_configure + fi +} + +src_compile() { + cmake_src_compile + + # build gmic-qt frontends + local S="${S}/gmic-qt" + use digikam && { BUILD_DIR="${BUILD_DIR}"/digikam cmake_src_compile || die "failed building digikam plugin" ; } + use gimp && { BUILD_DIR="${BUILD_DIR}"/gimp cmake_src_compile || die "failed building gimp plugin" ; } + use krita && { BUILD_DIR="${BUILD_DIR}"/krita cmake_src_compile || die "failed building krita plugin" ; } + use qt5 && { BUILD_DIR="${BUILD_DIR}"/qt5 cmake_src_compile || die "failed building qt5 GUI" ; } +} + +src_install() { + cmake_src_install + dodoc README + use cli && newbashcomp "${BUILD_DIR}"/resources/gmic_bashcompletion.sh ${PN} + + local PLUGINDIR="/usr/$(get_libdir)/gimp/2.0/plug-ins" + insinto "${PLUGINDIR}" + doins resources/gmic_cluts.gmz + + # install gmic-qt frontends + if use digikam; then + local DIGIKAMDIR="/usr/$(get_libdir)/qt5/plugins/digikam/editor" + exeinto "${DIGIKAMDIR}" + doexe "${BUILD_DIR}"/digikam/Editor_GmicQt_Plugin.so + fi + if use gimp; then + exeinto "${PLUGINDIR}" + doexe "${BUILD_DIR}"/gimp/gmic_gimp_qt + fi + use krita && dobin "${BUILD_DIR}"/krita/gmic_krita_qt + use qt5 && dobin "${BUILD_DIR}"/qt5/gmic_qt +} diff --git a/media-gfx/wings/wings-2.2.6.1.ebuild b/media-gfx/wings/wings-2.2.6.1.ebuild index 27d7649bc561..e27096cf47fe 100644 --- a/media-gfx/wings/wings-2.2.6.1.ebuild +++ b/media-gfx/wings/wings-2.2.6.1.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/wings/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" RDEPEND=" >dev-lang/erlang-21[wxwidgets] diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index c3cad7cd824f..00530647a28e 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/fontconfig/fontconfig-2.13.1-r2.ebuild b/media-libs/fontconfig/fontconfig-2.13.1-r2.ebuild index 67e8256b5fc7..70a15b893a0f 100644 --- a/media-libs/fontconfig/fontconfig-2.13.1-r2.ebuild +++ b/media-libs/fontconfig/fontconfig-2.13.1-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://fontconfig.org/release/${P}.tar.bz2" LICENSE="MIT" SLOT="1.0" [[ $(ver_cut 3) -ge 90 ]] || \ -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 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 ~x86-winnt" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 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 ~x86-winnt" IUSE="doc static-libs" # Test test-bz106632 is known to be broken, see bug #751232 diff --git a/media-libs/freetype/Manifest b/media-libs/freetype/Manifest index cb7d28558e69..50c714e584a9 100644 --- a/media-libs/freetype/Manifest +++ b/media-libs/freetype/Manifest @@ -1,9 +1,3 @@ -DIST freetype-2.10.2.tar.xz 2404456 BLAKE2B 866bd83c460f83fba93f58d0ae2270ac3833d6eb0b087f7eb860bd6e08f40ece1982b70bbd065b8978e47ff6fb2b46398307d461170cd10285d11f74a9fbadaa SHA512 cf45089bd8893d7de2cdcb59d91bbb300e13dd0f0a9ef80ed697464ba7aeaf46a5a81b82b59638e6b21691754d8f300f23e1f0d11683604541d77f0f581affaa -DIST freetype-2.10.3.tar.xz 2416752 BLAKE2B 8ce360c07777ad5b031ff7a840ef0cec95f358e764897f1aea9e8fd40a21e8bada3610943dc70b279856116396e6703b5127a4d672fb6e0dc8e5fe7f9233265e SHA512 3f9d1a44cdae51ec4b13116aba5af1730e6be46132ddd9e49486e8d681b61756baa9897daaf0f06e79f00f2db0e57e0fa66d27f44d65735da1167d5b3c170373 DIST freetype-2.10.4.tar.xz 2416620 BLAKE2B 9852378536e873514baae3c024b9b30dcd78a36c2189dcbdb0562c56ccf871a5795896950ea129f2e0f12181095c92715216747e8a8396d6d03efac82a5a10ea SHA512 827cda734aa6b537a8bcb247549b72bc1e082a5b32ab8d3cccb7cc26d5f6ee087c19ce34544fa388a1eb4ecaf97600dbabc3e10e950f2ba692617fee7081518f -DIST freetype-doc-2.10.2.tar.xz 2078712 BLAKE2B 9d78d5d7c3806d83f5cb91daa88284445d36a75ce7b598177c83a9efc62faf5d8a0003f8cadee37eb6792711c87dc61d937fcb03f3c450c94276dfdf410c0aa1 SHA512 c54956a56920e651102b75c0efa07212e1d95f3bec219b8364b61d9a71171b11da492170cc861c36f3305f32ad1dee46d0d5a561ccdc6ca36591ae3f619a1d67 -DIST freetype-doc-2.10.3.tar.xz 2079036 BLAKE2B fca0915a5f268ce4d5205822d712b451f73d891e00518b3db0dd7c431fd7bd6544fa36fc374344c94f43d731fe7a1076724c3fdd42c8143647aa5763b4736556 SHA512 135ae51706197d1bd208cb48d8d1881c14aeee5283dbdab88a7fa6864aed888613df43bd3deb24ff530fa767f94fe997f97dee10bf2be7763231211bf7d5225f DIST freetype-doc-2.10.4.tar.xz 2079084 BLAKE2B a051c425250f8af1cd0e83b15d6e5692b1ee5ff00317467cef648dcc7ea1f88ad6cde0fe2d53e5c45220723bb935e6527dbba124ef8739e6ebe372bc06ec78b7 SHA512 171da6c6a172869e9bec0da67cb1abdb0fdb124870f13b751b4e9b1b5e342fb2af38cb606db1c3dcf18076a077e694b7b8dd055dd7f4ab49afe7e1d61b4f9ba8 -DIST ft2demos-2.10.2.tar.xz 230672 BLAKE2B dd81e72bb1360f6a952874c183598fffe3eddb4bed4d07715a75810d2e81623b94082b1274f916bf7550615a66ba7a327c5413fca9d470111aeb1fa31ce4dd73 SHA512 912e3c3cbcdfd30fd918897d28240e04eb7248d130fc519e7d1613873a11d275d658ff247c6d517ebecf7a09de0d05f3dc10631411226015e1b147cba9a8a438 -DIST ft2demos-2.10.3.tar.xz 235388 BLAKE2B c1c7e9d61fde441b2cc107a3ad8f1499c03ce8219a54b2bdc4ab7168a0d61a6c83c7e6e3d2de6a8ed0f09b29c398708618e4683d5ed24d6e8ae7505b8920770f SHA512 860fbeefd70caa4aa9483d90df5c3376ee2bef8fe93ab26010c4ca4f95cfd281870da461e2f335f42d3e6d2007f8e46c99d7834d2177b7806a2d92422ed08b41 DIST ft2demos-2.10.4.tar.xz 236712 BLAKE2B 76883bfc09c42b6092b0b512aff66b4585ac83793da787e688ad8446fceac1ce315014bde03d4271fc5a1b7bd1d3250255f5faced92beade6e4ed78c896db80d SHA512 d2afc19e5fabbee5205fcc992f6c19bab03485b7af4f55bb2d2dd0a4a9492a3f593540862ca116b54cf161b240d7966cb31a9793578d164fc418449e339e2fa8 diff --git a/media-libs/freetype/files/freetype-2.4.11-sizeof-types.patch b/media-libs/freetype/files/freetype-2.4.11-sizeof-types.patch deleted file mode 100644 index 5be0530ee007..000000000000 --- a/media-libs/freetype/files/freetype-2.4.11-sizeof-types.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 8af7b9e403240c2c3ace1005f5a91fa2f1625ac9 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Mon, 11 Mar 2013 22:13:34 +0100 -Subject: [PATCH] Prevent apps from using the autoconf sizeof branch. - -Use #error to make sure that any app trying to enable that branch fails -miserably. This guarantees the code to be multilib-friendly and also -removes the header differences triggering QA errors. ---- - builds/unix/ftconfig.in | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/builds/unix/ftconfig.in b/builds/unix/ftconfig.in -index 9531afd..457cbfc 100644 ---- a/builds/unix/ftconfig.in -+++ b/builds/unix/ftconfig.in -@@ -78,10 +78,7 @@ FT_BEGIN_HEADER - #undef FT_USE_AUTOCONF_SIZEOF_TYPES - #ifdef FT_USE_AUTOCONF_SIZEOF_TYPES - --#undef SIZEOF_INT --#undef SIZEOF_LONG --#define FT_SIZEOF_INT SIZEOF_INT --#define FT_SIZEOF_LONG SIZEOF_LONG -+#error "Unsupported code branch enabled. Please report a bug to bugs.gentoo.org." - - #else /* !FT_USE_AUTOCONF_SIZEOF_TYPES */ - --- -1.8.1.5 - diff --git a/media-libs/freetype/freetype-2.10.2-r1.ebuild b/media-libs/freetype/freetype-2.10.2-r1.ebuild deleted file mode 100644 index 6166c56a0485..000000000000 --- a/media-libs/freetype/freetype-2.10.2-r1.ebuild +++ /dev/null @@ -1,242 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic libtool multilib-build multilib-minimal toolchain-funcs - -DESCRIPTION="A high-quality and portable font engine" -HOMEPAGE="https://www.freetype.org/" -IUSE="X +adobe-cff bindist brotli bzip2 +cleartype_hinting debug fontforge harfbuzz infinality png static-libs utils" - -if [[ "${PV}" != 9999 ]] ; then - SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.xz - mirror://nongnu/freetype/${P/_/}.tar.xz - utils? ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.xz - mirror://nongnu/freetype/ft2demos-${PV}.tar.xz ) - doc? ( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.xz - mirror://nongnu/freetype/${PN}-doc-${PV}.tar.xz )" - 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 ~x86-winnt" - IUSE+=" doc" -else - inherit autotools git-r3 -fi - -LICENSE="|| ( FTL GPL-2+ )" -SLOT="2" -RESTRICT="!bindist? ( bindist )" # bug 541408 - -RDEPEND=" - >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] - brotli? ( app-arch/brotli[${MULTILIB_USEDEP}] ) - bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) - harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,${MULTILIB_USEDEP}] ) - png? ( >=media-libs/libpng-1.2.51:0=[${MULTILIB_USEDEP}] ) - utils? ( - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXau-1.0.7-r1[${MULTILIB_USEDEP}] - >=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}] - ) - )" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig -" -PDEPEND="infinality? ( media-libs/fontconfig-infinality )" - -PATCHES=( - "${FILESDIR}"/${PN}-2.4.11-sizeof-types.patch # 459966 -) - -_egit_repo_handler() { - if [[ "${PV}" == 9999 ]] ; then - local phase="${1}" - case ${phase} in - fetch|unpack) - :; - ;; - *) - die "Please use this function with either \"fetch\" or \"unpack\"" - ;; - esac - - local EGIT_REPO_URI - EGIT_REPO_URI="https://git.sv.nongnu.org/r/freetype/freetype2.git" - git-r3_src_${phase} - if use utils ; then - EGIT_REPO_URI="https://git.sv.nongnu.org/r/freetype/freetype2-demos.git" - local EGIT_CHECKOUT_DIR="${WORKDIR}/ft2demos-${PV}" - git-r3_src_${phase} - fi - else - default - fi -} - -src_fetch() { - _egit_repo_handler ${EBUILD_PHASE} -} - -src_unpack() { - _egit_repo_handler ${EBUILD_PHASE} -} - -src_prepare() { - if [[ "${PV}" == 9999 ]] ; then - # inspired by shipped autogen.sh script - eval $(sed -nf version.sed include/freetype/freetype.h) - pushd builds/unix &>/dev/null || die - sed -e "s;@VERSION@;$freetype_major$freetype_minor$freetype_patch;" \ - < configure.raw > configure.ac || die - # eautoheader produces broken ftconfig.in - eautoheader() { return 0 ; } - AT_M4DIR="." eautoreconf - unset freetype_major freetype_minor freetype_patch - popd &>/dev/null || die - fi - - default - - # This is the same as the 01 patch from infinality - sed '/AUX_MODULES += \(gx\|ot\)valid/s@^# @@' -i modules.cfg || die - - enable_option() { - sed -i -e "/#define $1/ { s:/\* ::; s: \*/:: }" \ - include/${PN}/config/ftoption.h \ - || die "unable to enable option $1" - } - - disable_option() { - sed -i -e "/#define $1/ { s:^:/* :; s:$: */: }" \ - include/${PN}/config/ftoption.h \ - || die "unable to disable option $1" - } - - # Will be the new default for >=freetype-2.7.0 - disable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 2" - - if use infinality && use cleartype_hinting; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING ( 1 | 2 )" - elif use infinality; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 1" - elif use cleartype_hinting; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 2" - fi - - # Can be disabled with FREETYPE_PROPERTIES="pcf:no-long-family-names=1" - # via environment (new since v2.8) - enable_option PCF_CONFIG_OPTION_LONG_FAMILY_NAMES - - if ! use bindist; then - # See http://freetype.org/patents.html - # ClearType is covered by several Microsoft patents in the US - enable_option FT_CONFIG_OPTION_SUBPIXEL_RENDERING - fi - - if ! use adobe-cff; then - enable_option CFF_CONFIG_OPTION_OLD_ENGINE - fi - - if use debug; then - enable_option FT_DEBUG_LEVEL_TRACE - enable_option FT_DEBUG_MEMORY - fi - - if use utils; then - cd "${WORKDIR}/ft2demos-${PV}" || die - # Disable tests needing X11 when USE="-X". (bug #177597) - if ! use X; then - sed -i -e "/EXES\ +=\ ftdiff/ s:^:#:" Makefile || die - fi - cd "${S}" || die - fi - - # we need non-/bin/sh to run configure - if [[ -n ${CONFIG_SHELL} ]] ; then - sed -i -e "1s:^#![[:space:]]*/bin/sh:#!${CONFIG_SHELL}:" \ - "${S}"/builds/unix/configure || die - fi - - elibtoolize --patch-only -} - -multilib_src_configure() { - append-flags -fno-strict-aliasing - type -P gmake &> /dev/null && export GNUMAKE=gmake - - local myeconfargs=( - --disable-freetype-config - --enable-biarch-config - --enable-shared - $(use_with brotli) - $(use_with bzip2) - $(use_with harfbuzz) - $(use_with png) - $(use_enable static-libs static) - - # avoid using libpng-config - LIBPNG_CFLAGS="$($(tc-getPKG_CONFIG) --cflags libpng)" - LIBPNG_LDFLAGS="$($(tc-getPKG_CONFIG) --libs libpng)" - ) - - case ${CHOST} in - mingw*|*-mingw*) ;; - # Workaround windows mis-detection: bug #654712 - # Have to do it for both ${CHOST}-windres and windres - *) myeconfargs+=( ac_cv_prog_RC= ac_cv_prog_ac_ct_RC= ) ;; - esac - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_compile() { - default - - if multilib_is_native_abi && use utils; then - einfo "Building utils" - # fix for Prefix, bug #339334 - emake \ - X11_PATH="${EPREFIX}/usr/$(get_libdir)" \ - FT2DEMOS=1 TOP_DIR_2="${WORKDIR}/ft2demos-${PV}" - fi -} - -multilib_src_install() { - default - - if multilib_is_native_abi && use utils; then - einfo "Installing utils" - rm "${WORKDIR}"/ft2demos-${PV}/bin/README || die - dodir /usr/bin #654780 - local ft2demo - for ft2demo in ../ft2demos-${PV}/bin/*; do - ./libtool --mode=install $(type -P install) -m 755 "${ft2demo}" \ - "${ED}"/usr/bin || die - done - fi -} - -multilib_src_install_all() { - if use fontforge; then - # Probably fontforge needs less but this way makes things simplier... - einfo "Installing internal headers required for fontforge" - local header - find src/truetype include/freetype/internal -name '*.h' | \ - while read header; do - mkdir -p "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die - cp ${header} "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die - done - fi - - dodoc docs/{CHANGES,CUSTOMIZE,DEBUG,INSTALL.UNIX,*.txt,PROBLEMS,TODO} - if [[ "${PV}" != 9999 ]] && use doc ; then - docinto html - dodoc -r docs/* - fi - - find "${ED}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${ED}" -name '*.a' -delete || die - fi -} diff --git a/media-libs/freetype/freetype-2.10.3.ebuild b/media-libs/freetype/freetype-2.10.3.ebuild deleted file mode 100644 index b8b52e17acc9..000000000000 --- a/media-libs/freetype/freetype-2.10.3.ebuild +++ /dev/null @@ -1,242 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic libtool multilib-build multilib-minimal toolchain-funcs - -DESCRIPTION="A high-quality and portable font engine" -HOMEPAGE="https://www.freetype.org/" -IUSE="X +adobe-cff bindist brotli bzip2 +cleartype_hinting debug fontforge harfbuzz infinality png static-libs utils" - -if [[ "${PV}" != 9999 ]] ; then - SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.xz - mirror://nongnu/freetype/${P/_/}.tar.xz - utils? ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.xz - mirror://nongnu/freetype/ft2demos-${PV}.tar.xz ) - doc? ( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.xz - mirror://nongnu/freetype/${PN}-doc-${PV}.tar.xz )" - 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 ~x86-winnt" - IUSE+=" doc" -else - inherit autotools git-r3 -fi - -LICENSE="|| ( FTL GPL-2+ )" -SLOT="2" -RESTRICT="!bindist? ( bindist )" # bug 541408 - -RDEPEND=" - >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] - brotli? ( app-arch/brotli[${MULTILIB_USEDEP}] ) - bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) - harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,${MULTILIB_USEDEP}] ) - png? ( >=media-libs/libpng-1.2.51:0=[${MULTILIB_USEDEP}] ) - utils? ( - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXau-1.0.7-r1[${MULTILIB_USEDEP}] - >=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}] - ) - )" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig -" -PDEPEND="infinality? ( media-libs/fontconfig-infinality )" - -PATCHES=( - "${FILESDIR}"/${PN}-2.10.3-sizeof-types.patch # 459966 -) - -_egit_repo_handler() { - if [[ "${PV}" == 9999 ]] ; then - local phase="${1}" - case ${phase} in - fetch|unpack) - :; - ;; - *) - die "Please use this function with either \"fetch\" or \"unpack\"" - ;; - esac - - local EGIT_REPO_URI - EGIT_REPO_URI="https://git.sv.nongnu.org/r/freetype/freetype2.git" - git-r3_src_${phase} - if use utils ; then - EGIT_REPO_URI="https://git.sv.nongnu.org/r/freetype/freetype2-demos.git" - local EGIT_CHECKOUT_DIR="${WORKDIR}/ft2demos-${PV}" - git-r3_src_${phase} - fi - else - default - fi -} - -src_fetch() { - _egit_repo_handler ${EBUILD_PHASE} -} - -src_unpack() { - _egit_repo_handler ${EBUILD_PHASE} -} - -src_prepare() { - if [[ "${PV}" == 9999 ]] ; then - # inspired by shipped autogen.sh script - eval $(sed -nf version.sed include/freetype/freetype.h) - pushd builds/unix &>/dev/null || die - sed -e "s;@VERSION@;$freetype_major$freetype_minor$freetype_patch;" \ - < configure.raw > configure.ac || die - # eautoheader produces broken ftconfig.in - eautoheader() { return 0 ; } - AT_M4DIR="." eautoreconf - unset freetype_major freetype_minor freetype_patch - popd &>/dev/null || die - fi - - default - - # This is the same as the 01 patch from infinality - sed '/AUX_MODULES += \(gx\|ot\)valid/s@^# @@' -i modules.cfg || die - - enable_option() { - sed -i -e "/#define $1/ { s:/\* ::; s: \*/:: }" \ - include/${PN}/config/ftoption.h \ - || die "unable to enable option $1" - } - - disable_option() { - sed -i -e "/#define $1/ { s:^:/* :; s:$: */: }" \ - include/${PN}/config/ftoption.h \ - || die "unable to disable option $1" - } - - # Will be the new default for >=freetype-2.7.0 - disable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 2" - - if use infinality && use cleartype_hinting; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING ( 1 | 2 )" - elif use infinality; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 1" - elif use cleartype_hinting; then - enable_option "TT_CONFIG_OPTION_SUBPIXEL_HINTING 2" - fi - - # Can be disabled with FREETYPE_PROPERTIES="pcf:no-long-family-names=1" - # via environment (new since v2.8) - enable_option PCF_CONFIG_OPTION_LONG_FAMILY_NAMES - - if ! use bindist; then - # See http://freetype.org/patents.html - # ClearType is covered by several Microsoft patents in the US - enable_option FT_CONFIG_OPTION_SUBPIXEL_RENDERING - fi - - if ! use adobe-cff; then - enable_option CFF_CONFIG_OPTION_OLD_ENGINE - fi - - if use debug; then - enable_option FT_DEBUG_LEVEL_TRACE - enable_option FT_DEBUG_MEMORY - fi - - if use utils; then - cd "${WORKDIR}/ft2demos-${PV}" || die - # Disable tests needing X11 when USE="-X". (bug #177597) - if ! use X; then - sed -i -e "/EXES\ +=\ ftdiff/ s:^:#:" Makefile || die - fi - cd "${S}" || die - fi - - # we need non-/bin/sh to run configure - if [[ -n ${CONFIG_SHELL} ]] ; then - sed -i -e "1s:^#![[:space:]]*/bin/sh:#!${CONFIG_SHELL}:" \ - "${S}"/builds/unix/configure || die - fi - - elibtoolize --patch-only -} - -multilib_src_configure() { - append-flags -fno-strict-aliasing - type -P gmake &> /dev/null && export GNUMAKE=gmake - - local myeconfargs=( - --disable-freetype-config - --enable-biarch-config - --enable-shared - $(use_with brotli) - $(use_with bzip2) - $(use_with harfbuzz) - $(use_with png) - $(use_enable static-libs static) - - # avoid using libpng-config - LIBPNG_CFLAGS="$($(tc-getPKG_CONFIG) --cflags libpng)" - LIBPNG_LDFLAGS="$($(tc-getPKG_CONFIG) --libs libpng)" - ) - - case ${CHOST} in - mingw*|*-mingw*) ;; - # Workaround windows mis-detection: bug #654712 - # Have to do it for both ${CHOST}-windres and windres - *) myeconfargs+=( ac_cv_prog_RC= ac_cv_prog_ac_ct_RC= ) ;; - esac - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_compile() { - default - - if multilib_is_native_abi && use utils; then - einfo "Building utils" - # fix for Prefix, bug #339334 - emake \ - X11_PATH="${EPREFIX}/usr/$(get_libdir)" \ - FT2DEMOS=1 TOP_DIR_2="${WORKDIR}/ft2demos-${PV}" - fi -} - -multilib_src_install() { - default - - if multilib_is_native_abi && use utils; then - einfo "Installing utils" - rm "${WORKDIR}"/ft2demos-${PV}/bin/README || die - dodir /usr/bin #654780 - local ft2demo - for ft2demo in ../ft2demos-${PV}/bin/*; do - ./libtool --mode=install $(type -P install) -m 755 "${ft2demo}" \ - "${ED}"/usr/bin || die - done - fi -} - -multilib_src_install_all() { - if use fontforge; then - # Probably fontforge needs less but this way makes things simplier... - einfo "Installing internal headers required for fontforge" - local header - find src/truetype include/freetype/internal -name '*.h' | \ - while read header; do - mkdir -p "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die - cp ${header} "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die - done - fi - - dodoc docs/{CHANGES,CUSTOMIZE,DEBUG,INSTALL.UNIX,*.txt,PROBLEMS,TODO} - if [[ "${PV}" != 9999 ]] && use doc ; then - docinto html - dodoc -r docs/* - fi - - find "${ED}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${ED}" -name '*.a' -delete || die - fi -} diff --git a/media-libs/hamlib/hamlib-3.3-r1.ebuild b/media-libs/hamlib/hamlib-3.3-r1.ebuild new file mode 100644 index 000000000000..fba1a537a608 --- /dev/null +++ b/media-libs/hamlib/hamlib-3.3-r1.ebuild @@ -0,0 +1,93 @@ +# 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 autotools python-single-r1 + +DESCRIPTION="Ham radio backend rig control libraries" +HOMEPAGE="https://www.hamlib.org" +SRC_URI="https://www.github.com/${PN}/${PN}/releases/download/${PVR}/${P}.tar.gz" + +LICENSE="LGPL-2 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc perl python tcl" + +RESTRICT="test" + +RDEPEND=" + =virtual/libusb-0* + dev-libs/libxml2 + sys-libs/readline:0= + perl? ( dev-lang/perl ) + python? ( ${PYTHON_DEPS} ) + tcl? ( dev-lang/tcl:0= )" + +DEPEND=" ${RDEPEND} + virtual/pkgconfig + dev-lang/swig + >=sys-devel/libtool-2.2 + doc? ( app-doc/doxygen )" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +PATCHES=( "${FILESDIR}"/hamlib-3.3-format-security.patch ) + +DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer TODO) + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + # fix hardcoded libdir paths + sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \ + -e "s#fix}/include#fix}/include/hamlib#" \ + hamlib.pc.in || die "sed failed" + + # Correct install target to whatever INSTALLDIRS says and use vendor + # installdirs everywhere (bug #611550) + sed -i -e "s#install_site#install#" \ + -e 's#MAKEFILE="Hamlib-pl.mk"#MAKEFILE="Hamlib-pl.mk" INSTALLDIRS=vendor#' \ + bindings/Makefile.am || die "sed failed patching for perl" + + # make building of documentation compatible with autotools-utils + sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed" + + eautoreconf + + eapply "${PATCHES}" + + eapply_user +} + +src_configure() { + econf \ + --libdir=/usr/$(get_libdir)/hamlib \ + --disable-static \ + --with-xml-support \ + $(use_with perl perl-binding) \ + $(use_with python python-binding) \ + $(use_with tcl tcl-binding) +} + +src_compile() { + emake + use doc && emake html +} + +src_install() { + emake DESTDIR="${D}" install + + use doc && HTML_DOCS=( doc/html/ ) + einstalldocs + + insinto /usr/$(get_libdir)/pkgconfig + doins hamlib.pc + + echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib + doenvd "${T}"/73hamlib +} diff --git a/media-libs/kodi-platform/Manifest b/media-libs/kodi-platform/Manifest index ddc1fabf6161..e69de29bb2d1 100644 --- a/media-libs/kodi-platform/Manifest +++ b/media-libs/kodi-platform/Manifest @@ -1,2 +0,0 @@ -DIST kodi-platform-18.0_pre20180301.tar.gz 8605 BLAKE2B 8486c0777373de75c0120b3e62ef1ff43107b36471696a7329f15fc62670f230737ee382695dbcb61ca5215fa2898cf3c6ecdfc0b48043b57f48cf15adc9fbf5 SHA512 35bb8d27db3b1e9debef647e02c2cf4ba7f2b2bdde07cb57eedd5859800d0614426d82f4be9cdeb11dba6576cad93e43095a05047411dcbcb749609d51f53ec7 -DIST kodi-platform-18.0_pre20190429.tar.gz 8616 BLAKE2B 424fa1da5f2dda5343ebe8414555382be6391d9467e73a07088a9e46674508bd83aeec59277f5d0b6e4bf0e1a6c56910a338f1774b17ef4ad21ca7b1e4198fef SHA512 acbe478c2167cbd90ef8cd0ba6ea9ac657a4140f5337e840e960358b26cb3d7880e52527c0d7f6d0ae8068b92b3a3cc5719110163ecfa4520469fc64b8e1b9b7 diff --git a/media-libs/kodi-platform/kodi-platform-18.0_pre20180301.ebuild b/media-libs/kodi-platform/kodi-platform-18.0_pre20180301.ebuild deleted file mode 100644 index 0af7be80322d..000000000000 --- a/media-libs/kodi-platform/kodi-platform-18.0_pre20180301.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${PN}.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - GIT_COMMIT="e8574b8" - SRC_URI="https://github.com/xbmc/${PN}/tarball/${GIT_COMMIT} -> ${P}.tar.gz" - S="${WORKDIR}/xbmc-kodi-platform-${GIT_COMMIT}" -fi - -DESCRIPTION="Kodi platform support library" -HOMEPAGE="https://kodi.tv" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =dev-libs/libplatform-2* - dev-libs/tinyxml - " - -RDEPEND="${DEPEND}" diff --git a/media-libs/kodi-platform/kodi-platform-18.0_pre20190429.ebuild b/media-libs/kodi-platform/kodi-platform-18.0_pre20190429.ebuild deleted file mode 100644 index f094c2323f18..000000000000 --- a/media-libs/kodi-platform/kodi-platform-18.0_pre20190429.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 - -inherit cmake - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${PN}.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - GIT_COMMIT="915da08" - SRC_URI="https://github.com/xbmc/${PN}/tarball/${GIT_COMMIT} -> ${P}.tar.gz" - S="${WORKDIR}/xbmc-kodi-platform-${GIT_COMMIT}" -fi - -DESCRIPTION="Kodi platform support library" -HOMEPAGE="https://kodi.tv" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =dev-libs/libplatform-2* - dev-libs/tinyxml - " - -RDEPEND="${DEPEND}" diff --git a/media-libs/libass/Manifest b/media-libs/libass/Manifest index 236d88b81ea1..3128500c2728 100644 --- a/media-libs/libass/Manifest +++ b/media-libs/libass/Manifest @@ -1 +1,2 @@ DIST libass-0.14.0.tar.xz 356256 BLAKE2B cf38d472003d6590c69da9347310386559b1ce13425d47505daca881b504453802a60cd553bbe478044764c108586668886372b79a61ccba42cdf49b2ed9ca74 SHA512 0f5fe5d7e662ee1d649981f829e5ef7a53457754f74faaed5679252a5a6769c8f267b6119cda922ebc6a8e5b5b331569f13813ac74881b4e94da7b2e8143a9e6 +DIST libass-0.15.0.tar.xz 367848 BLAKE2B 1ba444d9d718eb364cf0d3ee743404adda36384432dcdfb350db59c1769042b7bbedf1610ecc1b89c2a6c98921710d71ceeac9888371e0774c30f4701746096a SHA512 067ed519e64da7e2e45436bb09e390f1a77d966aeb9420729f36c9725d89491655ead69eb61b43f3220b8ff8f9de3891911b62757466f843ab13ee7149d88459 diff --git a/media-libs/libass/libass-0.15.0.ebuild b/media-libs/libass/libass-0.15.0.ebuild new file mode 100644 index 000000000000..a2a16f40d522 --- /dev/null +++ b/media-libs/libass/libass-0.15.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-minimal + +DESCRIPTION="Library for SSA/ASS subtitles rendering" +HOMEPAGE="https://github.com/libass/libass" +SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0/9" # subslot = libass soname version +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="+fontconfig" + +BDEPEND=" + amd64? ( dev-lang/nasm ) + x86? ( dev-lang/nasm ) + virtual/pkgconfig" +RDEPEND=" + >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}] + >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] + >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] + >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] + fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) +" +DEPEND="${RDEPEND}" + +DOCS="Changelog" + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable fontconfig) \ + --disable-static \ + --disable-require-system-font-provider +} + +multilib_src_install_all() { + einstalldocs + find "${D}" -name '*.la' -type f -delete || die +} diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest index 139f02bb801a..dab2f33cb6eb 100644 --- a/media-libs/libplacebo/Manifest +++ b/media-libs/libplacebo/Manifest @@ -1,2 +1,2 @@ DIST libplacebo-v2.43.0.tar.gz 356219 BLAKE2B b5f36dc4b7a0b35a47efc64064d0d7e9cf023dea2974fe355d29a6c835efa67b6f50ec500fa3ce50b932fef5d035a470f0adc8377cd274c5904fb4ffc303bb0c SHA512 c57463a9fcde1b259620fcb7ce6470b0d06e45ed837b4eca35ff0931e4c440ef613590485119ed21237f9cf3c3cdb617253f17699d9d252070f30d5dcbc233ab -DIST libplacebo-v2.72.0.tar.gz 396124 BLAKE2B 8a9829add4cb8ffe94c0dc8e3c8f64e465992bb21aa8739086986b061e53fc2f0d00c5a512ad94f0b4998fe3e3bd784c0b8df3bef1ffc5ed92090a75c7e31ad7 SHA512 829d8805f8a52e082bf7c33f5be8a280480aa3cfbac73966cdf4ddaf0a01f25cc357b98a04fe85c82a53718b5d570a852edeafbb0cb12312c73cb23295fb9bd9 +DIST libplacebo-v2.72.2.tar.gz 398314 BLAKE2B 59ce83d23c22fa1bc10d82b01b531ee82e3e40bf062adf7ea1d276a65c683c448797348a7a9ce234f92e0fd6c699903ae70f15df5d2e2779bec32db6b0b769e6 SHA512 0cb100350dbc81566a8363b0265bf89de8569b0313d1f1aa8ba621e39d7ee43a47ec9ab7827d01fdd2133c357983002412e67c2b2ba3616bd570f16e8e3ba135 diff --git a/media-libs/libplacebo/libplacebo-2.72.0.ebuild b/media-libs/libplacebo/libplacebo-2.72.2.ebuild similarity index 100% rename from media-libs/libplacebo/libplacebo-2.72.0.ebuild rename to media-libs/libplacebo/libplacebo-2.72.2.ebuild diff --git a/media-libs/libpng/libpng-1.6.37-r2.ebuild b/media-libs/libpng/libpng-1.6.37-r2.ebuild index fa7fdaf258ac..608079236331 100644 --- a/media-libs/libpng/libpng-1.6.37-r2.ebuild +++ b/media-libs/libpng/libpng-1.6.37-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="libpng2" SLOT="0/16" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~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 ~x86-winnt" +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 ~x86-winnt" IUSE="apng cpu_flags_arm_neon cpu_flags_x86_sse static-libs" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]" diff --git a/media-libs/lilv/Manifest b/media-libs/lilv/Manifest index 632aed8455a1..a73d0d2141a9 100644 --- a/media-libs/lilv/Manifest +++ b/media-libs/lilv/Manifest @@ -1,2 +1 @@ DIST lilv-0.24.10.tar.bz2 443795 BLAKE2B a316c0aae8f93a6104ad46e9e93cd3948b4596920a9bb7f1ab5bfe596428aa43e45413f79cd9e7c094ca3239e4811bd391015f17be5c059a54b0a050aff1e964 SHA512 1dfd4fef19537686b63a4e7df45e3b1a7c4a658acc21d5646daba4d3bd5676513857b3f437b89f1a06232516433ef155772d19625c33d49d13ada37a965982cf -DIST lilv-0.24.8.tar.bz2 545545 BLAKE2B 606beb68d6e277dfea85e3d2e27b58adf22f0a47a91583e4f1cd85649f237e75fac9b397eb07be69b5a278d02346d58bdf35c4c8fb248e4899a4fc9b05288c23 SHA512 f2b2638372a8280041f6e88e2077f2109f89dad6feedb9d07a88c6b5a05c37b62112f5d03282da4335ddd0d14339cfb49ad96a3df3de310265a40c24718be192 diff --git a/media-libs/lilv/lilv-0.24.10.ebuild b/media-libs/lilv/lilv-0.24.10.ebuild index 57fedb1986ac..24f31b85a9ec 100644 --- a/media-libs/lilv/lilv-0.24.10.ebuild +++ b/media-libs/lilv/lilv-0.24.10.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2" LICENSE="ISC" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="doc +dyn-manifest static-libs test" RESTRICT="!test? ( test )" diff --git a/media-libs/lilv/lilv-0.24.8-r1.ebuild b/media-libs/lilv/lilv-0.24.8-r1.ebuild deleted file mode 100644 index bfcd8e3ac70b..000000000000 --- a/media-libs/lilv/lilv-0.24.8-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7,8} ) -PYTHON_REQ_USE='threads(+)' - -inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal - -DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications" -HOMEPAGE="http://drobilla.net/software/lilv/" -SRC_URI="http://download.drobilla.net/${P}.tar.bz2" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="doc +dyn-manifest static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] - >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] - media-libs/libsndfile - >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] - media-libs/sratom[${MULTILIB_USEDEP}] -" -DEPEND=" - ${RDEPEND} - ${PYTHON_DEPS} - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-python/unittest2 ) -" - -src_prepare() { - default - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die - multilib_copy_sources -} - -multilib_src_configure() { - waf-utils_src_configure \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --no-bash-completion \ - $(multilib_native_usex doc --docs "") \ - $(usex test --test "") \ - $(usex static-libs --static "") \ - $(usex dyn-manifest --dyn-manifest "") -} - -multilib_src_compile() { - ./waf build || die -} - -multilib_src_test() { - ./waf test || die -} - -multilib_src_install() { - waf-utils_src_install -} - -multilib_src_install_all() { - sed -i "/lv2jack/d" utils/lilv.bash_completion - newbashcomp utils/lilv.bash_completion lv2info - - dodir /etc/env.d - echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" - - python_optimize -} diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest index f1a6d7732d6b..0a8bac306a53 100644 --- a/media-libs/mesa/Manifest +++ b/media-libs/mesa/Manifest @@ -2,3 +2,4 @@ DIST mesa-20.1.10.tar.xz 12918420 BLAKE2B 408f4bc6eb0dc11199cd161d6914b77cb57313 DIST mesa-20.2.1.tar.xz 13777748 BLAKE2B ee8b9896b9cba99e6c2ae0ab6ec3c92cba6f53e4277df708aa50a97c2752e8fc2e6cd998a7e27336124665c15aa21b7af9ce012406a66b9cfaaa59a8afa81c0f SHA512 5d609359754db3e3679bffd5306c1f1d1cf46a2ea98428a9451fe0d99bbf73da863c5d94e6561712cd2012ad13615666cf3d712e54f379b34c091fead39d4795 DIST mesa-20.2.2.tar.xz 13809384 BLAKE2B e18b7a107979c307d51b761f8d7306a4d1b5e3b934e3c7b3d267c9fa795a770263b60791fa8f2a6aa3697c8092c718e90fe0101d7cdc94cec464c4d315293098 SHA512 36673a44fad8c6db3516b23b75825a52df520b9fe1387160301dd5051f420ebf0d1c7b4f8ff96a5547b79c2ba42fd782305ae23ac956f688b695c07b8fe73192 DIST mesa-20.3.0-rc1.tar.xz 14061760 BLAKE2B de91a4a991dcaecb8c31120e11d73b99dec994f7114d3c38f851193f0f7264a41917174c3895e6b9eecded1267e78ecbc311c45ca5a548959d40755db75d6133 SHA512 6da8ff9360da2d92e06ea722035d31b2fe68d360d6a64ca8209376cf62933f8e42a7b632aba5d13834fab1467dce6a1dca9d52a54a65c5c5e1b018905b0038b3 +DIST mesa-20.3.0-rc2.tar.xz 14085024 BLAKE2B c87e3e48ed1dfec2da4fa6bbb549fc925d806f8681e8dc1b3fc3b54eec4864402bb34009a95998c1fc818ddb7d1df2d51347df3d20ec9e4364245ae4f750f16d SHA512 1d94100550b60a0dc6e984d898114b11b8656e2954e946478a2732cec678d1e6a0f07bb5bcdc856facf7e274aea52cfc2b4228c064eadc7bbc00147c6b17cc0e diff --git a/media-libs/mesa/mesa-20.3.0_rc2.ebuild b/media-libs/mesa/mesa-20.3.0_rc2.ebuild new file mode 100644 index 000000000000..1da56517de7e --- /dev/null +++ b/media-libs/mesa/mesa-20.3.0_rc2.ebuild @@ -0,0 +1,553 @@ +# 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} ) + +inherit llvm meson multilib-minimal python-any-r1 linux-info + +OPENGL_DIR="xorg-x11" + +MY_P="${P/_/-}" + +DESCRIPTION="OpenGL-like graphic library for Linux" +HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git" + inherit git-r3 +else + SRC_URI="https://archive.mesa3d.org/${MY_P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="MIT" +SLOT="0" +RESTRICT=" + !test? ( test ) +" + +RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi" +VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 intel iris lima nouveau panfrost v3d vc4 virgl vivante vmware" +for card in ${VIDEO_CARDS}; do + IUSE_VIDEO_CARDS+=" video_cards_${card}" +done + +IUSE="${IUSE_VIDEO_CARDS} + +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 +llvm + lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan + vulkan-overlay wayland +X xa xvmc zink +zstd" + +REQUIRED_USE=" + d3d9? ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 video_cards_radeonsi video_cards_nouveau video_cards_vmware ) ) + gles1? ( egl ) + gles2? ( egl ) + vulkan? ( dri3 + video_cards_radeonsi? ( llvm ) ) + vulkan-overlay? ( vulkan ) + wayland? ( egl gbm ) + video_cards_freedreno? ( gallium ) + video_cards_intel? ( classic ) + video_cards_i915? ( || ( classic gallium ) ) + video_cards_i965? ( classic ) + video_cards_iris? ( gallium ) + video_cards_lima? ( gallium ) + video_cards_nouveau? ( || ( classic gallium ) ) + video_cards_panfrost? ( gallium ) + video_cards_radeon? ( || ( classic gallium ) + gallium? ( x86? ( llvm ) amd64? ( llvm ) ) ) + video_cards_r100? ( classic ) + video_cards_r200? ( classic ) + video_cards_r300? ( gallium x86? ( llvm ) amd64? ( llvm ) ) + video_cards_r600? ( gallium ) + video_cards_radeonsi? ( gallium llvm ) + video_cards_v3d? ( gallium ) + video_cards_vc4? ( gallium ) + video_cards_virgl? ( gallium ) + video_cards_vivante? ( gallium gbm ) + video_cards_vmware? ( gallium ) + xa? ( X ) + xvmc? ( X ) + zink? ( gallium vulkan ) +" + +LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.100" +RDEPEND=" + >=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}] + >=media-libs/libglvnd-1.3.2[X?,${MULTILIB_USEDEP}] + >=sys-libs/zlib-1.2.8[${MULTILIB_USEDEP}] + gallium? ( + unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] ) + llvm? ( + video_cards_radeonsi? ( + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + video_cards_r600? ( + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + video_cards_radeon? ( + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + ) + lm-sensors? ( sys-apps/lm-sensors:=[${MULTILIB_USEDEP}] ) + opencl? ( + >=virtual/opencl-3[${MULTILIB_USEDEP}] + dev-libs/libclc + virtual/libelf:0=[${MULTILIB_USEDEP}] + ) + vaapi? ( + >=x11-libs/libva-1.7.3:=[${MULTILIB_USEDEP}] + ) + vdpau? ( >=x11-libs/libvdpau-1.1:=[${MULTILIB_USEDEP}] ) + xvmc? ( >=x11-libs/libXvMC-1.0.8:=[${MULTILIB_USEDEP}] ) + ) + selinux? ( sys-libs/libselinux[${MULTILIB_USEDEP}] ) + wayland? ( + >=dev-libs/wayland-1.15.0:=[${MULTILIB_USEDEP}] + >=dev-libs/wayland-protocols-1.8 + ) + ${LIBDRM_DEPSTRING}[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,${MULTILIB_USEDEP}] + video_cards_intel? ( + !video_cards_i965? ( ${LIBDRM_DEPSTRING}[video_cards_intel] ) + ) + video_cards_i915? ( ${LIBDRM_DEPSTRING}[video_cards_intel] ) + vulkan-overlay? ( dev-util/glslang:0=[${MULTILIB_USEDEP}] ) + X? ( + >=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}] + >=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}] + >=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}] + >=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}] + >=x11-libs/libXxf86vm-1.1.3:=[${MULTILIB_USEDEP}] + >=x11-libs/libxcb-1.13:=[${MULTILIB_USEDEP}] + x11-libs/libXfixes:=[${MULTILIB_USEDEP}] + ) + zink? ( media-libs/vulkan-loader:=[${MULTILIB_USEDEP}] ) + zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) +" +for card in ${RADEON_CARDS}; do + RDEPEND="${RDEPEND} + video_cards_${card}? ( ${LIBDRM_DEPSTRING}[video_cards_radeon] ) + " +done +RDEPEND="${RDEPEND} + video_cards_radeonsi? ( ${LIBDRM_DEPSTRING}[video_cards_amdgpu] ) +" + +# Please keep the LLVM dependency block separate. Since LLVM is slotted, +# we need to *really* make sure we're not pulling one than more slot +# simultaneously. +# +# How to use it: +# 1. List all the working slots (with min versions) in ||, newest first. +# 2. Update the := to specify *max* version, e.g. < 10. +# 3. Specify LLVM_MAX_SLOT, e.g. 9. +LLVM_MAX_SLOT="11" +LLVM_DEPSTR=" + || ( + sys-devel/llvm:11[${MULTILIB_USEDEP}] + sys-devel/llvm:10[${MULTILIB_USEDEP}] + sys-devel/llvm:9[${MULTILIB_USEDEP}] + ) + =dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") +" + +S="${WORKDIR}/${MY_P}" +EGIT_CHECKOUT_DIR=${S} + +QA_WX_LOAD=" +x86? ( + usr/lib*/libglapi.so.0.0.0 + usr/lib*/libGLESv1_CM.so.1.1.0 + usr/lib*/libGLESv2.so.2.0.0 + usr/lib*/libGL.so.1.2.0 + usr/lib*/libOSMesa.so.8.0.0 + usr/lib/libGLX_mesa.so.0.0.0 +)" + +llvm_check_deps() { + local flags=${MULTILIB_USEDEP} + if use video_cards_r600 || use video_cards_radeon || use video_cards_radeonsi + then + flags+=",llvm_targets_AMDGPU(-)" + fi + + if use opencl; then + has_version "sys-devel/clang:${LLVM_SLOT}[${flags}]" || return 1 + fi + has_version "sys-devel/llvm:${LLVM_SLOT}[${flags}]" +} + +pkg_pretend() { + if use vulkan; then + if ! use video_cards_i965 && + ! use video_cards_iris && + ! use video_cards_radeonsi && + ! use video_cards_v3d; then + ewarn "Ignoring USE=vulkan since VIDEO_CARDS does not contain i965, iris, radeonsi, or v3d" + fi + fi + + if use opencl; then + if ! use video_cards_r600 && + ! use video_cards_radeonsi; then + ewarn "Ignoring USE=opencl since VIDEO_CARDS does not contain r600 or radeonsi" + fi + fi + + if use vaapi; then + if ! use video_cards_r600 && + ! use video_cards_radeonsi && + ! use video_cards_nouveau; then + ewarn "Ignoring USE=vaapi since VIDEO_CARDS does not contain r600, radeonsi, or nouveau" + fi + fi + + if use vdpau; then + if ! use video_cards_r300 && + ! use video_cards_r600 && + ! use video_cards_radeonsi && + ! use video_cards_nouveau; then + ewarn "Ignoring USE=vdpau since VIDEO_CARDS does not contain r300, r600, radeonsi, or nouveau" + fi + fi + + if use xa; then + if ! use video_cards_freedreno && + ! use video_cards_nouveau && + ! use video_cards_vmware; then + ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, nouveau, or vmware" + fi + fi + + if use xvmc; then + if ! use video_cards_r600 && + ! use video_cards_nouveau; then + ewarn "Ignoring USE=xvmc since VIDEO_CARDS does not contain r600 or nouveau" + fi + fi + + if ! use gallium; then + use lm-sensors && ewarn "Ignoring USE=lm-sensors since USE does not contain gallium" + use llvm && ewarn "Ignoring USE=llvm since USE does not contain gallium" + use opencl && ewarn "Ignoring USE=opencl since USE does not contain gallium" + use vaapi && ewarn "Ignoring USE=vaapi since USE does not contain gallium" + use vdpau && ewarn "Ignoring USE=vdpau since USE does not contain gallium" + use unwind && ewarn "Ignoring USE=unwind since USE does not contain gallium" + use xa && ewarn "Ignoring USE=xa since USE does not contain gallium" + use xvmc && ewarn "Ignoring USE=xvmc since USE does not contain gallium" + fi + + if ! use llvm; then + use opencl && ewarn "Ignoring USE=opencl since USE does not contain llvm" + fi +} + +python_check_deps() { + has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" +} + +pkg_setup() { + # warning message for bug 459306 + if use llvm && has_version sys-devel/llvm[!debug=]; then + ewarn "Mismatch between debug USE flags in media-libs/mesa and sys-devel/llvm" + ewarn "detected! This can cause problems. For details, see bug 459306." + fi + + if use video_cards_i965 || + use video_cards_iris || + use video_cards_radeonsi; then + CONFIG_CHECK="~CHECKPOINT_RESTORE" + linux-info_pkg_setup + fi + + if use gallium && use llvm; then + llvm_pkg_setup + fi + python-any-r1_pkg_setup +} + +multilib_src_configure() { + local emesonargs=() + + if use classic; then + # Intel code + dri_driver_enable video_cards_i915 i915 + dri_driver_enable video_cards_i965 i965 + if ! use video_cards_i915 && \ + ! use video_cards_i965; then + dri_driver_enable video_cards_intel i915 i965 + fi + + # Nouveau code + dri_driver_enable video_cards_nouveau nouveau + + # ATI code + dri_driver_enable video_cards_r100 r100 + dri_driver_enable video_cards_r200 r200 + if ! use video_cards_r100 && \ + ! use video_cards_r200; then + dri_driver_enable video_cards_radeon r100 r200 + fi + fi + + local platforms + use X && platforms+="x11" + use wayland && platforms+=",wayland" + [[ -n $platforms ]] && emesonargs+=(-Dplatforms=${platforms#,}) + + if use gallium; then + emesonargs+=( + $(meson_feature llvm) + $(meson_feature lm-sensors lmsensors) + $(meson_feature unwind libunwind) + ) + + if use video_cards_iris || + use video_cards_r300 || + use video_cards_r600 || + use video_cards_radeonsi || + use video_cards_nouveau || + use video_cards_vmware; then + emesonargs+=($(meson_use d3d9 gallium-nine)) + else + emesonargs+=(-Dgallium-nine=false) + fi + + if use video_cards_r600 || + use video_cards_radeonsi || + use video_cards_nouveau; then + emesonargs+=($(meson_feature vaapi gallium-va)) + use vaapi && emesonargs+=( -Dva-libs-path="${EPREFIX}"/usr/$(get_libdir)/va/drivers ) + else + emesonargs+=(-Dgallium-va=disabled) + fi + + if use video_cards_r300 || + use video_cards_r600 || + use video_cards_radeonsi || + use video_cards_nouveau; then + emesonargs+=($(meson_feature vdpau gallium-vdpau)) + else + emesonargs+=(-Dgallium-vdpau=disabled) + fi + + if use video_cards_freedreno || + use video_cards_nouveau || + use video_cards_vmware; then + emesonargs+=($(meson_feature xa gallium-xa)) + else + emesonargs+=(-Dgallium-xa=disabled) + fi + + if use video_cards_r600 || + use video_cards_nouveau; then + emesonargs+=($(meson_feature xvmc gallium-xvmc)) + else + emesonargs+=(-Dgallium-xvmc=disabled) + fi + + if use video_cards_freedreno || + use video_cards_lima || + use video_cards_panfrost || + use video_cards_v3d || + use video_cards_vc4 || + use video_cards_vivante; then + gallium_enable -- kmsro + fi + + gallium_enable video_cards_lima lima + gallium_enable video_cards_panfrost panfrost + gallium_enable video_cards_v3d v3d + gallium_enable video_cards_vc4 vc4 + gallium_enable video_cards_vivante etnaviv + gallium_enable video_cards_vmware svga + gallium_enable video_cards_nouveau nouveau + gallium_enable zink zink + + # Only one i915 driver (classic vs gallium). Default to classic. + if ! use classic; then + gallium_enable video_cards_i915 i915 + if ! use video_cards_i915 && \ + ! use video_cards_i965; then + gallium_enable video_cards_intel i915 + fi + fi + + gallium_enable video_cards_iris iris + + gallium_enable video_cards_r300 r300 + gallium_enable video_cards_r600 r600 + gallium_enable video_cards_radeonsi radeonsi + if ! use video_cards_r300 && \ + ! use video_cards_r600; then + gallium_enable video_cards_radeon r300 r600 + fi + + gallium_enable video_cards_freedreno freedreno + gallium_enable video_cards_virgl virgl + + # opencl stuff + emesonargs+=( + -Dgallium-opencl="$(usex opencl icd disabled)" + ) + fi + + if use vulkan; then + vulkan_enable video_cards_i965 intel + vulkan_enable video_cards_iris intel + vulkan_enable video_cards_radeonsi amd + vulkan_enable video_cards_v3d broadcom + fi + + if use gallium; then + gallium_enable -- swrast + emesonargs+=( -Dosmesa=$(usex osmesa gallium none) ) + else + dri_driver_enable -- swrast + emesonargs+=( -Dosmesa=$(usex osmesa classic none) ) + fi + + driver_list() { + local drivers="$(sort -u <<< "${1// /$'\n'}")" + echo "${drivers//$'\n'/,}" + } + + emesonargs+=( + $(meson_use test build-tests) + -Dglx=$(usex X dri disabled) + -Dglvnd=true + -Dshared-glapi=true + $(meson_feature dri3) + $(meson_feature egl) + $(meson_feature gbm) + $(meson_feature gles1) + $(meson_feature gles2) + $(meson_use selinux) + $(meson_feature zstd) + -Dvalgrind=$(usex valgrind auto false) + -Ddri-drivers=$(driver_list "${DRI_DRIVERS[*]}") + -Dgallium-drivers=$(driver_list "${GALLIUM_DRIVERS[*]}") + -Dvulkan-drivers=$(driver_list "${VULKAN_DRIVERS[*]}") + $(meson_use vulkan vulkan-device-select-layer) + $(meson_use vulkan-overlay vulkan-overlay-layer) + --buildtype $(usex debug debug plain) + -Db_ndebug=$(usex debug false true) + ) + meson_src_configure +} + +multilib_src_compile() { + meson_src_compile +} + +multilib_src_install() { + meson_src_install +} + +multilib_src_install_all() { + einstalldocs +} + +multilib_src_test() { + meson_src_test -t 100 +} + +# $1 - VIDEO_CARDS flag (check skipped for "--") +# other args - names of DRI drivers to enable +dri_driver_enable() { + if [[ $1 == -- ]] || use $1; then + shift + DRI_DRIVERS+=("$@") + fi +} + +gallium_enable() { + if [[ $1 == -- ]] || use $1; then + shift + GALLIUM_DRIVERS+=("$@") + fi +} + +vulkan_enable() { + if [[ $1 == -- ]] || use $1; then + shift + VULKAN_DRIVERS+=("$@") + fi +} diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index b2b79088f3cc..1da56517de7e 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -74,7 +74,6 @@ REQUIRED_USE=" LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.100" RDEPEND=" - !app-eselect/eselect-mesa >=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}] >=media-libs/libglvnd-1.3.2[X?,${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8[${MULTILIB_USEDEP}] @@ -527,7 +526,7 @@ multilib_src_install_all() { } multilib_src_test() { - meson test -v -C "${BUILD_DIR}" -t 100 || die "tests failed" + meson_src_test -t 100 } # $1 - VIDEO_CARDS flag (check skipped for "--") diff --git a/media-libs/mutagen/mutagen-1.45.1.ebuild b/media-libs/mutagen/mutagen-1.45.1.ebuild index 852684da21f4..eef29499eb0b 100644 --- a/media-libs/mutagen/mutagen-1.45.1.ebuild +++ b/media-libs/mutagen/mutagen-1.45.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/quodlibet/mutagen/releases/download/release-${PV}/${ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="doc test" # TODO: Missing support for >=dev-python/eyeD3-0.7 API diff --git a/media-libs/opencolorio/files/opencolorio-1.1.1-fix-self-assign-clang.patch b/media-libs/opencolorio/files/opencolorio-1.1.1-fix-self-assign-clang.patch new file mode 100644 index 000000000000..c6193277458f --- /dev/null +++ b/media-libs/opencolorio/files/opencolorio-1.1.1-fix-self-assign-clang.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/754966 +https://github.com/AcademySoftwareFoundation/OpenColorIO/issues/563 +Fixed upstream in a larger set of changes. +--- a/src/core/Config.cpp ++++ b/src/core/Config.cpp +@@ -330,7 +330,7 @@ + sanitytext_ = rhs.sanitytext_; + + cacheids_ = rhs.cacheids_; +- cacheidnocontext_ = cacheidnocontext_; ++ cacheidnocontext_ = rhs.cacheidnocontext_; + } + return *this; + } diff --git a/media-libs/opencolorio/opencolorio-1.1.1.ebuild b/media-libs/opencolorio/opencolorio-1.1.1.ebuild index 8286b611ee7b..f5179fea4002 100644 --- a/media-libs/opencolorio/opencolorio-1.1.1.ebuild +++ b/media-libs/opencolorio/opencolorio-1.1.1.ebuild @@ -52,6 +52,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.1.0-yaml-cpp-0.6.patch" "${FILESDIR}/${PN}-1.1.0-remove-Werror.patch" "${FILESDIR}/${PN}-1.1.1-yaml-cpp-boost-check.patch" + "${FILESDIR}/${P}-fix-self-assign-clang.patch" ) pkg_setup() { diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index 8e05c8d27106..4517d7dd6b08 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/kodi-audiodecoder-modplug/Manifest b/media-plugins/kodi-audiodecoder-modplug/Manifest index 06b182c645c0..f1b4ac6e82da 100644 --- a/media-plugins/kodi-audiodecoder-modplug/Manifest +++ b/media-plugins/kodi-audiodecoder-modplug/Manifest @@ -1,2 +1 @@ -DIST kodi-audiodecoder-modplug-2.0.3.tar.gz 77468 BLAKE2B 37d92be2eac6723324f9c2f01fccb95c5f34ffda34b6021475d79be009d27582f3c7f898d7b571e77223fde63fb5577383b81a355b1ada461763aaaf20a3acc3 SHA512 934cd62f48d63b5ae707f85c4f9f1b5dcabc97d1393d1b079b1453e28d088f9cf6d4a404584e1f5cac6ad5769121f798df69bcd88cceaa855b56bac84ead4c4e DIST kodi-audiodecoder-modplug-3.0.0.tar.gz 85106 BLAKE2B 8417d84510462e13cd25fca068552cf3152ef74e6ef55e144a7c44740c6fb43ecd74c6ec9057c24d844f9fca22b71a14dc36e6b103a3c9c5023919a620b524c9 SHA512 0b84ddb0134dec2e5ea61ad40c34f65148038cda106b8454988d7b3a73f79d44316299f38a672c5556b05ed776d51ae643073bb7a8b7f9f702a8b67c02698cc3 diff --git a/media-plugins/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug-2.0.3.ebuild b/media-plugins/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug-2.0.3.ebuild deleted file mode 100644 index 6c879cd0bf24..000000000000 --- a/media-plugins/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug-2.0.3.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 - -inherit cmake kodi-addon - -DESCRIPTION="Modplug decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.modplug" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.modplug.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~arm64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.modplug/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.modplug-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libmodplug-0.8.9.0 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-nosefart/Manifest b/media-plugins/kodi-audiodecoder-nosefart/Manifest index fc974b3d74f6..207b4069684b 100644 --- a/media-plugins/kodi-audiodecoder-nosefart/Manifest +++ b/media-plugins/kodi-audiodecoder-nosefart/Manifest @@ -1,4 +1 @@ -DIST kodi-audiodecoder-nosefart-2.0.0.tar.gz 61006 BLAKE2B 8c3499b8820eb124f6532f722fae39c10880b31d58dce81a1170ae18005047b2ecdb7f9963e1a957de61beaf4a89d682580ea62e739bdc3045e0cd6402685394 SHA512 8dfcae6e81553bccb093dac2aefdbea6e405ebcf3c3505b4647a4970f46ec8aa2f45690a0fd73ff356d074c86c670ab0a60ff5a049dd1e54de3100457fbae935 -DIST kodi-audiodecoder-nosefart-2.0.1.tar.gz 92746 BLAKE2B 0af1578e0f09c4dfbbbddec834522c433922deccbc7f55c4faa4b5b5a7b4fb5563daea77faf745f5f8c61f4d49f168b1e5dee37a2e7d19f2f7d4aa9d685d69ef SHA512 78abac0d6ff2458e5bd3c976d432d5029c07d738dc03f861e068407b60d5ef2f94d7870d803436e8eacd87fdbd47b274e0bdc3367201772cd05084c1ebc8a67c -DIST kodi-audiodecoder-nosefart-2.0.2.tar.gz 93194 BLAKE2B f8521331857c8a0d739f596000050869e7760b42c2611a3ef7d626c8b4d23514a53e1d5fa5b9cd88abada49791007cf74ef2ff99cf8c34e683a7fb4e2b4e9e42 SHA512 b0d7767562d3ad9305af76e436292f877cc51cad7a55c93c71af64724ae105596a0575d92db1e9e85da9cac06b968569f788ee9314539368d3f663d3b6d7ee54 DIST kodi-audiodecoder-nosefart-3.0.0.tar.gz 99808 BLAKE2B 47dc58653893b5932c65ed01505d607f3bbbe3f5a7ed64292ed496431d3e1d2324662d16da6d02eb6b21962e624188e78fc3e684007d4902c77f2a395975f79a SHA512 8267a3f99a7816beea527a9b22a1dbdb48a2756de5f03f72b6126cba1f7d6579bd51ea42a8a36f97724562fca3122d512e8415f370c2621c7d38034e9af3a863 diff --git a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.0.ebuild b/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.0.ebuild deleted file mode 100644 index 5bceea5784f2..000000000000 --- a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Nosefart decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.nosefart" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.nosefart" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.nosefart/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.nosefart-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.1.ebuild b/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.1.ebuild deleted file mode 100644 index 9a00e6d07029..000000000000 --- a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Nosefart decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.nosefart" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.nosefart" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.nosefart/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.nosefart-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.2.ebuild b/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.2.ebuild deleted file mode 100644 index 9a00e6d07029..000000000000 --- a/media-plugins/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart-2.0.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Nosefart decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.nosefart" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.nosefart" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.nosefart/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.nosefart-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-sidplay/Manifest b/media-plugins/kodi-audiodecoder-sidplay/Manifest index 69349a29744e..1744529ff632 100644 --- a/media-plugins/kodi-audiodecoder-sidplay/Manifest +++ b/media-plugins/kodi-audiodecoder-sidplay/Manifest @@ -1,3 +1 @@ -DIST kodi-audiodecoder-sidplay-1.2.2.tar.gz 26125 BLAKE2B 0c6076df3ba167423daccc32feb35509e9cbef9e74499db45e71c77fc51a3484a22c217d49b440d10e169ab2bc905a10875a2f6f38cea294774c8e2312b83b74 SHA512 6af355f3ef3cf11f8d95763f9676d8f8ebadb2f9d2fa4cdb17db75ab29bfeb26d6b56e4d1aceced0742319af943860f3cfef4d0723d62d8ea520bbe529bdf1a9 -DIST kodi-audiodecoder-sidplay-2.1.3.tar.gz 31160 BLAKE2B f67f3c9c330e66f2128945ee4d70aedb981f08cd75dfa50618d1e1d1d1beba5558d6c43306897459050de530dd0c24b2b6957e51916b13c51e298aeab147a651 SHA512 0ecf3e2905cf417efa3403afa43a28ee45a65bab8b261e6f3f3322281414a7a732286e60c0bcfe93ebee821dd1cc3123d12412948a5ae72893fdbd2b6d3d8236 DIST kodi-audiodecoder-sidplay-3.0.0.tar.gz 33311 BLAKE2B d600ffbd69baccca33b47d6af57d4e0a78f4d08da9390c6a92620962ba91464600deff69b62cfdaec35f24a0db8da4d1332f8902293cc041e7c543f659098a2f SHA512 6e17a4f7a1095595081fcc76e58ac22994b50b3a1e1d4599524029a0d4058b8583a6f0fc0a32ecb6c4b9a159bf74cf28fbd7166eea587575bdd5dbe6d8aebe69 diff --git a/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.2.2.ebuild b/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.2.2.ebuild deleted file mode 100644 index 4ca323210424..000000000000 --- a/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.2.2.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 - -inherit cmake kodi-addon - -DESCRIPTION="SidPlay decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.sidplay" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.sidplay.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.sidplay/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.sidplay-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - media-libs/libsidplay:2" - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-2.1.3.ebuild b/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-2.1.3.ebuild deleted file mode 100644 index cbdf4dc859bc..000000000000 --- a/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-2.1.3.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 - -inherit cmake kodi-addon - -DESCRIPTION="SidPlay decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.sidplay" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.sidplay.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.sidplay/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.sidplay-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - media-libs/libsidplay:2" - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audiodecoder-snesapu/Manifest b/media-plugins/kodi-audiodecoder-snesapu/Manifest index 1995c349a48d..2799078ff3ce 100644 --- a/media-plugins/kodi-audiodecoder-snesapu/Manifest +++ b/media-plugins/kodi-audiodecoder-snesapu/Manifest @@ -1,5 +1 @@ -DIST kodi-audiodecoder-snesapu-2.0.0.tar.gz 39499 BLAKE2B 5185eaa4e658a443aad400403be827289807b804ba574907a14b0bf5ee3cb5877cd360a0f100f75b309c9214047236723a079b0172d916ca9c4ebea740a5628e SHA512 d1b164a063ae983c49e24a48ed7fdba10f39343e1ed5aad60e0e141f20c8f3bd8115359ccc97bf4583fac7bc1fd9b1dedc800e34cb3d9ee8749c345396696724 -DIST kodi-audiodecoder-snesapu-2.0.1.tar.gz 70042 BLAKE2B cfc0f887a19b7d9fcf579888898820692d388b914709bf551ccbe372b3cb2889a1a9044487b72d270f946ea8f1ffc13f11b59fa0ef424a80f320db74525aa108 SHA512 4dedcee8a894b138637876f630135148d7ada5212913ec5b0eb208ae4a3bf51560ae633d434a91929810c6a75b2b6c5d2144703b04f86f74fcb4770b1c2f814a -DIST kodi-audiodecoder-snesapu-2.0.2.tar.gz 70750 BLAKE2B 54696e7e9df82474e22754f9fbb662bc12de01e3946f48bc9c093f838ca3add77881f5a7ed8cdbc75689c25cf081d0c0935d81fbe32203039df74c420b4bda8d SHA512 7b3ed7556626fd20492720b7b87c3e3885ee565066c2dd34e239608d3a5845584cca8a7a3be50019f2365150072c28480652f3eda6a4e584da4fa1a45337c9ce -DIST kodi-audiodecoder-snesapu-2.1.3.tar.gz 76768 BLAKE2B a38a6576625f198837547128ef1e96522bd329cef9f70e8b1855ee16f3d16f68ea40f2bb12d1f49b1337e54af0de0ac184f4d6754cc160be6bb769ccc2bb1b5b SHA512 d596fd12da85736bbc21f5f42f791e54672246a6e782e7e25082883a29f270f837bc21d76c79182dc08c2cd8314f7bdd40fcebca393216c15882977161c17f64 DIST kodi-audiodecoder-snesapu-3.0.0.tar.gz 78398 BLAKE2B 7bd97f6586b4aecc5948d967a6986db6292aa0387bbb75b59c3b2698f37afc9e511ad8be90b83a88bf69241dec51db22965d62d09e79dac0e820b70601947711 SHA512 cf3a23a6181459e0513ed644d79315665f11c3186a66e9a3d3f4a7d9ffa820ebfa0d050bb329ee36b93c2f2113b734cf7a6d8c4c17ca40a6bbe22056998ed0c0 diff --git a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.0.ebuild b/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.0.ebuild deleted file mode 100644 index 36a879f7b682..000000000000 --- a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.snesapu" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.snesapu.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.snesapu/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.snesapu-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.1.ebuild b/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.1.ebuild deleted file mode 100644 index 21851cf08adb..000000000000 --- a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.snesapu" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.snesapu.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.snesapu/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.snesapu-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.2.ebuild b/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.2.ebuild deleted file mode 100644 index 21851cf08adb..000000000000 --- a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.0.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.snesapu" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.snesapu.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.snesapu/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.snesapu-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.1.3.ebuild b/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.1.3.ebuild deleted file mode 100644 index b3e2b19abd82..000000000000 --- a/media-plugins/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu-2.1.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.snesapu" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.snesapu.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.snesapu/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.snesapu-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-stsound/Manifest b/media-plugins/kodi-audiodecoder-stsound/Manifest index f2ee45d6c72a..3dbb6b3d26ad 100644 --- a/media-plugins/kodi-audiodecoder-stsound/Manifest +++ b/media-plugins/kodi-audiodecoder-stsound/Manifest @@ -1,5 +1 @@ -DIST kodi-audiodecoder-stsound-2.0.0.tar.gz 63097 BLAKE2B c797c7fad5811aaa12217cd6c4caf4167581940e25fc2684c04578e06a04e44d683e0871d6847c6cc3367ee5f5925de4e5640b9eb2b4381a713a3ba6c5860dce SHA512 2770da6d379499fc53d013163e28aeb2c1ffdbbe1cb54f2f2a4d5bac33b68d867a8de0865fe72d283f28ded1f3bd79efee7c98fb79f04ff99459d5bcf3f0f1e9 -DIST kodi-audiodecoder-stsound-2.0.1.tar.gz 89746 BLAKE2B 4429890376ed67e10e5abe76d450731a0d05a5892cd8a5f66d49fdbd8f0743547fa7752c87bad11f2b2e49e1519a0fbdf457da91eb16a42554d5a60f2bafecad SHA512 133eee1892817b69ec34d7897316ab6e967e67968b72ad7d73199d36fe86f119ee015f703022fb850c2c8bef11d990bba3c0a5df5f24776d4861cbbcb6b466db -DIST kodi-audiodecoder-stsound-2.0.2.tar.gz 90362 BLAKE2B 07e99effe9fd60ae723ca61cb1a55408c5cc5458571c6e991c3acfdaf64d635ca24355c0930c79df77afe3e024735be2ec9a46a2d1611014d76364de325aae6a SHA512 6925bc4a21db7b2b997721227689c94bca3389b8c4879d4f10e754231b1be4f0e0cb163f07945624ffb6963c58b6d243b535c7f1490382a89192b50e558227c9 -DIST kodi-audiodecoder-stsound-2.1.3.tar.gz 96164 BLAKE2B b29f1b11cdcd1a275cf766cfa33d800fa0b9be440e061ba0219348509a3d8e26dd5e505f9b81080226450311fcc8a5d85fe8040b89a8bddc9b1d128618e12e94 SHA512 b14f1fc70c6a6cc749dd8c7a85c4177e49d7444518e28cf6b1a6024fb268278ba33b7321269eaba000ee2487a946e05d5e68e8614ad4df7470b1c85fb7da826b DIST kodi-audiodecoder-stsound-3.0.0.tar.gz 97776 BLAKE2B 8896592b822c2bb59ef7404e12d47a9a8977c8277905f07797173cc7b66f61dfc947a8bb02a292365fbb7ad37cd6d39c1ecf74e5fe4156dee87a5b3d04ff0a9c SHA512 ac8c284912c1ccc8975ef9a35153ef0e9d6754a67c3f51ccbb69c2bc4b0533666cbb80e45803586e70dec4f23d9b714b593f957d2a2bfb522cc549c6e1f1e111 diff --git a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.0.ebuild b/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.0.ebuild deleted file mode 100644 index e88939d30e43..000000000000 --- a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.stsound" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.stsound.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.stsound/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.stsound-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.1.ebuild b/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.1.ebuild deleted file mode 100644 index 4ac3f0a881e7..000000000000 --- a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.stsound" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.stsound.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.stsound/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.stsound-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.2.ebuild b/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.2.ebuild deleted file mode 100644 index b17dc2188889..000000000000 --- a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.0.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.stsound" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.stsound.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.stsound/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.stsound-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.1.3.ebuild b/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.1.3.ebuild deleted file mode 100644 index 6ebb9dad83ae..000000000000 --- a/media-plugins/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound-2.1.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SPC decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.stsound" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.stsound.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.stsound/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.stsound-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-timidity/Manifest b/media-plugins/kodi-audiodecoder-timidity/Manifest index bcaa7559250d..98c460460b7c 100644 --- a/media-plugins/kodi-audiodecoder-timidity/Manifest +++ b/media-plugins/kodi-audiodecoder-timidity/Manifest @@ -1,3 +1 @@ -DIST kodi-audiodecoder-timidity-2.0.5-Leia.tar.gz 1822081 BLAKE2B a4d251e46ed1f614c7ad479be5b139f872d4bfafb9f8ad16e96e5c000b96a80b42755d8710551c5e7be1a8f2a6dc02d7fe2a249a38fdeb5d186746de7260a621 SHA512 4b77c1a1680321515cf22ed269b801304a20126f237fc2151c54cd53569bcd446547478d4ff50e02175e4df689eb815af35de75848c4e2ab97451912783c49b8 -DIST kodi-audiodecoder-timidity-2.3.0-Matrix.tar.gz 1822842 BLAKE2B 92545858b9deb5fb61a05830be2b22cd96340e6e2db09bac7dfce5b16ccbd329d677013352117204609d13159d674f1bc919e8fff9cd0e2cde8eb587d83082fa SHA512 d119a50baf8e387d1212e10bf7f8dd5c22e462a85cb0dbd3df2fef7fa3490336af098b518745d4192d22703465dfbe182c5a3047db97d7beb4babfb9017eb0a9 DIST kodi-audiodecoder-timidity-3.0.0-Matrix.tar.gz 1836160 BLAKE2B 31211bdcbd136e869c889304360a2b7726674b8c7f0bfa5b4d6b1e534d8d9b7922b1435941354b6c21bc8004664078cd41f3374dd4d434ba3917fe7e25e07a22 SHA512 e98487ce3d08a3215be86b161ca79e04fa611c75c51a4dbbca9b80779b2ae4729faa98e3b6f810deda025a57fe7278420a3b5d532683b8778d15773fcae04ba4 diff --git a/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.0.5.ebuild b/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.0.5.ebuild deleted file mode 100644 index e44ae1aee11d..000000000000 --- a/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.0.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Timidity decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.timidity" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.timidity.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.timidity/archive/${PV}-${CODENAME}.tar.gz -> ${P}-${CODENAME}.tar.gz" - S="${WORKDIR}/audiodecoder.timidity-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.3.0.ebuild b/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.3.0.ebuild deleted file mode 100644 index c512b0b6962a..000000000000 --- a/media-plugins/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity-2.3.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake flag-o-matic kodi-addon - -DESCRIPTION="Timidity decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.timidity" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.timidity.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.timidity/archive/${PV}-${CODENAME}.tar.gz -> ${P}-${CODENAME}.tar.gz" - S="${WORKDIR}/audiodecoder.timidity-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " - -src_configure() { - append-cflags -fcommon # https://github.com/xbmc/audiodecoder.timidity/issues/32 - kodi-addon_src_configure -} diff --git a/media-plugins/kodi-audiodecoder-vgmstream/Manifest b/media-plugins/kodi-audiodecoder-vgmstream/Manifest index 55154e949c0d..41ee78ad63bf 100644 --- a/media-plugins/kodi-audiodecoder-vgmstream/Manifest +++ b/media-plugins/kodi-audiodecoder-vgmstream/Manifest @@ -1,5 +1 @@ -DIST kodi-audiodecoder-vgmstream-1.1.3.tar.gz 236276 BLAKE2B 4323a96ab7d899f40b0cc3243ed9047ca32b2669a845213e7a5703e79e3a4c10d1a37039b0d627d9b636dc1128b49da28e6ba798b44584411b9bb8bd84cc043a SHA512 7f855019e04156b5601a7be0f71a833b241c52bc2dd63f44f2c0c5f3a28b70e14ee9677e5e381ee283d332f167d1dc6e27f1f6cfc5212acb9854cfd93f2b4005 -DIST kodi-audiodecoder-vgmstream-1.1.4.tar.gz 275249 BLAKE2B baa3cc5cf1b744700eb026a03872b694a1c9f293da5e82747b8dc1d84e2dfc487a364d94d2e8f344ca556cd5031a2be6a2af330472863bd68c59cc9a9b158f51 SHA512 002009f9022d38b772e02e920a34562a98b71149db3d551fd913bfcdae50d51fc6caee3a2dbb20e7c5e4371968fc450e9aa50c15815a3ef8425f1cccb6ea4b86 -DIST kodi-audiodecoder-vgmstream-1.1.5.tar.gz 275897 BLAKE2B a9a902b0a2444125675f4f237bfc07c44947856e127b7c0692ccabd0bbe91b90b76f7f6f183b1836bb21698bb932c24dfa3db91063492d024983b3dfce977c53 SHA512 52369b677e0eb04787887241d34db7e24ac1a6c3110ccd9369f1ae4dae190347b0800fed35c0fa28c2dbf268925ef559d91566b745ab6b03000e4c5e1628b90e -DIST kodi-audiodecoder-vgmstream-2.1.2.tar.gz 4634107 BLAKE2B 53a4f92cb42f304b23c25673e9ac0da97f45a60dc2cf690505c65afd7c4b7d0655e25a331c275d1916f79c0b39435ef7cf61c265651b87602de6e38ab523b09b SHA512 8b955e16c629b11f62a1549461e71ea242cc6cd6fbb6dddbe61311d978dca7e014f2f7534696afab5800814b9d35d7f9e09e96838209b7d5080ab0d723b00bc5 DIST kodi-audiodecoder-vgmstream-3.0.0.tar.gz 4857345 BLAKE2B 394e955a319d7ea0d4352a2ce801f74a64839949d533b6d753da0c3163131b70e63f873c4831eb5734d806e8db915c4dde5dcb93e4f1df458d0b3f3c346b6dd8 SHA512 896879c26896596fe4bca83f581e2b4f1d597ea25e9295680db9488508bfa6e09f3a624255a0ab556a1cc429c596cc05b7382c862222d66a28f942f916775b12 diff --git a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.3.ebuild b/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.3.ebuild deleted file mode 100644 index fc4e9c3f0adf..000000000000 --- a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="vgmstream decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.vgmstream" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.vgmstream" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.vgmstream/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.vgmstream-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.4.ebuild b/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.4.ebuild deleted file mode 100644 index 8b31da13fc42..000000000000 --- a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.4.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="vgmstream decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.vgmstream" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.vgmstream" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.vgmstream/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.vgmstream-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.5.ebuild b/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.5.ebuild deleted file mode 100644 index 8b31da13fc42..000000000000 --- a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-1.1.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="vgmstream decoder addon for Kodi" -HOMEPAGE="https://github.com/notspiff/audiodecoder.vgmstream" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/audiodecoder.vgmstream" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/audiodecoder.vgmstream/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.vgmstream-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-2.1.2.ebuild b/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-2.1.2.ebuild deleted file mode 100644 index 55137a89153d..000000000000 --- a/media-plugins/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream-2.1.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="vgmstream decoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audiodecoder.vgmstream" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audiodecoder.vgmstream" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audiodecoder.vgmstream/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audiodecoder.vgmstream-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audioencoder-flac/Manifest b/media-plugins/kodi-audioencoder-flac/Manifest index 1e2fef6f4711..e232b43481e0 100644 --- a/media-plugins/kodi-audioencoder-flac/Manifest +++ b/media-plugins/kodi-audioencoder-flac/Manifest @@ -1,3 +1 @@ -DIST kodi-audioencoder-flac-2.0.6.tar.gz 21666 BLAKE2B 13c63fd4987dd4e911e3af44642dea33a7d652b5f465654e7038247000aa324ff2b2422f22d7ed88a7f956c3d15dcf960cb9e5bde4b70b3dac3604ada49a099c SHA512 7de2b0f5b36b62bc1f066e5c99fba2aa61baac5f204a75556172aa95332999806a34babef08ac5e516e62a123b83d3befaee6654d3089ebd1a305335a40d88b5 -DIST kodi-audioencoder-flac-2.1.1.tar.gz 27295 BLAKE2B d1fee7d52849389a08584e2acf72da804a410bf5b8f6d891f9ec8f47904029469fa57cd2320bf603f9ccb3e4d4e97f72593bdbcf09a4d34c67730945b7ed183c SHA512 e817592fb237cebdb87abbba4488bc25d48776ae069fda3557c08aef08cf840d5c0a8a2833cda8a6766634d42196f90f9d78eb70272f2f38a38044132e517074 DIST kodi-audioencoder-flac-3.0.0.tar.gz 27573 BLAKE2B ccef84245eb6ce23527b33900e22e304282477eccca728f5a899db80d7b1f64a00fd1de65f4303bf4261554c038d48adf49f417a8161a9359e9ead81c7288a7b SHA512 73dd9526a498dd92076eb98044f75baaeb4dd93251f6a9a2d9e9a9a8553fb9b047b861b8518c2fe2803ce06cd794a5436f80561bedd82de1fc2df727f28d1b7c diff --git a/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.0.6.ebuild b/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.0.6.ebuild deleted file mode 100644 index a90179ab97e7..000000000000 --- a/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.0.6.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Flac encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.flac" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.flac.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.flac/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.flac-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libogg-1.3.4 - media-libs/flac - " -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.1.1.ebuild b/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.1.1.ebuild deleted file mode 100644 index 580c59f48c6e..000000000000 --- a/media-plugins/kodi-audioencoder-flac/kodi-audioencoder-flac-2.1.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Flac encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.flac" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.flac.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/audioencoder.flac/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.flac-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libogg-1.3.4 - media-libs/flac - " -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-lame/Manifest b/media-plugins/kodi-audioencoder-lame/Manifest index 4aa240742c00..a2b72712dae1 100644 --- a/media-plugins/kodi-audioencoder-lame/Manifest +++ b/media-plugins/kodi-audioencoder-lame/Manifest @@ -1,6 +1 @@ -DIST kodi-audioencoder-lame-2.0.1.tar.gz 23505 BLAKE2B 706cefee19bfdc19caa7c65101d61a3032f70033b4c8adf40c90009aed81c8b69c30e0a8982cf633267c26ea568b19adbefaf6c035617573fa09ae486a6d8e80 SHA512 eb780f31e96a0c745cb2598212aab39a065cc85b186b579ba2ace4732640588dabf9a6ef2e6ee57ddd793a2790cab0b8c2a1068714b80ecbfa4ae4a6eaf2f4b1 -DIST kodi-audioencoder-lame-2.0.2.tar.gz 20286 BLAKE2B 56ebf807a40d2d77469c454db0011a4c70000bc90cb3cbd41839719e376a56b9d07733a583f551fc74eff6de42b25d6c84027e678f7d5f34bdee9fa576b0ac33 SHA512 e4a73dadba4fafc8e60c1730404f9390a191bec58823202c3193f7f0571e914151c74b6d18e7d48551ae2f493b9ef11a84ddb27976a5f766e1ba512f1a0e141b -DIST kodi-audioencoder-lame-2.0.4.tar.gz 20819 BLAKE2B 38340fb3069cbb8539ead53e91dbcabd21e169fc5ab76d3b7142b126f192bf8a295e9d7ead2c4e68d822dc1596f0b7e83a962ef8709783979279e4a9aebb562c SHA512 8b57d20c2d02ec7148a83ab7af78eaf92b600a40faa666c4f26b5acb59838ade54f026dc3869b23fc79511fc5901acca5322d2f04336fc8d4f545f5d7c04cb2c -DIST kodi-audioencoder-lame-2.1.1.tar.gz 26524 BLAKE2B 68f1d0f6a999b0fa8de42c1d9d3ee436eaebff9279f60c5677832f2eb5569e862cb2e11710bb04019483543939536a86e1a93fa156536806395195878393fb74 SHA512 ad8cdedc7973eeda3246428579aa27969528dee8cb4eb1c778a90bb6a537f6d448c9d8ef12af940faca5154c066107f4831bbabe7304a07cb236653e8a98be05 -DIST kodi-audioencoder-lame-3.0.0.tar.gz 28725 BLAKE2B 3dab3eef8da3979d5cf13a3542d55d0c9be6d43b5bf7a87a133c35449a8848c557792dc80e52337bf525e3f8fbb8f18dee6204b1ffba9ee2ad1d73b72724761f SHA512 98901f26d46318d35a41b6656cbe0e7b7e4f14db40af9341bc950ee33a2ffd73ad60edb77badd7d3cdabc01fb87eb573764b7736bea8a55ad0ffdd0ac0abd3d0 DIST kodi-audioencoder-lame-3.0.1.tar.gz 28721 BLAKE2B fc5d2184ccfe29fa7c5eb148a026f3bfba40812b79a3efd45ef17e0899691a290b91e7364d5307d8aa522452590305cda2661e051ca74d9141a2b138776e5589 SHA512 4e8a3d2ea9ecbf3460e6e94cce0b1c3f425f825621e426801aff5602dbcd9cea6a079c67b9629fb95e26899b90b803e297b301a8d11506ba1d8012c5b9a231ae diff --git a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.1.ebuild b/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.1.ebuild deleted file mode 100644 index 8423fd613ff9..000000000000 --- a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Lame MP3 encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.lame" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.lame.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audioencoder.lame/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.lame-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - media-sound/lame - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.2.ebuild b/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.2.ebuild deleted file mode 100644 index d2d98a617356..000000000000 --- a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Lame MP3 encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.lame" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.lame.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.lame/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.lame-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - >=media-sound/lame-3.100 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.4.ebuild b/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.4.ebuild deleted file mode 100644 index 6f523be95226..000000000000 --- a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.0.4.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Lame MP3 encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.lame" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.lame.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.lame/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.lame-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-sound/lame-3.100 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.1.1.ebuild b/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.1.1.ebuild deleted file mode 100644 index 4d887654f37c..000000000000 --- a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-2.1.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Lame MP3 encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.lame" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.lame.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/audioencoder.lame/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.lame-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-sound/lame-3.100 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-3.0.0.ebuild b/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-3.0.0.ebuild deleted file mode 100644 index 4d887654f37c..000000000000 --- a/media-plugins/kodi-audioencoder-lame/kodi-audioencoder-lame-3.0.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Lame MP3 encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.lame" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.lame.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/audioencoder.lame/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.lame-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-sound/lame-3.100 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-vorbis/Manifest b/media-plugins/kodi-audioencoder-vorbis/Manifest index dd0489659ecd..8dd8871a52d6 100644 --- a/media-plugins/kodi-audioencoder-vorbis/Manifest +++ b/media-plugins/kodi-audioencoder-vorbis/Manifest @@ -1,3 +1 @@ -DIST kodi-audioencoder-vorbis-2.0.4.tar.gz 16343 BLAKE2B 788d1a64dff47594841e129e734b8bb1f2589b18557ea78477607a265efcc34c723f8e632698bd78b46cc392489a9ef278c21da805f0545b3ebc37811cbb691e SHA512 df618e078d1b0aa3f9b6cbca87288908058f4de13e52056d66239e9606c67a31a84734d8d650520920b8a9e0dfbd1c031aa81e2d1ece1316c11fbd59a6a8d8a2 -DIST kodi-audioencoder-vorbis-2.1.1.tar.gz 21818 BLAKE2B 72f61ab6ac4a9482b8c1dc73207740f9eaa801c90cded5f690b9fcf7873fc59639f34f2aaf51c879071a4c989567fb734cf1fef485d80aa74002018693e0b739 SHA512 74b8528ee142c0e35c1c1254e40ed9d40f0021b615a96e65628e957c4d56093e889c61bf04639f0aedbb74b109eded756d428253ddda7bf094007d842967956e DIST kodi-audioencoder-vorbis-3.0.1.tar.gz 23518 BLAKE2B b995969f3d23ba0af692f571a7a92855b73d99f7360b169b7e69bb6e8cb6761de430a80041eef101025c9d83b05479780f3c67785161516d81934fbf07fb78e3 SHA512 f0e9e152574881943f4c8bad6e8249e502590503104e5c456858e25634004c223e9be91b274b2870dd07327254664f7ffa5549cf573241192088a3287d2511ad diff --git a/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.0.4.ebuild b/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.0.4.ebuild deleted file mode 100644 index 50969af7760c..000000000000 --- a/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.0.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Vorbis encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.vorbis" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.vorbis.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.vorbis/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.vorbis-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libogg-1.3.4 - >=media-libs/libvorbis-1.3.6 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.1.1.ebuild b/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.1.1.ebuild deleted file mode 100644 index 78220ef2dae9..000000000000 --- a/media-plugins/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis-2.1.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Vorbis encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.vorbis" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.vorbis.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/audioencoder.vorbis/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.vorbis-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libogg-1.3.4 - >=media-libs/libvorbis-1.3.6 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-audioencoder-wav/Manifest b/media-plugins/kodi-audioencoder-wav/Manifest index de4fd0118868..bee968cb7112 100644 --- a/media-plugins/kodi-audioencoder-wav/Manifest +++ b/media-plugins/kodi-audioencoder-wav/Manifest @@ -1,5 +1 @@ -DIST kodi-audioencoder-wav-2.0.1.tar.gz 9850 BLAKE2B 08275b37e033eea178054c2f8e6eab1b1af3073d7c88f8406de54bcc8a57791f55126b8d595d543520e214fc41dec7e2c8d45e64263071a98b01e7ea72ef8d01 SHA512 27746034397fe87bcfb81a429350e234be5fe793ef37f1c4f58ab87c91ef11fec8c808874183e59b325228289d519f948dddd5c9587911f3ffca36ca53641f8d -DIST kodi-audioencoder-wav-2.0.2.tar.gz 9856 BLAKE2B 105e475e996e74a70712bdcef27cbc261beeb695fe3b0dddcc0d24d7e58a1fb0543cd7e954522e27e91a8bdd2c532190865847aab917d2775742f35c5c1527e4 SHA512 8e4de58bf6b7cc79c4bb24ed9f0906632f34a20c0a17010b4a5e32934d03414840b6a9d0db5b88975b5da2dd675cd743acb64288e2a3e338090f52df9fb228c9 -DIST kodi-audioencoder-wav-2.0.3.tar.gz 10447 BLAKE2B 8ddb4ce4777f35d75e428a4565dba5a949f85a262dec300a23f7b1425eeea416d7cd601fb5b3910df263edc420ea50111393d8d00d3d5834190040f9d5f4edd3 SHA512 f6b444483808b9e75426cd8b3252c4b3ed57811d9f1433d851d3cd6b3168f376bdfa2311aa3797642450b955ff8d231e40c7c49ad03a5f2b1b3e0679ec3a8617 -DIST kodi-audioencoder-wav-2.1.1.tar.gz 16194 BLAKE2B c08d249b264e198b8e8b87fa4ac94a20090cbef458af7609d156b42dc06e49661647dec762b9647181458a6d6110b24d9170fc1c2a63a527b7d42b0d82ccc93a SHA512 8d40387b792b55fd7348c34cb9d13d34fde30698269fd4871a793143ab1f877e3aac7ab1680581227ec48f80a9c04ca94d846b86013638d5939a6103dd0b138d DIST kodi-audioencoder-wav-3.0.0.tar.gz 17665 BLAKE2B 048915e147bd40f03db6b1cdb02183e1c68c298fe2251cc86a86fbfe2259f70fe17ede46898d1dc5b7d0261454fe0a65d74b8ac3cb19f465ef3eb8b6c1f5be33 SHA512 68673e432d377b895172e398628c5dfd506bdb46c83c38933d0d674abaf1715d44e488d4c158d27c0480b92a947f21534502aa8ed473e9225c37f62e28b05512 diff --git a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.1.ebuild b/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.1.ebuild deleted file mode 100644 index 884ee4090004..000000000000 --- a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="WAV encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.wav" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.wav.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/audioencoder.wav/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.wav-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.2.ebuild b/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.2.ebuild deleted file mode 100644 index f25d2c02aa48..000000000000 --- a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="WAV encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.wav" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.wav.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.wav/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.wav-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.3.ebuild b/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.3.ebuild deleted file mode 100644 index f25d2c02aa48..000000000000 --- a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.0.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="WAV encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.wav" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.wav.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/audioencoder.wav/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.wav-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.1.1.ebuild b/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.1.1.ebuild deleted file mode 100644 index 7387ed345a1c..000000000000 --- a/media-plugins/kodi-audioencoder-wav/kodi-audioencoder-wav-2.1.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="WAV encoder addon for Kodi" -HOMEPAGE="https://github.com/xbmc/audioencoder.wav" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/audioencoder.wav.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/audioencoder.wav/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/audioencoder.wav-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-game-libretro-bnes/Manifest b/media-plugins/kodi-game-libretro-bnes/Manifest index c5eed6bb154a..e69de29bb2d1 100644 --- a/media-plugins/kodi-game-libretro-bnes/Manifest +++ b/media-plugins/kodi-game-libretro-bnes/Manifest @@ -1,5 +0,0 @@ -DIST kodi-game-libretro-bnes-0.83.0.3.tar.gz 809447 BLAKE2B 4efcc72c60ceb433f755afe39058cffc2c39f9ad3726bd407b832b39fc4e4eb85287f6fc25cdbbebfe1b21db4b567fcd260544c1de544ddff2a94ab190c643d8 SHA512 371830f91cf3f7f47b45cd86ec7438a697e0acf886881e87c6dc9218d599e983cac0a540065b6d45b9228b20dd2c1bc264345ee454b55f68d13c62e33944bfd4 -DIST kodi-game-libretro-bnes-0.83.0.4.tar.gz 810686 BLAKE2B fc64d07a3629f00d658028a1f63ef4be640d511968bbd165019431563c84989c07fe11a132757b0ab64d0127e0b39d853525f615e25fea319bef2e8cb3435ea1 SHA512 5add79554a0064dfe9287961a20b80a5c8fd63598f173e254320b78347881f23c87653b742d6b759a1faa280496155c1822ef7ed4631c94fc35a99e7ca22932d -DIST kodi-game-libretro-bnes-0.83.0.5.tar.gz 810684 BLAKE2B 803197c0f196c460d02b683874e2f47e986155310c1c2f7f8f7af74540965e9f94239b561e7143fcd878ba3be6612b441cc9f09ba351c3ddd5eef40a5b8c6ed3 SHA512 46851fe5665f4f69acfbb51b5ebdbc6fdd86016893d3c93956ef690956df127920229f3e9029337da6af388ef9e615fc17b969e3660d22c8a01a3f7116866483 -DIST kodi-game-libretro-bnes-0.83.0.6.tar.gz 810679 BLAKE2B 9e414c924706ed1e45b4831e1a760107be56608b98c4f4fb20203f933d56f8d01232c8e1b8e216715eb4408d63f423ec421039fb2bf9c811dac3081a1916ed59 SHA512 f13e166282d215f9f82da9c6aeb8122fd2893600200d9877ca110cf94f1fe03ca3dc2b9914068fa058843d56a1c775ff2312c7d90ec7cfdd3d8208cb80fccf06 -DIST kodi-game-libretro-bnes-0.83.0.7.tar.gz 810746 BLAKE2B 338223fbebf4de8fdac9e9ac513d629081b92383b3f6793cdc59ff917a2bef87c50879bcfc7f6dd0dc98166930aec5333e2d12b9a3d31366503ad5a2f78acc51 SHA512 028ed758b5024ee987001b27737ab92b1ac89f510a659c3ef917b57b4a93e259dd9933609caafc3713d4256a0c1a5ea2fc9ebe79357904d9d90e169487138cc1 diff --git a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild deleted file mode 100644 index 960b86f16f9f..000000000000 --- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="bNES GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.bnes" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.bnes.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-bnes - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(BNES_LIB NAMES bnes_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-bnes.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.4.ebuild b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.4.ebuild deleted file mode 100644 index 960b86f16f9f..000000000000 --- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="bNES GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.bnes" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.bnes.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-bnes - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(BNES_LIB NAMES bnes_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-bnes.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.5.ebuild b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.5.ebuild deleted file mode 100644 index 960b86f16f9f..000000000000 --- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="bNES GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.bnes" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.bnes.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-bnes - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(BNES_LIB NAMES bnes_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-bnes.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.6.ebuild b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.6.ebuild deleted file mode 100644 index 960b86f16f9f..000000000000 --- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="bNES GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.bnes" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.bnes.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-bnes - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(BNES_LIB NAMES bnes_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-bnes.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.7.ebuild b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.7.ebuild deleted file mode 100644 index bdff27165a2a..000000000000 --- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="bNES GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.bnes" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.bnes.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-bnes - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(BNES_LIB NAMES bnes_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-bnes.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-dosbox/Manifest b/media-plugins/kodi-game-libretro-dosbox/Manifest index decdb0128438..25f29d854bb2 100644 --- a/media-plugins/kodi-game-libretro-dosbox/Manifest +++ b/media-plugins/kodi-game-libretro-dosbox/Manifest @@ -1,5 +1 @@ -DIST kodi-game-libretro-dosbox-0.74.0.3.tar.gz 53861 BLAKE2B bba95d96c9a313a96df7e3774573fdf43040efd23629242f1400a5a5ca8c2ebe948b68fba7d780ccd4cb3ca7cc4db74e23fece9d192e6988493a89eec19cdca7 SHA512 e802f5bdb1c9b82c5fa3224138f1956e4210aa532bea3ead20fba1a9349ef780f52d966b334beb498ab3433bd3822df7ae9e5cdcddbbf5b97318a5b65f4fc277 -DIST kodi-game-libretro-dosbox-0.74.0.4.tar.gz 54671 BLAKE2B d3bbea8b7ee5f7122f929af44632181d3ec59153573298027524ddfbe29f9bff69ff239172881f2e9315de4087f31dfb492de9f12a54b08859a1ed6a576b49fd SHA512 bb74b6cc535b95ca088140c3e39cafcce04b3f01917e126e403c1e9d35a4c581b92dcdad57c28c76acfedbf5ee331a7e9ea5cef48010145be638f606e3f8e9ab -DIST kodi-game-libretro-dosbox-0.74.0.5.tar.gz 54672 BLAKE2B cfdab6075817c2abeda5e3fbb2b8661e304ce655f66e2ed395a3c18d996e653b71cc1c85a785336d89c427b28b2d3a72b2f180bced7f1e90164d94d3d7355b53 SHA512 15dc391fb6115a029254e7755ece7f8a7dcb05fd663f5da66ee91141bb1e90f235195be4d9af2a4c633afa90f0fbaa79948c9e3dcc509e87e427e41468ffc2a6 -DIST kodi-game-libretro-dosbox-0.74.0.6.tar.gz 54728 BLAKE2B ee8f2dc55ca99ba752439271b300d3e100b6fbbfa135a440e96f68adb2661ba90230ed63c3655551972346d3673aaebfb4f00c0fc2c01eb50ff9d8f4dad4c605 SHA512 52fe9993f26f23d78389d78f2878eadb90fb7f973e25fc44e79dba2b8a771b832326605de6901aa819c2bf9073cd8e33e79264c16356735b8a0e63670e8e57da DIST kodi-game-libretro-dosbox-0.74.0.7.tar.gz 54723 BLAKE2B 589359e22653f984af1d0b953d895a27a7b87ae1313a59be7882bc200c654bcdf81680eceed673830c8abe598359b8769814adbcf5d9a8f59e392845cd3a78b3 SHA512 6bc6d685173950a5e99107ec7824966f05e975a68e55a3124aa2f24d547f30f804e07e48aed9aabab1dd6debdd3ef77ba9f74dd048a133ef9fb40edfd7e394b9 diff --git a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild deleted file mode 100644 index 8d15e745cc22..000000000000 --- a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="DOSBox GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.dosbox" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.dosbox.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-dosbox - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(DOSBOX_LIB NAMES dosbox_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-dosbox.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild deleted file mode 100644 index 8d15e745cc22..000000000000 --- a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="DOSBox GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.dosbox" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.dosbox.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-dosbox - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(DOSBOX_LIB NAMES dosbox_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-dosbox.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.5.ebuild b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.5.ebuild deleted file mode 100644 index 8d15e745cc22..000000000000 --- a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="DOSBox GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.dosbox" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.dosbox.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-dosbox - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(DOSBOX_LIB NAMES dosbox_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-dosbox.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.6.ebuild b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.6.ebuild deleted file mode 100644 index 8f1c85004879..000000000000 --- a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="DOSBox GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.dosbox" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.dosbox.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-dosbox - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(DOSBOX_LIB NAMES dosbox_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-dosbox.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-fceumm/Manifest b/media-plugins/kodi-game-libretro-fceumm/Manifest index 97c9a6c0ce1a..e69de29bb2d1 100644 --- a/media-plugins/kodi-game-libretro-fceumm/Manifest +++ b/media-plugins/kodi-game-libretro-fceumm/Manifest @@ -1 +0,0 @@ -DIST kodi-game-libretro-fceumm-0.0.1.9.tar.gz 778156 BLAKE2B a7a03d2df6cc4fbf89aa0a8b4320deb7ced5d452c045d3583fdd17dcdc2dbcf59a99ea323bc0b15355889522e2f3bf572d4b0c260dc381c2630bf58c8c7cd2ec SHA512 772b69afff01e26d04fcc33d06e35da0329a1315f0e3ef01b51cc8459d145af782b6dd72b5b460de8dd7a59e308bf4922b2d77b62be1c5561b9debf3bbe36b60 diff --git a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild b/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild deleted file mode 100644 index 2f5bc82a51b3..000000000000 --- a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="FCEU-Next GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.fceumm" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.fceumm.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.fceumm/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.fceumm-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-fceumm - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(FCEUMM_LIB NAMES fceumm_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-fceumm.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-nestopia/Manifest b/media-plugins/kodi-game-libretro-nestopia/Manifest index eb111d36a889..87cd8674f8c1 100644 --- a/media-plugins/kodi-game-libretro-nestopia/Manifest +++ b/media-plugins/kodi-game-libretro-nestopia/Manifest @@ -1,3 +1 @@ DIST kodi-game-libretro-nestopia-1.50.0.11.tar.gz 793923 BLAKE2B df194ea50610ebe799cb29fa1c9bc3526d96b11a88def22576eb14fd589089f4a0dc4b13c39bb2d10d9ef4164d1c573c978ab3574f5a8342d07bdb776c33b93a SHA512 97adf49af64f256b33b915eb8d3ce05abc7092335a606090344e2194e6a640e489d306ce0dcacc71ee75ddd80b9191036f8aaa634ece4b6b4d0971c663f23368 -DIST kodi-game-libretro-nestopia-1.50.0.8.tar.gz 793551 BLAKE2B d616ec3b69c0e996136e2977860c08537dee8a9ba5682ade887de59ead6d02e6ec7426025f562e2b67700cf525149f3bafa427dd365ad87020377c52b080d5f9 SHA512 97e6cc6253c52bc4d5697210004dcaea775f2537db81cfa2131be149b53cd2e0204f3618d15e2f5bce3b334a75525cc220a8b05f61a4aa3a0979608ec8f0a8d2 -DIST kodi-game-libretro-nestopia-1.50.0.9.tar.gz 793618 BLAKE2B 367dde5b556dca45b86b94ae4592d2a07d63b5b136ec77e32d51cbc9ec7cc6e6ba48b409d66984e54988e79bdf8034cde871cd4898b1c3673830a06692fadeff SHA512 1bac70812ecf58f74adcebbe9bb0520eee5eb070b307b79d9c0b7c2d5393b7191eea89b8a8b490c4626701993164b142864c999abb34f525d7e73a673c60b5a4 diff --git a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.8.ebuild b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.8.ebuild deleted file mode 100644 index 8bacdf0fb1d8..000000000000 --- a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.8.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 - -inherit cmake kodi-addon - -DESCRIPTION="Nestopia GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.nestopia" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.nestopia.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.nestopia-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-nestopia - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(NESTOPIA_LIB NAMES nestopia_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-nestopia.cmake" || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.9.ebuild b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.9.ebuild deleted file mode 100644 index 8bacdf0fb1d8..000000000000 --- a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.9.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 - -inherit cmake kodi-addon - -DESCRIPTION="Nestopia GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.nestopia" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.nestopia.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.nestopia-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-nestopia - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(NESTOPIA_LIB NAMES nestopia_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-nestopia.cmake" || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-game-libretro-snes9x/Manifest b/media-plugins/kodi-game-libretro-snes9x/Manifest index aa2c6c28c3bb..38f3292cec81 100644 --- a/media-plugins/kodi-game-libretro-snes9x/Manifest +++ b/media-plugins/kodi-game-libretro-snes9x/Manifest @@ -1,5 +1,2 @@ -DIST kodi-game-libretro-snes9x-1.60.0.10.tar.gz 1374802 BLAKE2B 3ce46bbda7412e7cd561ab3caf0f5d466ed23dd20ba730a6181ebf78d7d01f4f80b38d51b20061ac17e03e6e90047c977555e53ef3deb8f82b7dd409f8def750 SHA512 0b59b4d3038a0e85d2380a7de1ec7c8f70bc37679c7fe6ad1fc284ba2dabb195274c732dc7e9e6a78d4337c935de84087297424ec8afc981f08a70fba1150f31 -DIST kodi-game-libretro-snes9x-1.60.0.11.tar.gz 1374854 BLAKE2B 26d56c86e65d1aac7b90d9a1f4cdcc226c3e8d4edfd68a740846f4718f17dcc4fc114ed02ff6e737c3c6274a61c5f8f7b4b7833501365bd14a92be04e9e396bf SHA512 0d434053808f85b45ed7eb54de1dad8cb1d78b9e7c4cff25039620f622c942d10eb38c982c7ea92a160ec42f485a129a1b77692d6794628bf5ba0f778ea429a9 -DIST kodi-game-libretro-snes9x-1.60.0.12.tar.gz 1374887 BLAKE2B b25ff8975151eaa89bf3ccde4d8d70e12458468f63c55c3b611c0d1382fe5b5d482c617d07e48c87020365432fa73d41cb3f6f114e3ec93e1041f2f93dae9e1b SHA512 e7b92508b7c0fce6c4756a0fa1ad53935b5388fa4771b4cafabdeaa968f711fc8c5557ddf43c937e5c649ab34a814d134439630946ebbb40de58b31b14919441 DIST kodi-game-libretro-snes9x-1.60.0.13.tar.gz 1374918 BLAKE2B 33612498a9e41818a981f5c7a6f13318d727d9bbeed22dd95059db08a4cd37a3b11e56ac14fd664b31e6409721b02cabaaaa081cf08ed31cb35c58445279ca61 SHA512 91af9e0e52e9ab44329dca07e9cea1ac5ae9e3fd6f7b25e00a37bba5e50d14a9c67798fdca24c7fcbca052a878d01a381b511853e950bbaba232f6bccc7d0f7f DIST kodi-game-libretro-snes9x-1.60.0.14.tar.gz 1374878 BLAKE2B d33b3781d259a1c007808cb9c724c38e5dfeb41f61cab3f1a1fc118b2ad2e0ec5ab16ad7c5c2c29ff1dc6655da9431713db724911106d438d01376fb8a840056 SHA512 dd0e9ef1e944f9621a7adc792e0ac5d64e9f03489aadd9de21d0565ba4bd41c82230bce28797898e1708fdf3c623c994e4229037bb892a65e3b0954b07b9d2ca diff --git a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.10.ebuild b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.10.ebuild deleted file mode 100644 index bbf8e92da4aa..000000000000 --- a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.10.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Snes9x GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.snes9x" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.snes9x.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.snes9x-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-snes9x - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(SNES9X_LIB NAMES snes9x_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-snes9x.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.11.ebuild b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.11.ebuild deleted file mode 100644 index bbf8e92da4aa..000000000000 --- a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.11.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Snes9x GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.snes9x" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.snes9x.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.snes9x-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-snes9x - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(SNES9X_LIB NAMES snes9x_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-snes9x.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.12.ebuild b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.12.ebuild deleted file mode 100644 index 47c4e9a3401d..000000000000 --- a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.60.0.12.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Snes9x GameClient for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.snes9x" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.snes9x.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.snes9x-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - games-emulation/libretro-snes9x - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " -src_prepare() { - echo 'find_library(SNES9X_LIB NAMES snes9x_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-snes9x.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest b/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest index bf695156636f..0f6c29f50974 100644 --- a/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest +++ b/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest @@ -1,4 +1,3 @@ -DIST kodi-game-libretro-twentyfortyeight-1.0.0.111.tar.gz 94690 BLAKE2B 54a48051a2b49161ab8fd75872935af2d313856b1e465d37270819aaaaa7548a01c4078020911e5630ecabc348475842c5d8f813cdb6e94d4868fbcc686fb423 SHA512 3f539c4e238ed9f8872fc443f15fd4ecf6234a6c5e3f9dd701b53fec0804a98f87d27a40023fd861afca3cafd4d17fa5b187e24b921fd87d37a23205a6c798e8 DIST kodi-game-libretro-twentyfortyeight-1.0.0.113.tar.gz 94713 BLAKE2B d161fd0b5314b21bdddb97cd4a4bcdf6066ad6b0280d75ca5c810435867d0edc1b7d58e77021744bc9d39628025d151f628ef07f3e9e5a6be8cc1b039dd0ae2c SHA512 19e667bb4a658a8319c626113f8ff839d5c84afd23a1dd013adce51a29cc9761cd2a93f30f4a8cf3a82a84685269c8e5354982b3022d464057a6f6059eb301d3 DIST kodi-game-libretro-twentyfortyeight-1.0.0.114.tar.gz 94692 BLAKE2B a2592d2b275b22476276e5539831080366e7859d12f364a68964845e6dbe19f596c7027a9e79c50cf44d20a4e44279a2ff090a0c68b4e87a22190dac6f5c38f8 SHA512 84e95b4f67bfb11d2ebc5fe12adf32b80137db87ff945b8a5359043cba7cf23a773751b7c7a661af9c0f127bbdd2ce4bf999e2a75f562e2497ab3037e7b220e1 DIST kodi-game-libretro-twentyfortyeight-1.0.0.115.tar.gz 94691 BLAKE2B ff0a422e7f869f03b6e9fc8171b9d25119d9b658d4ab8446b4b2ac3631d9d43d42b39e4a8759281c957852ed01b10c302e5cfe0dd3a7e4bee93ab67469c22e8e SHA512 6184079e45731218b772096bf681301d79b04a328cf006a09fb0684ba2e99d1a5aee8fda0a26715b118b57b5641939a9bce4c7f4cfa952e10ac1fef7ed7e38c3 diff --git a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.111.ebuild b/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.111.ebuild deleted file mode 100644 index 2acc944a5ab5..000000000000 --- a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.111.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="2048 for Kodi" -HOMEPAGE="https://github.com/kodi-game/game.libretro.2048" -SRC_URI="" - -if [[ ${PV} == *9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.2048.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro.2048/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro.2048-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - games-emulation/libretro-twentyfortyeight - " -RDEPEND=" - media-plugins/kodi-game-libretro - ${DEPEND} - " - -src_prepare() { - echo 'find_library(2048_LIB NAMES 2048_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-2048.cmake" || die - default -} diff --git a/media-plugins/kodi-game-libretro/Manifest b/media-plugins/kodi-game-libretro/Manifest index 755c4005df3b..86d6a4926706 100644 --- a/media-plugins/kodi-game-libretro/Manifest +++ b/media-plugins/kodi-game-libretro/Manifest @@ -1,5 +1 @@ -DIST kodi-game-libretro-1.1.0.tar.gz 101454 BLAKE2B 8fcd65c8221b0ec4d24a41361eebcf1a144906e86b46749625462d507ca2813b6fdd0cb63ef0fcbe29b1f11039dc5b9cdf3d24eae788e4c275200c93855eed7b SHA512 80cc868d57d4284085a7cd736930da6f1b2440cbd8667a20634c329c282e7f0b79158d4d510504a230427fae4d84d9ae29c7a76fab5e2a23820bfa72d75a8e91 -DIST kodi-game-libretro-1.1.1.tar.gz 102246 BLAKE2B a158a0148845dcdaf563b84739b73fc72f29f5795e66c748aae6a761da7765fdd3f70f2cdf572c4c987cfda6ef7ec50bedb7b0a1c20e72e9f3157b333cf5c832 SHA512 f26776eba765a010a86994a02658045ca0c1e887481a31d90ae388765620fb1a0cbd4da79285ae161e99feb311ca9ddccd25193a73a22e7c5f19a78ff1164920 -DIST kodi-game-libretro-2.0.2.tar.gz 109177 BLAKE2B aaa853b8719004386e1ca01041ed7613f0bd263e16d1929f6f4cef05fd4f7bc2ef99dba97730b35205790e2e24df078def73e4c021f6e01db850ee07206d0576 SHA512 02a2a9e93fa522138cf15dfaf29b86ca9e6b4d2707e7fa4f7e4e613db141dd9daa2af1920920f1228616b3c03b528b630824f106aabcad00842ad8c5fd786d51 -DIST kodi-game-libretro-2.1.0.tar.gz 110430 BLAKE2B e4a7c92914c4a56783c8f8d7c8bf94eea387fe92e66e794fc45737e26776b37b1d55953367dc36d98e3dcdc4755db5096ad9a35439499385d3d3e9b4e651a6a2 SHA512 f9d86291480db8de4276df37ddb502c7ddff3f0e33caa757debf6eb8f54b02a62940d183bb9b5094cfc3b4398fe21dd76ab0450c05704ba540f44c817ab7ddfc DIST kodi-game-libretro-2.2.0.tar.gz 110443 BLAKE2B b68c51a0fbe9a61ce9ac5c3582fd317abbc6ef69b5da4a529a7a73201c49f4fe8fba56f73635da213dd02c53af7b3d69dbfafc9a60afecbbef3c451cc32d568c SHA512 f1a5671b468ebf0ea3a86b757ae2481115bfb38082043757aa94d6f193b6eea560b37ccafafe63e686b729d80aa89ac58640899900894d0a72472badadbf27ac diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.ebuild b/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.ebuild deleted file mode 100644 index 54e24230f467..000000000000 --- a/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/kodi-game/game.libretro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.1.ebuild b/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.1.ebuild deleted file mode 100644 index 54e24230f467..000000000000 --- a/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/kodi-game/game.libretro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-2.0.2.ebuild b/media-plugins/kodi-game-libretro/kodi-game-libretro-2.0.2.ebuild deleted file mode 100644 index c9b9d57b397d..000000000000 --- a/media-plugins/kodi-game-libretro/kodi-game-libretro-2.0.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/kodi-game/game.libretro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-2.1.0.ebuild b/media-plugins/kodi-game-libretro/kodi-game-libretro-2.1.0.ebuild deleted file mode 100644 index c9b9d57b397d..000000000000 --- a/media-plugins/kodi-game-libretro/kodi-game-libretro-2.1.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/kodi-game/game.libretro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/game.libretro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-imagedecoder-heif/Manifest b/media-plugins/kodi-imagedecoder-heif/Manifest index 97ba17a5ccd1..a3bdddfb5ad0 100644 --- a/media-plugins/kodi-imagedecoder-heif/Manifest +++ b/media-plugins/kodi-imagedecoder-heif/Manifest @@ -1,2 +1 @@ -DIST kodi-imagedecoder-heif-1.1.0.tar.gz 26928 BLAKE2B aadd843020ebc29608c53c3c3bf34d1280cdde6c8636649067a169decb2d141c6898b083d1ad7ecdaabb8c06aa1f510f87d38156c9e1a77f9844fe2a227767cd SHA512 7c3ba8851fbffab24db0951a5aaca51ec4391e1350c2d9f9317bb1d305f16c210b404299f8c20c6208f5b8dbe1f53598d2d3fbc9b2e62ccadfbb84e3936ec04b DIST kodi-imagedecoder-heif-1.3.0.tar.gz 32393 BLAKE2B 76981fe8759e93b2aaf5db5452db4fb414d295d637bdd38950fb89ba0e21c9b22a7ed87dc183bd3c47f457c09672348e9af74a9015408ce4214dc847599cbae0 SHA512 63181558f31804a1dd12f4a895535ab303c5e3c5f75b5fcc5bdda892b31a78d9b48b917d85dba66df23a8d118eea83825d24c4b797b289be11169b3a1a29df4a diff --git a/media-plugins/kodi-imagedecoder-heif/kodi-imagedecoder-heif-1.1.0.ebuild b/media-plugins/kodi-imagedecoder-heif/kodi-imagedecoder-heif-1.1.0.ebuild deleted file mode 100644 index d9d8059b0b48..000000000000 --- a/media-plugins/kodi-imagedecoder-heif/kodi-imagedecoder-heif-1.1.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 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="imagedecoder.heif" -DESCRIPTION="HEIF image decoder for Kodi" -HOMEPAGE="https://github.com/xbmc/imagedecoder.heif" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="=media-tv/kodi-9999*" - - ;; -*) - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libde265-1.0.5 - >=media-libs/libheif-1.6.2 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-imagedecoder-raw/Manifest b/media-plugins/kodi-imagedecoder-raw/Manifest index a48064bfac0c..e5ad2f1ab2a2 100644 --- a/media-plugins/kodi-imagedecoder-raw/Manifest +++ b/media-plugins/kodi-imagedecoder-raw/Manifest @@ -1,2 +1 @@ -DIST kodi-imagedecoder-raw-2.1.2.tar.gz 51308 BLAKE2B 6b1dff38073ae3f97f070bbc8ad2b35d168c4649515f628627f5d146f3449108f6ce4b5c89fb862b206f84c1be99798c3d59f247d89180157b2bfda46af7cc44 SHA512 502594f19532535062c561d3a70035385de0001ac75783451fb734bd321235bf71009644f3add84a6c7ceccad985e2be30c797b594b1a941530cea0f72113385 DIST kodi-imagedecoder-raw-3.0.1.tar.gz 51343 BLAKE2B 04fb42a64dfd712bcefc6c81af6519566c1cfdfaf97115dec28d4cb05794b918baf4d50179bbc43faac41294b8398f615e6562a310503b13bd18b2d236559bde SHA512 ac4c3a4d042bb8c18340efb2f2929f6301089a407731d6cc371b7b888da978bfb017e0e563d614209bce396f9425c4a618b6109f228c4943282ab4b823f159de diff --git a/media-plugins/kodi-imagedecoder-raw/kodi-imagedecoder-raw-2.1.2.ebuild b/media-plugins/kodi-imagedecoder-raw/kodi-imagedecoder-raw-2.1.2.ebuild deleted file mode 100644 index da5659b403da..000000000000 --- a/media-plugins/kodi-imagedecoder-raw/kodi-imagedecoder-raw-2.1.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="imagedecoder.raw" -DESCRIPTION="RAW image decoder for Kodi" -HOMEPAGE="https://github.com/xbmc/imagedecoder.raw" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/libraw-0.19.5[jpeg,lcms] - >=media-libs/lcms-2.9 - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-inputstream-adaptive/Manifest b/media-plugins/kodi-inputstream-adaptive/Manifest index 42056393f386..737c4e70b8b1 100644 --- a/media-plugins/kodi-inputstream-adaptive/Manifest +++ b/media-plugins/kodi-inputstream-adaptive/Manifest @@ -1,5 +1,3 @@ -DIST kodi-inputstream-adaptive-2.4.4.tar.gz 727535 BLAKE2B fac4034f3333e01951ad592e16cb4f7978cbfb96bf7b7492d8d80c663e7a95a14647a5d68bd32a97c7a4550428359561bbb4a880544f9b76ebdb17fe829d706b SHA512 5ddc8ee08144f43369d807b1a8a2b1fc2fa70a3a0063be09a47d1df021442f0a7fb46acf2399e458bb807429f38abe9bdea5b4994ab58f93f07214b330e150f2 -DIST kodi-inputstream-adaptive-2.4.5.tar.gz 731621 BLAKE2B 8f644efcce0268833fc0688ea291558e9eaf3b0732656e865299f39cfb5cf3c51cd5dc460139fd457c83bdcaa065be916794886fbc75225d2a8eef87249147b2 SHA512 b38e175fb21dcc155aa5b5cda4ffdbd26336a763c9ecf8857058352a3a8f6d9a617a4999f6aed1bee4edd97d18e7a1f4e4a2318cdf871982415e7dd2b519f498 DIST kodi-inputstream-adaptive-2.6.0.tar.gz 731726 BLAKE2B ab0c39e936cf80069753293fd93e0bfcc1d952c05a43402cb0b351003130738da3cfa6a98970d7eab5abd1e2224e3402f947c260789d967fa7f5459e243e1c08 SHA512 2c9f61831a7a8e3ba33438d00b5a9611fa643bb296b209fcf68fdec129c6f6d38b2cd6cbb383472187122b983d794519eab68b7e948275f98e9deddce3763eb0 DIST kodi-inputstream-adaptive-2.6.1.tar.gz 748508 BLAKE2B d2e2a10eb46a08d6872e91cc962065cfb3965cd7f7a22c605d1828aba840ee6b87705d3cc466e5845fb9f3f7dd086b63fc79d6ae1a955856af5216b175d8d254 SHA512 0de25327116f0c5a8af74160a5ad0d755b47a71ac138add0ff7474481b753eb1ecdb23947ee7be9a3e3e11e6faf28971b9651fb53373878ce4126c7e143b9294 DIST kodi-inputstream-adaptive-2.6.3.tar.gz 748503 BLAKE2B e2bd0221e8a2c11404bb8d78cf6c2e78de6f182f47de6d67642bfa8facfda19fe43bbee280541bf8f26e03e239914b44b9fbd4cb30e99475fb4392b5a44ebcef SHA512 6692fef10302b23b8802594781a73155e138065cc507efb3dba9fef2ca12fe13868724ecc9fdd3a0caf29fc93eb14c12408a631821d46f06ade4f16437a06ca2 diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.4.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.4.ebuild deleted file mode 100644 index 6187d9c2869c..000000000000 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Adaptive inputstream addon" -HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/inputstream.adaptive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - dev-libs/expat - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5-r1.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5-r1.ebuild deleted file mode 100644 index 1185349b60ef..000000000000 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Kodi's Adaptive inputstream addon" -HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git" -KODI_PLUGIN_NAME="inputstream.adaptive" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/peak3d/${KODI_PLUGIN_NAME}.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/peak3d/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - dev-libs/expat - " - -RDEPEND="${DEPEND}" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild deleted file mode 100644 index 6187d9c2869c..000000000000 --- a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Adaptive inputstream addon" -HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/inputstream.adaptive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - dev-libs/expat - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-inputstream-rtmp/Manifest b/media-plugins/kodi-inputstream-rtmp/Manifest index f31bd8cd111d..e026d4cbeb8c 100644 --- a/media-plugins/kodi-inputstream-rtmp/Manifest +++ b/media-plugins/kodi-inputstream-rtmp/Manifest @@ -1,4 +1,3 @@ -DIST kodi-inputstream-rtmp-2.0.9.tar.gz 66408 BLAKE2B 466419ef7182c53ddbe358ffb9480f756b8ab7f1f8fe790bb7942ac1cbd14731e4ef2faa0c15d31652733fe49881cf7588a6e560e6f132b61da47d7a8e0e0367 SHA512 b38b45f6313bcf2827eabf80875840b8b24cf010e0f44c20241f8a20f438273020ebd34078562581c34c83f3c9109ec953ef1de819c85de2260f0377903fbd23 DIST kodi-inputstream-rtmp-3.1.1.tar.gz 75658 BLAKE2B 4a776d3e44326cfa8195ad75b49eecba08d4a6de6a43ea51ee31791556ed2a28536e77033d0c9833838be9a27b2a32dc5ac34c4e9ee92e7a9084b021afbd1100 SHA512 9509fe681c3e2699ebe18a3090bd31c32ccc2634ee0c3c5a686b380ce1d104ff7ec1620f6615495d26fb271164592c0cb4f287ef1852468edddfec9440773a53 DIST kodi-inputstream-rtmp-3.3.0.tar.gz 76074 BLAKE2B d920235be127d67a73d3fe8b713459f1bc04491577d886352e0932fd13c638e694b322400c5d9512c0716aca7ef4ed5c3535a05472ea6fff5d0d5aeeebe34aeb SHA512 a981ecd904932ba372e7972137c78308f1fe6928286fead13ad692b41aed0303c7e95a1788984e69cad4984d4f36c1d875f98eeb4a0ed3608ca1c4f8335133cd DIST kodi-inputstream-rtmp-3.4.0.tar.gz 76100 BLAKE2B 0f087ecdbb13797f094925f37f5ca4c9426cf6c90b803a99bf6b6e05aeb792558e1bdd3bbbc3d3926d8ccc886f3c9ffff7da24f1fb326f7cddaf7d5aa5601cc8 SHA512 5016d5454761bc854e3ccaec375123ae5f96777a1639c68c21b94073aa7b1e7a615204739017704ae03f4119a92afb225152a833f3891e302b95da60904bf39c diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9-r1.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9-r1.ebuild deleted file mode 100644 index 420dcee6d343..000000000000 --- a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Kodi's RTMP inputstream addon" -HOMEPAGE="https://github.com/xbmc/inputstream.rtmp" -KODI_PLUGIN_NAME="inputstream.rtmp" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - media-video/rtmpdump[ssl] - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9.ebuild deleted file mode 100644 index 3505fb806a07..000000000000 --- a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-2.0.9.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's RTMP inputstream addon" -HOMEPAGE="https://github.com/xbmc/inputstream.rtmp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/inputstream.rtmp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/inputstream.rtmp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/inputstream.rtmp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - media-video/rtmpdump - " -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-peripheral-joystick/Manifest b/media-plugins/kodi-peripheral-joystick/Manifest index 5dbdc5b09f33..a92a90190ade 100644 --- a/media-plugins/kodi-peripheral-joystick/Manifest +++ b/media-plugins/kodi-peripheral-joystick/Manifest @@ -1,8 +1,2 @@ -DIST kodi-peripheral-joystick-1.4.6.tar.gz 91142 BLAKE2B c80daf4e9a425c88ecb323d7f5ab7538aa5a8af06758723310f133f63ac65b74650f6374e4361e9086813474a6b84cf54bb8bc054d54eaec19c1ab32da5181e9 SHA512 ae42a295e548c6bda7a258d02d7a68ec3f34c66e88b1e3848181d8fb76da6ff83f19f8adc007e2697c096052fdd1ea9879b178aab9f8f4118f4d2d57691c2a7c -DIST kodi-peripheral-joystick-1.4.7.tar.gz 90671 BLAKE2B 281a1d821586224ad155ac621fe5fd48c189733277c877799355bf432a580311967c7300cdd201ca9561f149b42b3327a320bd3641108d8c69cbfd27242ed4dc SHA512 89d9c993f598f7660fccfcc1926ad3b944d88586b0399b3e47524fe5a68665eec8fc7b196acd6d59e36488f830afef50c402ecd05d69cee75c21a69c538e9acd -DIST kodi-peripheral-joystick-1.4.8.tar.gz 90965 BLAKE2B b9bb3aa6e1a5531c304f2f3466bac8f00cffcd771065052d41645f48316c7b246fa07823395aeaa484ca9839d1b8025e6640e7cb504d29642d52c02a1fb21553 SHA512 4ca692589050c225bb9ec45b79f3532a4c572c57b3c2400dd4afa398c3d77194136ffde7bc85b7d24700d7eafb0f813cc3fce5dc48d4de51869fad0f68679939 -DIST kodi-peripheral-joystick-1.4.9.tar.gz 111161 BLAKE2B bcee8aedff118cbceec050ae1b6c0a559aeb735c539624f59ae59648107937b5a904ed24bc1c323443e00289d78b2c1b83ff8e18fc9affb22b8ca706b115fb12 SHA512 6d5d8e5922c7b9c38a55372da585366331f550864ee7d95369bb8b32897250b38d4cbb0e2f5fc7eb91aea34f09f6f33a62b148f731f422ac1b6ead9b2eac4ae5 -DIST kodi-peripheral-joystick-1.6.0.tar.gz 117163 BLAKE2B 24e6eb1b4b4310fc3fc452a719094cdaac7caf7ef4825add4a9bcde453044e5a352b859b0c247fa445bde5554a3b82e40c65f185adc524f855140126716a3e27 SHA512 9fd11af0e75a80cfd1086caf29213616a441c0f8c5066ab2d54dac94603240c5f13af9048ae0691f6bd34511ac36c8cf478cdd6cd179ef97f282ae82f932e0fe -DIST kodi-peripheral-joystick-1.6.1.tar.gz 117588 BLAKE2B c117990d6dc90ff53f4d23e08288df1cfe2fa0f685498a9f9630a07e6ee36207af3c2ed6faf81746e06bdcd94674cd89d97fe6ff75ea5263754c4eba10498605 SHA512 3907fea59d1919f9580e17e01b672aa525b106cb126dc6e7c873fe20b8dd68f395f39fb52ae08a02206a1c301523cd9a2b2f67076cb5e6c4b582d46800a892c7 DIST kodi-peripheral-joystick-1.7.0.tar.gz 117000 BLAKE2B a13cf86805afc77c6178a69fb735fa4544fbc0befb30c43e92d07a695416d1c0006a2227e46c91784c139e7ea205f9653b4f4802bfd734f36c7db9a69782d4ed SHA512 d6c837b28e907376b88e84b37cb9e2f04d96cd97db33f53165c1771087317682409057457596e007410c4dce0b6442551dd922d8a2c4841187e48457ec7ce340 DIST kodi-peripheral-joystick-1.7.1.tar.gz 115217 BLAKE2B b349a52fd756cc55d0fd08d78c2a6c81f6a34e1e5bc9d4e02904a904f26cddfae373ba3532505e736300d31a49d344c2a77b06a92da56a2641505dae0296a843 SHA512 38c53ccd9815212eb51154faaa8073507457a6f7c68d4d472f7c4e4e3a5342cfc085a75a2d3022475d57df08ac0e800406d24484106e64316957772f41235d5c diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.6.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.6.ebuild deleted file mode 100644 index e2e2c669b701..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.6.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - dev-libs/libpcre - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.7.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.7.ebuild deleted file mode 100644 index c7f3f573a175..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.7.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - dev-libs/libpcre - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.8.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.8.ebuild deleted file mode 100644 index c7d5c665839c..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.8.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - =dev-libs/libplatform-2* - dev-libs/libpcre - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.9.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.9.ebuild deleted file mode 100644 index 4dd888bd4a1b..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.4.9.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 - -inherit cmake kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_BRANCH="Matrix" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/libpcre - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.0.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.0.ebuild deleted file mode 100644 index b29f362fab00..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.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 - -inherit cmake kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_BRANCH="Matrix" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - dev-libs/libpcre - dev-libs/tinyxml - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.1.ebuild b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.1.ebuild deleted file mode 100644 index b29f362fab00..000000000000 --- a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.6.1.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 - -inherit cmake kodi-addon - -DESCRIPTION="Libretro compatibility layer for the Kodi Game API" -HOMEPAGE="https://github.com/xbmc/peripheral.joystick" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_BRANCH="Matrix" - EGIT_REPO_URI="https://github.com/xbmc/peripheral.joystick.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/peripheral.joystick/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/peripheral.joystick-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - dev-libs/libpcre - dev-libs/tinyxml - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-argustv/Manifest b/media-plugins/kodi-pvr-argustv/Manifest index d09baa75ab0f..e2898aca1aa5 100644 --- a/media-plugins/kodi-pvr-argustv/Manifest +++ b/media-plugins/kodi-pvr-argustv/Manifest @@ -1,5 +1,3 @@ -DIST kodi-pvr-argustv-3.5.4.tar.gz 149660 BLAKE2B 0afd36f8e7c153bb5d00235664ab40e7fa165d658b0491a271f9cc04c7ccf2f3bf9666c949b43c03b86ab8d6479863c7df9e05d75b8e18676526bb1d30f8b62e SHA512 37ae3fa9d3e0f49ce87429de56f16e875bcbb289f94e019822c9e8661f54cd62d11d6cebe195f29871d7c24241d859e88fde988fc6ed6dd2a3f64cd7e8efe1d3 -DIST kodi-pvr-argustv-3.5.6.tar.gz 150434 BLAKE2B 9cd59c57816ae30912d6410c3a1373fbfe0242a7b60ffd55576c898eac26715e61fbf4bb239e121549b92249b52bc484b1c961eaa3460b36bca0ffa8aa540f76 SHA512 788643e236f0d4e053cb6580ad033dc5f00ed4749138b93631609a203adbcc80d55655cd02634a9f762383fe549f769bd79ad3bbd5023fa74d0748c5a3c9fb71 DIST kodi-pvr-argustv-6.0.1.tar.gz 153659 BLAKE2B c991b1addcc81e4e07f763b0794f2a4ff998747729d6ea9c8433c9c85872b51c702b0dcdaa92f487ee562fe8d167e54dcbdacb55d8df6ebda5ab6ec6c3b35b10 SHA512 103f17c503c0ef9c0e40c9ad2602bff314bce0b7f7e4dbc1f7eb66082ef5dbf0f55878be012ce4728644ba30a473d6f292c7bdeb3bf72b41928a4c7e528f83e5 DIST kodi-pvr-argustv-6.0.2.tar.gz 154313 BLAKE2B 54cf2619e1aa3bab0876ac3e5d18e5acbacbf336d8c697cfb5ad1135577e085330b98d89cd25cf551afa44c09acc4433267b799e511e79e8263eb9cfa365fdcb SHA512 dd6b40d274fe2325660865fd9a814baff0a3440d98d076d8636efcd65fbca63972e8ae22f04bd149f2feac1e8334a87c751031fdd1d915089f766e1089590f4e DIST kodi-pvr-argustv-7.0.0.tar.gz 154784 BLAKE2B 5a6b604de69e5645814101191d3b79027f7b0aebea0eaf30962c9e70bf5228a99e936a50b36be33671a30b4cd4e2d2d33325b1161f22c738369f2f241c086664 SHA512 8ebe04087a0f0db0efcc111ecab6a8940d23dabd6244c6fca44c05a9fceaec54cbd175fe9bd6d79c6d95c6787c8fc147b76e06b6ce509da6007f3ab0d4bf8840 diff --git a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.4.ebuild b/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.4.ebuild deleted file mode 100644 index 1f3503e27d2d..000000000000 --- a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's ARGUS TV client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.argustv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.argustv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.argustv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.argustv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.6.ebuild b/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.6.ebuild deleted file mode 100644 index ec4c2ba7a901..000000000000 --- a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-3.5.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's ARGUS TV client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.argustv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.argustv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.argustv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.argustv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-demo/Manifest b/media-plugins/kodi-pvr-demo/Manifest index bfdbaa3e2b96..65189ef8f9a2 100644 --- a/media-plugins/kodi-pvr-demo/Manifest +++ b/media-plugins/kodi-pvr-demo/Manifest @@ -1,3 +1,2 @@ -DIST kodi-pvr-demo-3.6.1.tar.gz 35070 BLAKE2B f916f89dd701c5fa9b6f9ad4950115433382c94ec5cc73afb0c753b80c1850947ba4776e494842e9181595b5a8bdb0e38f3a6b0baeaa6b19dfe2fe104b2ac06b SHA512 ddcc0c91b9173920ab5a9e05622312e7363b85be74254e451cff7d415d09fe9b60f59acb75c66359eabc3e737921116c2232042a76dcabcf9e2d52d4d3e31a09 DIST kodi-pvr-demo-6.0.1.tar.gz 41271 BLAKE2B 71fc5d308ef122929f62b140c6aa4561a305a5c2dc34b289f1cebb116ae14637da02e4c1546e57085dfd389ad8a02bbece82af53f4a03ba583ef162eab7b1ae1 SHA512 cb1eb595226543b92878d2a3a717a269647524baf6429518637d1fa1fd2d46de9a2e9481831760e9647da529a4c05bc4d1f1a54c5474d030d1d3ac92b74100c6 DIST kodi-pvr-demo-7.0.0.tar.gz 41620 BLAKE2B dd7b99623e6b7e1d994b6cf06af30626b91cadd9af8d4c378c13af8e7d77344b7a7162bd076ebe7e35c4a322cc245edf9ed162f05d36f50c3f72762f278a6fac SHA512 50ddb76182913aa6f9aa7800fa77d7fa45fc71468d5e8443b35b6746c62c2e81a0855ca2bdbce7c2b905562cd348464017535412103e8fd46a322fcf93293b13 diff --git a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-3.6.1.ebuild b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-3.6.1.ebuild deleted file mode 100644 index 192cd8222014..000000000000 --- a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-3.6.1.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 - -inherit cmake kodi-addon - -DESCRIPTION="Demo PVR for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.demo" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.demo.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.demo/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.demo-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvblink/Manifest b/media-plugins/kodi-pvr-dvblink/Manifest index cd564d2516df..35166d873a10 100644 --- a/media-plugins/kodi-pvr-dvblink/Manifest +++ b/media-plugins/kodi-pvr-dvblink/Manifest @@ -1,6 +1,3 @@ -DIST kodi-pvr-dvblink-4.7.1.tar.gz 181247 BLAKE2B a9368ed515f942a7144a50e02c5ada8029d3b87a61230ad9021065c90587afd449ef56e402e36e0cb0c9aefa226486ac793b11c2d509c9559a91c81b50753cab SHA512 66e132274632c10034c8dff78e1b72cf273b6e9e3dffff4ab2efb877ed509a88c8afda600734c93cb228ad7879a5e6815e89ae83d8b5e8d9d88c0c8b8dd3e25e -DIST kodi-pvr-dvblink-4.7.2.tar.gz 180347 BLAKE2B 83ca3cf04de7cfda420da8f068022062ee08920d5313cf2e740c1512bc5c1ec3dc8cd1613f5aa1f30049193d777773d5e73ae66e616dc3e5ea4064cac72b4f01 SHA512 9057a066fa228a271e4b21935bf1b823bd7184d3cea62bdb358932d3a8018c86a1129548c5e54414bf068bcdaad7726a8355d5bc5c61f64130396fef8e089be5 -DIST kodi-pvr-dvblink-7.0.0.tar.gz 189965 BLAKE2B 7e20cb8e0faed944b5aa617c13ff5b0e55ed58947e5dab9a49e724417074a686ae2faf59ba2e034bc2e641c3d9a467e1431fd120ffb42812bb747cb8dd6ce7f1 SHA512 d6e7690c50c8e1d9788bfe2ea067ea88f4f656897013222e3a3b9c97837bd2b00b694be97dd11290312ebd418e523bcb5080d2eba275dc91e609ad3707a88380 DIST kodi-pvr-dvblink-8.0.0.tar.gz 189779 BLAKE2B f31b91af9c52c8bc8b0d1eba23ce5d204d5b9f65ea71a1ee8251b2ef62a7b7b13b465f9c3ac6e56d78ce02b7b917a473e0da8723d35b6120b3ee1bd91e9c4f46 SHA512 1f5809530be490220b05771f314f7473298f30f733a9624dcd54df489f9325fbc7d6b1ff1ef0e3f78ba2694f6a30654d048690645eb0fecf391580966f7bc9a2 DIST kodi-pvr-dvblink-9.0.0.tar.gz 189842 BLAKE2B 7637d64b4ef926d03cd0f3102c0d77b382bf3bdce3422bf878c61819a45e257c0818065c6b5e029cbc7aac79eab592f23a7f50b778ca20fbb504c032c3c1ad13 SHA512 16c30659c6edbb977df13486f46539cf397e6770c886118b3e56c7778aee14fee6caf1d2525a3d411c65fea06b6f95074817d563f1ecf2ee2417538b33afab3c DIST kodi-pvr-dvblink-9.0.1.tar.gz 196330 BLAKE2B bfc376e0381057358cc97a2cba0f41cdf5cb662adab22b73fb0bd9c00951e5171a88d3755b2291232d54a73ec3c978a47a0c3a476fb6bbc52fd154e362517b0e SHA512 35562d08a5200eaf299d61704361f40ce2c52a8d6453553a8f2acd4e482992a8c71048248edb9994690a3a07df2090dc33d61bae9c7dde87f5f08a9d1ebd8e1b diff --git a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.1.ebuild b/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.1.ebuild deleted file mode 100644 index 0bc172623a86..000000000000 --- a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's DVBLink client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvblink" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvblink.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvblink/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.dvblink-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.2.ebuild b/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.2.ebuild deleted file mode 100644 index 0bc172623a86..000000000000 --- a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-4.7.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's DVBLink client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvblink" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvblink.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvblink/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.dvblink-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-7.0.0.ebuild b/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-7.0.0.ebuild deleted file mode 100644 index b4558dcb6657..000000000000 --- a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-7.0.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's DVBLink client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvblink" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvblink.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvblink/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.dvblink-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - =dev-libs/libplatform-2* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvbviewer/Manifest b/media-plugins/kodi-pvr-dvbviewer/Manifest index 0bbcdbb8df89..ce84bd986a61 100644 --- a/media-plugins/kodi-pvr-dvbviewer/Manifest +++ b/media-plugins/kodi-pvr-dvbviewer/Manifest @@ -1,6 +1,3 @@ -DIST kodi-pvr-dvbviewer-3.7.11-Leia.tar.gz 128370 BLAKE2B baa4a6bdab5fc96b8e34c73beebf7959fa20575fec87e7ce8f4634462704ec7eb1dc354da55f8073f7393dbdfe422f9b3fd328ef986d40fd6b8aaf68dc838997 SHA512 f20eb91641df1c56782884622b0a60f9c65bb0384b72bf5e1d71d38fc092a954866935658edc36873272b060a8ce8e712b997666012608745b52d91a474d5f7b -DIST kodi-pvr-dvbviewer-3.7.5-Leia.tar.gz 125918 BLAKE2B 413a752c092ff250e01db404dcd8c35f522546c42c33d93c66f2b5dd7ade1b62fc1686f5b4453260155fd4e1c6b624318a8aeebabccf9041d90952308cc04570 SHA512 03aa18b4946d2d3c345feb5fc26d999a0ca2a929f2ec0bf92450a170f4ceea085fbd16d5daec3782090ffa054bcec8ca02d997716854b493b4f9b8373f2321eb -DIST kodi-pvr-dvbviewer-3.7.8-Leia.tar.gz 127666 BLAKE2B a1f73598ec8b3c6db067b6c991ea829ebfeae526e4575f9392c0fe36280b467ccee46eadc65f14309bf422e06f9ce9754ae3b2d3444f58fe0c938541be9130d3 SHA512 8d0c16c21b6b80f16801d0d253987f292aaa324f0eabd508c0023e87fce9502ebecbcc89f8fb00007dbd792ced83a8925e280f6cb1dbf0a5f319699a8b7d95d8 DIST kodi-pvr-dvbviewer-6.0.6-Matrix.tar.gz 137151 BLAKE2B 51eb189d9a2f7a5f36f7efbc542c68b4460e0e23bb829b1dec39d38fdbeab5700078b06fc2b39187f8602e6b59e371e097481238f506069f3deda73bdcdbee57 SHA512 c4bdc8459d6d9b396540397b33d9055779056edbcb226a6d033825f3bb71d31981886813350b943d55247d6d8cade9c7ae0d3b921ceacba312cf9de2944777a5 DIST kodi-pvr-dvbviewer-6.0.7-Matrix.tar.gz 137278 BLAKE2B 5dd775d9d721a07213f5b33fd3e0391a920342a57cf3b58a13283a2df951a38eed987c23fdc269c7221912a3b4d8f508c11adb0fe467e08dab4ee8c91c115335 SHA512 c74747b3f7c8198f9593e5e9682d431061402bf88cee028aac92089dc64093ae42b4cbca7c610275656a68c08a9330c963a45752cedf109c55cf5170cadbeb07 DIST kodi-pvr-dvbviewer-7.0.0-Matrix.tar.gz 137286 BLAKE2B 86ec3f7c41e48cf1f47a55fe03dad4e362c7d279dbe11a9a014353fcb1afe67ad56498fd6d5054aa472ced9e8813de78cd89767a6546344caebbb33171661f83 SHA512 c2c43767f8cfaa5a2b50bd807a192ca73e4a52de242a0127e9486d9a9dc02cb5dea9ce4f57601e42f697f2121ce6c7347fd2ace2ea4f1ab834bf9877f1f35cc6 diff --git a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.11.ebuild b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.11.ebuild deleted file mode 100644 index 5fd0d7b74064..000000000000 --- a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.11.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's DVBViewer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvbviewer" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvbviewer.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}-${CODENAME}.tar.gz -> ${P}-${CODENAME}.tar.gz" - S="${WORKDIR}/pvr.dvbviewer-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.5.ebuild b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.5.ebuild deleted file mode 100644 index cdd6fb80252c..000000000000 --- a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's DVBViewer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvbviewer" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvbviewer.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}-${CODENAME}.tar.gz -> ${P}-${CODENAME}.tar.gz" - S="${WORKDIR}/pvr.dvbviewer-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.8.ebuild b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.8.ebuild deleted file mode 100644 index cdd6fb80252c..000000000000 --- a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-3.7.8.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's DVBViewer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.dvbviewer" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.dvbviewer.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}-${CODENAME}.tar.gz -> ${P}-${CODENAME}.tar.gz" - S="${WORKDIR}/pvr.dvbviewer-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-filmon/Manifest b/media-plugins/kodi-pvr-filmon/Manifest index 0ab80fd51b9e..4444bc9d5726 100644 --- a/media-plugins/kodi-pvr-filmon/Manifest +++ b/media-plugins/kodi-pvr-filmon/Manifest @@ -1,4 +1,2 @@ -DIST kodi-pvr-filmon-2.4.4.tar.gz 104862 BLAKE2B 8333be55812ec5cb18535aa696c07e16cc02712522b540bef346bd030fdbd572daae47d81bed78be243014fb920911309d5f924079d323104c60090d0ca2c72b SHA512 f6d7c90842ca59ebb3b254860b47d7c1b7e6e5bd70f06744341eaf30a4bc2847027818a2bb097e56398354315753cfea7878cf2b82c3fc69b0aeed106b8d8e80 -DIST kodi-pvr-filmon-2.4.6.tar.gz 105423 BLAKE2B 75c64e863da1609ed7f8176635c90062de9008d1f814fd4cfbb7110d6e46fc1a9bb79dbddfce2e3edbb341048c11f80a126666701209afc5152ccd2035d7b4d1 SHA512 832840319bfb8d9d89883ecc58a4cbc1e32807bed5296dd1bcf033199109b47c5a48be4609e6879ba49a69da61958b2dec033729bb9536a0d26990102472f400 DIST kodi-pvr-filmon-5.1.0.tar.gz 111224 BLAKE2B 8c65a7ed7bcd1846c0bf64ccf99111d8fdbd882a06a6045577d031fa68730ade691362f8b60105714e5ebe7f57e31d1e76927b1b505926b4fd7f3e99efc24983 SHA512 02ba24e23c44ae3000c4f41e90169ea1455678927c6de1fda1927c705bbb236ed06bd5ecd0da59f547f02afe7b695306f7282cdc5014816fd9e0f1922243b2fd DIST kodi-pvr-filmon-6.0.0.tar.gz 108084 BLAKE2B a30f73569fdea28d9c4beca1e605099e9ee4bdfc61c9c56e7c5089d26857cd67785bff0b7ac81916379d8ec825e2f1c1f870a9351bd49d24f35e7274777596ec SHA512 c86f649a12fca13ba5aabcd3c4c37a75279646fd093f48aa20ed3d6a75ad1de0980daffd3aac4771581628974515351c8f9618f60b4b5ea6b66ad91ea6ba0f6d diff --git a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.4.ebuild b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.4.ebuild deleted file mode 100644 index a785a13ade13..000000000000 --- a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Filmon client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.filmon" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.filmon.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.filmon-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.6.ebuild b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.6.ebuild deleted file mode 100644 index 241eb1f9aea9..000000000000 --- a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-2.4.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Filmon client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.filmon" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.filmon.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.filmon-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/Manifest b/media-plugins/kodi-pvr-hts/Manifest index ee83e1b65d69..4be1e290bc07 100644 --- a/media-plugins/kodi-pvr-hts/Manifest +++ b/media-plugins/kodi-pvr-hts/Manifest @@ -1,11 +1,3 @@ -DIST kodi-pvr-hts-4.4.12.tar.gz 160405 BLAKE2B 7d192bf7a19672595cc0a6ca042943f5a59cc530596df65c848e940eba516c0cf429f59418f8f50d5ec930b36e8d496f2ed444b0d0c254941f4fb2b10407c087 SHA512 c04d9e72de8d4bae5699b48c4aa8839a468b81f5ff21b4f2607fee1bb10fe47f1de4574d7ace945a894e46246b9ee5c6b4df6f290b98ff77937a7c6edca675bf -DIST kodi-pvr-hts-4.4.13.tar.gz 160588 BLAKE2B 2042237ab0804ecf8684f3a20a6f0397e5a890636a2f82ebd04be28a06ad2b79aba53f69c22de9a92d64022354af6e879822b74af37c488adfaf5e3bb6bea81b SHA512 7fe4b5519400c36609de9704087d59f60e44a226fa4d8457b9ace084fed5bd58669091cb05b38c705033e6d5c99a525541b87267d4bbbfed690a4eed043e232c -DIST kodi-pvr-hts-4.4.14.tar.gz 160561 BLAKE2B dda8728a411b95039a4132e2ca4c882e36011a0c510bbc8e7bed093b778c1c2ab55d8356b25e04bc378bd4036b6ad6f43a0f13ffd7587cfbbb16ff5a7eaae350 SHA512 ad42dce7ed715e99ab4541d993128ceda194a9fa9e0fffb1a8ba170b719c977e32804a5d94a07d1d00f29346189708847df69540decabf1fe8d95b616c4c34a5 -DIST kodi-pvr-hts-4.4.16.tar.gz 160594 BLAKE2B 5ae9bff9ec9460c860b6333f93748d70c18987f51adf248482c2125610ea5a034f2d00312722b4d86d6435f5679e110451f1b6fc9743ed4c4cf79cb079d8f287 SHA512 f2e7ebdfa18f0b191b32964c18782ce0ee76497b141057c29aedb555dac932b1099aff319f4de61166f3fe7e1ab58b723acd2e1f284745f42d6174e7f3e8a31e -DIST kodi-pvr-hts-4.4.17.tar.gz 161495 BLAKE2B 494d63cd77d6ada7090418140e7aebdb678941236fe45fc46464b213090a2cb5e386d0a59b589afc36cc4cbe020bd3205341b6d893de61c106aee55747172e18 SHA512 0c9eeb8194e4c5b54d5d4df86dc794604d8df91ef172eff9207001ece9a485f7eea40ece449c28bb4cbb414a5a195e6fc50b9571744420c76da104f5fadff377 -DIST kodi-pvr-hts-4.4.18.tar.gz 161525 BLAKE2B 22d869989fc2151ca5ec39c7802d4612d2dcf5e29065bb27a45f528b939f94835585a6a5d427c29a79bea31f5cae811e450be6d80a30d0a18d6934eb63eff395 SHA512 1a0fd0fdec46178262c3f03544d02d13601858043d58ff71bae97c60514f3b11edf12fa53e4436a0de13dcb6877e937d37a5a02f7d6b9ebebbcec9c39e357ce9 -DIST kodi-pvr-hts-4.4.20.tar.gz 161693 BLAKE2B d69e72c8d189b540f2d8abc97c50e5a9e93346823333fe2441d3f7b625b94de72dfe50f6e8af5d17506265746819fff1a3d1f1e06ba7b79934ce234151940525 SHA512 aa8ed5487fa00c7cdc13aa167f103daa2a2cbfd93da2414fa85a339edbca3dda056e1073d52bd3a752e00652e83e3c5ddd1de42741600b9da143b18557f598be -DIST kodi-pvr-hts-7.1.1.tar.gz 167379 BLAKE2B f2391d7997a7e17ed1fb7b2326cdb0cddfecdf9a6b0785fc89ecf8b58004575c6b7a1f6efb976edda827b9e83d334e0bba518498886c1e1769b9ed1deacf25d7 SHA512 5d1e049c23e82964ab87b22c716028d57322f81b749f84f07f66e3bbd2990e711186eee2b562d1f326a369b5fc52d1f7b2aea31b4d8edc827f6555965fec2b69 DIST kodi-pvr-hts-7.1.4.tar.gz 167634 BLAKE2B 34c19b9be6f8e66c22b93e74703d55ccf66970fb39b4c2ac52146aa9d94175280406339fbe6651a53be4b9216713dbeb25fc004f9959a1ce1db42e13b0aec2f7 SHA512 91f9420ad88ec806d2d16e618827583039b90e488014d0f998108c9d94906aa247755f5d53dc4b59badc9fdfad96c975b0d7c98ef0ffd7116171e8abd247c94b DIST kodi-pvr-hts-7.2.0.tar.gz 167998 BLAKE2B 4da53589b58849259d66a03d2f719067cc1749ea181ad6037f03ca178879a34e209422039a1b2d0b3900ee2a2ef65d32a09cae0f177dc17dd8aa97e06dea4f2b SHA512 736188c4464c9110e4916223cd0aa79195547d4ff568aea711aa42c1145d5aa981d1d5f62d4ed79b37575592bda9f2bbc532eff7b09e48785e644e8fdea668c0 DIST kodi-pvr-hts-7.2.1.tar.gz 180461 BLAKE2B c0beed28549d80f71e5bb7197a396c5abf6c26e119caee5624e37c250d718425519d93317e26e1fa831f13d83903807e2fa3917831645ed83e465f8177cc77d3 SHA512 6f971a14e04c4ebb7b300286f7b10f64092eac91a63cbb1ea7ce0d47431231743080b73eb9939273e775f69c1659c2daa669ee53b22be3dafa4c732b095c43f8 diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.12.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.12.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.12.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.13.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.13.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.13.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.14.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.16.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.16.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.16.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.17.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.17.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.17.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.18.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.18.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.18.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.20.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.20.ebuild deleted file mode 100644 index 5b0620a24709..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-4.4.20.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-7.1.1.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-7.1.1.ebuild deleted file mode 100644 index 764206faf8d3..000000000000 --- a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-7.1.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" -HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" -SRC_URI="" - -if [[ ${PV} == 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" - inherit git-r3 -else - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-19* - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-iptvsimple/Manifest b/media-plugins/kodi-pvr-iptvsimple/Manifest index 0beb20bd0b74..b7f5c535d84c 100644 --- a/media-plugins/kodi-pvr-iptvsimple/Manifest +++ b/media-plugins/kodi-pvr-iptvsimple/Manifest @@ -1,6 +1,3 @@ -DIST kodi-pvr-iptvsimple-3.8.8.tar.gz 125231 BLAKE2B 9e887261295f75c96095c9566e5c1a555bb62a2ad97d7527efa9d294c4e392058f99f5205b32a7b4eda949ed0f9f49a288df656777dfba87c243528e74ac5277 SHA512 32c95c2e314eba3c4871c50fdc024be276874b790339c5b558425bb960080784533dcbadbab64c7b76b598c08bfca384fb3b1fa618447eaf30870e296d4c5e46 -DIST kodi-pvr-iptvsimple-6.2.4.tar.gz 178392 BLAKE2B 5cb96bc2c13c429486c596aa5eeffa445fe1b68fbed8265626d855fdb7ab4dcac5071d8033a60621a235dcea37b206a56b9a73e0a9de1fecdfecaa7c3de0b893 SHA512 66bab95ace5d4b25fe5e24c5515674a4daf8d4a4e766f9eed67d6b98c1c0c6d64fb6a2d82b19f239a522d73e55707db4097c3cc12a1936f6f6c6bd57bfd451b7 -DIST kodi-pvr-iptvsimple-6.3.0.tar.gz 178520 BLAKE2B 9536d15145f009a950d21537d6fe3659957589b38872f174ae26088f6c16eef3765485c3c6e9f6d36ad2a1d2c03bffdb983222f5d4878751f567e8c6eaa41302 SHA512 ffbae476606f1e2c286da69ece731c0e8894d1e50c8faba9f493951d1526ae73db3a4a00fe5b2f868f90416fd971321a130e251ac39a40f15d5515915f24cad4 DIST kodi-pvr-iptvsimple-6.3.1.tar.gz 178767 BLAKE2B 9ce62b099bb1b5bd8038b0b638a7673c8498a128d9901c17263edb17ee6482ad83eb4bd8acd4144eaf8b694e72bc2eecc4cefd3675de82177f185aca18403dfe SHA512 586f404c43e496ee7a12c84ed6f5ae9f373b1197be24b9d34df0c1c226961d0da5642b707f8f4bcf2ca9a5b38a3d5f6a8a17d31173af4e2c8ee6a0582707862d DIST kodi-pvr-iptvsimple-6.3.2.tar.gz 192436 BLAKE2B 8d793ed6802a93457f1d1f2c1f08604c1f7e0387f29358ce3f97adf70ae5c05835dfd43bf59787970b8087ee948099d46b2d32ef5a76a04b9e91cfd048f745ea SHA512 20a44e24403575493d3afeb76cf376dfcd31a9f6dbc2e64e43ccc4a007cef517af1287d5b6985d925d523b926642cb79586e296707dd6ada891edf29523bf61c DIST kodi-pvr-iptvsimple-6.4.0.tar.gz 179020 BLAKE2B b4dbabc152cdea4c3768a6d74e1d67e2e1686ccc161fef40f25872e58ee07b66f732db1df48a1947103075b9828f11484a0961ede766806f0a27d2271fbc6a66 SHA512 b9a52244ef502c62127658903dddd0c391c5acae34999dd57a4a42fc4ce4d138b96dcd6f485eb08ef346a6d7e173175e5d7954feb8928fb8df097fb1ecbce051 diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-3.8.8.ebuild b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-3.8.8.ebuild deleted file mode 100644 index 5e4012af00c1..000000000000 --- a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-3.8.8.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's IPTVSimple client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - sys-libs/zlib - dev-libs/rapidxml - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.2.4.ebuild b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.2.4.ebuild deleted file mode 100644 index ca427448e66e..000000000000 --- a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.2.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's IPTVSimple client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - dev-libs/pugixml - =media-tv/kodi-19* - sys-libs/zlib - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.3.0.ebuild b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.3.0.ebuild deleted file mode 100644 index ca427448e66e..000000000000 --- a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-6.3.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's IPTVSimple client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - dev-libs/pugixml - =media-tv/kodi-19* - sys-libs/zlib - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest index abef30dae77b..8023bfa66b57 100644 --- a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest +++ b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest @@ -1,5 +1,2 @@ -DIST kodi-pvr-mediaportal-tvserver-3.5.16.tar.gz 398113 BLAKE2B e944a49bd5d996d2c62325ec7c8b8dd6f69ca2918331cca198afbc11a1badafd4ad7ffd15f562016d540c5777cef285fcd090be28662988f71187899a43609f8 SHA512 4784b97d1826a8846156910b658a32b6b133dda04a8b2366f0dd67445fb4247132da427f63ada4284cf9889b8c5e7ca5f66785998e23b8ee5845ffdb352a83ea -DIST kodi-pvr-mediaportal-tvserver-3.5.17.tar.gz 398338 BLAKE2B 52ed303aa236fb77bb5f79709f322b980aa29ca4e5077efc20894b610eaf81bd0d6f2a23de72bd3bf768ca0d819d57b920573515e0b134465b4f5399db966f35 SHA512 916d3a2f5ef8802a49c70f62bfb94145c3aa8f140ff3674ed3fef21c4d644a85a0cfb1088f1fc893b677635263f47455c0ffbe6554ca484659a1b7c8ebd47207 -DIST kodi-pvr-mediaportal-tvserver-6.0.0.tar.gz 402033 BLAKE2B 7ad12b7a18e759167fe06d983ad20c0dd00f10f6a23a5f87f526835b893451110152c036bdbae565d623fd8034e6bd1780446a688a6837f30027d7412f214706 SHA512 ac1b14bb1e75e4b802c1d6eb9f94b8c437d808ff31592b3e9ed0b9c19151acde3927c1bbabd4f890cf3aff6c71b68a859abf8b2d8942e4c9df8953c934a123aa DIST kodi-pvr-mediaportal-tvserver-6.0.1.tar.gz 403268 BLAKE2B 7c063ebd18d539c5ef844d55a93363540c19776564fd7cb2db4cb861e7acd0fc4fa9be88e835bb868f293db8af630ab709ea4f5075c06a15934e39647bd76745 SHA512 3e77f65362f55fa8902d77fa4522b5f76e553578270121fb0727cf42a57121d3bc3076ed84183576423a942c90c995546850992a4800d5f29017e39b1c2aa961 DIST kodi-pvr-mediaportal-tvserver-8.0.0.tar.gz 403339 BLAKE2B 529ece294d5f7320f1663a3f9e9d569d2decf514b1900ac8e859c51993a938f6f263ab89a1660f138651f71a322cd2f11fb311be57c21ee2009327c876f9d870 SHA512 d67500e054bace480be176604d2dea520c25637de2d12cec1331d62564ec04aa963d00038b17c3b675525c74ae32ac3ac06ac7e1ee98f406080162bdd4ff6709 diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.16.ebuild b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.16.ebuild deleted file mode 100644 index 15c92436c88e..000000000000 --- a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.16.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's MediaPortal TVServer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.mediaportal.tvserver" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.17.ebuild b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.17.ebuild deleted file mode 100644 index 15c92436c88e..000000000000 --- a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.17.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's MediaPortal TVServer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.mediaportal.tvserver" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.0.ebuild b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.0.ebuild deleted file mode 100644 index 26852ce2d13a..000000000000 --- a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's MediaPortal TVServer client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.mediaportal.tvserver" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - =dev-libs/libplatform-2* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mythtv/Manifest b/media-plugins/kodi-pvr-mythtv/Manifest index 901462c1bdce..d27826481c8d 100644 --- a/media-plugins/kodi-pvr-mythtv/Manifest +++ b/media-plugins/kodi-pvr-mythtv/Manifest @@ -1,6 +1 @@ -DIST kodi-pvr-mythtv-5.10.15.tar.gz 702682 BLAKE2B 54ba8e4883dbdae88071b1b69a4d489d384c95911bf1113e944b9a4528f8349ff044a1440afd05b3657c8131c4738264f366a7a63bf8606ce6f796c143743f37 SHA512 bf7e4d6fc1436fc01596a4587b4334e495b72e4fdc9638393c94bd289c9f58065ad5d61c87ce109d727a0d656873100da050b8d395e28aac5efe567da70839e8 -DIST kodi-pvr-mythtv-5.10.16.tar.gz 702675 BLAKE2B cc2f229e53b9c91b1a09e954dda88f4b199510de4a47844795e0b2d41aa9cf3201b85d39dd43716ce189d9385784a85dcfd4639d6dc07d5ad74d5673fa5102e3 SHA512 d089cc365dd42268510996a1ca306dee94c4d3dd72eaf5c90815f29dd1d5bf0be7e0177db1929a33beebe9fefa927b52a83a2ce1c8c8aecdec91fbdf7c5efb79 -DIST kodi-pvr-mythtv-5.10.18.tar.gz 702659 BLAKE2B 90e1d655633a857e8068f4b1cb30c3f4cd802adc1139002399107989d3e8477ed38b83076f5a3a96bacd18e10c8a28399e752d43078cf4d9fafb73ef4d4328f9 SHA512 cc09de5086f69e1cee073719d306a44b41f2b0131bc70f74ee730eb681a72d4cecbd263d52ac7610574ce1a8d1b737cdc653adbf9642559e5e0fafa0e06aea25 -DIST kodi-pvr-mythtv-5.10.19.tar.gz 702741 BLAKE2B 0baa0e7168ca33af0198205323b1ec8036b46ad33cde2c9a0ce928ae3335d4e0c2704094e3e5b77af41a53f07ded7a77e8709a3c29b389dc044969523982c08d SHA512 7b0ce0ccd74fa5743c774804f6f8d34d3d2085195da26a9da74a12948d611a25142a7ffb228e342120d286da140b234cbfc8a5ca97a77a5a2fc807d6d52d60ae -DIST kodi-pvr-mythtv-7.0.5.tar.gz 706430 BLAKE2B 569725596d66efd8076f39f7ff6fd6aba10057f77be395a94c03d58146e50072c055adf625a02ab9390dbe1cffeddb3b7775e03c689b1b32bef138bdd9af19a6 SHA512 ad94f44f0fa853776da62af7b23a54d884cb25b6fab3186b1bc02f9c4716e7cdeb371f5eb789d65221573117ed7afafcc2a7e1f53a004d42866b61d8deae1dac DIST kodi-pvr-mythtv-7.1.1.tar.gz 706444 BLAKE2B 130dc700cbc3d95e5d5332caf5718ef965442f0e42a6922c000753da63a6d679352560ddb5f6ced03f993f12fecbd1e4e8d42618cb5110d65b5bf425d32d79c5 SHA512 9154924e7c433a8d0aa6c82a8e6b638310707d1df0607a19da7cc97431e66a38f11ab2d5e1c95ec05caf37f4a32ddce54efa4e94f07d19d2264422d38c4e6bad diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.15.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.15.ebuild deleted file mode 100644 index 2211824cdbf2..000000000000 --- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.15.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="MythTV PVR for Kodi" -HOMEPAGE="https://github.com/janbar/pvr.mythtv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - sys-libs/zlib - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.16.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.16.ebuild deleted file mode 100644 index 2211824cdbf2..000000000000 --- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.16.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="MythTV PVR for Kodi" -HOMEPAGE="https://github.com/janbar/pvr.mythtv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - sys-libs/zlib - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.18.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.18.ebuild deleted file mode 100644 index 2211824cdbf2..000000000000 --- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.18.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="MythTV PVR for Kodi" -HOMEPAGE="https://github.com/janbar/pvr.mythtv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - sys-libs/zlib - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.19.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.19.ebuild deleted file mode 100644 index 2211824cdbf2..000000000000 --- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-5.10.19.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="MythTV PVR for Kodi" -HOMEPAGE="https://github.com/janbar/pvr.mythtv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - sys-libs/zlib - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.0.5.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.0.5.ebuild deleted file mode 100644 index 3e6fb192fd68..000000000000 --- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.0.5.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="MythTV PVR for Kodi" -HOMEPAGE="https://github.com/janbar/pvr.mythtv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - sys-libs/zlib - =media-tv/kodi-19* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-nextpvr/Manifest b/media-plugins/kodi-pvr-nextpvr/Manifest index 964ace039ebf..92815c0b41ec 100644 --- a/media-plugins/kodi-pvr-nextpvr/Manifest +++ b/media-plugins/kodi-pvr-nextpvr/Manifest @@ -1,10 +1,6 @@ -DIST kodi-pvr-nextpvr-3.3.17.tar.gz 129989 BLAKE2B 07a67e38f70e2364ec2ca5f0829a99dac72e0424fa2e2da5f7f0c3f8a6dcbb0fc651d8cafbc4cdbb651c05894741db442e731faa0fbe0a37d72f3716523c2b3a SHA512 1781d76bc5b521752f6d57b6f2f3e3c40e3c1954bfb3168ed3625252392cf99d3f995d755f8db7826c72c535b6e89a540da6004e60e7b5e7875069222dd12bdf -DIST kodi-pvr-nextpvr-3.3.18.tar.gz 129996 BLAKE2B afc8a582793cd2f618f39f6f48dac37c4d2007b66d5daad5af0fbb0a213c26e9fa1a58ee2b0ab77e8a7cbb005da28af17df22f65df2e093d2250c7f0a04f9609 SHA512 907f355c306534d7d7886be6fd0a62b88fcfbd7672710a31cff3ab9f0329f15ee9b880d58d59ebc98e781409ca8cf8512906ec8827f8a149a1bfd4d72d0b310f -DIST kodi-pvr-nextpvr-3.3.19.tar.gz 130174 BLAKE2B f29766ad2fff67df72c67eba05b0de775c67752b7f4d4b31ba62a7acbfd66723f52fd802dca39dc05b83900dabaad5e04ab3baa64dad51670e7f82f9fa86be2e SHA512 d78201980ad4d76441d6d3c9acb5c23775c56c62dce9b7e116576e17e7fa14c11a2ade5b9fe1dba3d12d1b509d441fdfead05ac66796e2362e310b8d85a37f7a -DIST kodi-pvr-nextpvr-3.3.20.tar.gz 130242 BLAKE2B 52ed3235b08574d521e7400e441b9ab2a0962d839c28ac317e2318895024d26bf3ed4b1bacdb8e6b58bb3430921cad7958711ce64bc766f2fee743d8cba424ea SHA512 8c7d21ede01839ba251b4367db90f5f028ca2ec0d6eafeb124881eb9a6078b28917292fbeb0ea452c782d1b943b8b8d24997f67faf83b516bdfaf451fcbd5bb0 -DIST kodi-pvr-nextpvr-3.3.21.tar.gz 130510 BLAKE2B edbaa2e1910d8f601673c55be264a93749713f893c78400ebbe790c9437dfdfefe8f156dc4ff73b09aa603f0d4bd54bd722d09bf39835720d0e3bb5d32813861 SHA512 6439f29a16d9b85b643c53a49624a2202e83597abd4d770f2caad9adbde4851d1f2f808857b5ab1bb1d1b99c7cc883313fb3a9b668240bd22ef7f4915b9a51a6 DIST kodi-pvr-nextpvr-7.0.0.tar.gz 145031 BLAKE2B 01d8583d74111dfcb59a139987dc30cc900a41742ea28d4a0fcec11864cb6fc505dd200cf7b61c9dc3d7338ac500d014cc6a312ed8b26be6387604a7969aa9d1 SHA512 b7ede2d9f2a384816c48c19078583aa996f8d08671842444abc93a02e7d3cea9669deb67c26429aa68d3875b6644c29f467bc925768a336916b6b6a7d0894cc9 DIST kodi-pvr-nextpvr-7.0.2.tar.gz 146987 BLAKE2B 751e08334f29f447b6abd665c782cee9ddc7a1b40a6600296a68d131827feecac3c71622aa1fc61c30d6aafa799b82f7197528c2fdd764a8a66f263493bca2a7 SHA512 8e3d0f127379263b55e565a5eafc062a265a354e23f3c184093e4f6a3ffbccddddf0acddb89321165f7c7242c6c55d22b2a033e4d52bb5cd9e48baef91d15a08 DIST kodi-pvr-nextpvr-7.1.0.tar.gz 145632 BLAKE2B 048e006df0817390037d79c3c1f4286c8309630c21931842f52b152c389e356fb7297799fcb1eba04a11029ae55e2c88d637acfa933279f9b3b7488fc823256c SHA512 1d4fa70b1ad4988b9b7b6cf04b992c5bf5f6c7ea469dcb4c745e90b6b09d2de52ec1ec785c30dcb7cdf1703aef9fbedc2ad2b43d1bcc7c7480daef4b1fc50e26 DIST kodi-pvr-nextpvr-7.1.1.tar.gz 147599 BLAKE2B 0091182e313d9ca052f08cf9615dfaca51e1354d54f58685e23a767cc8ada532c531ff67f198f74f84d5252b61f2bc1a2c06d8ffe92ff771730a2a54c7841c3d SHA512 7a387c9d42e3044c99125292da7d399bfd138d5126904daa5acb3612b46e54adb1ba890d8a90dc20af8cf9b9dbc152531fdbaa8f38d4f7faf208176379542752 DIST kodi-pvr-nextpvr-8.0.0.tar.gz 147610 BLAKE2B 22928f16d9b9b2af7d5226137a0768e321ed2490b9f06046a232a9b906b98690b5f96aac32e5843e0163ac8836250fdbef535b06ee93792f6752719ece7d54ec SHA512 66f92a6b9239729017cc87dc75842e545b5bed711298231366238d0c56e4154944819a4607bd1e1bfc49721a41ca0644721304c9fb037a6cab034ae51dde3349 +DIST kodi-pvr-nextpvr-8.0.1.tar.gz 147804 BLAKE2B ae1489eb5b8c72a635dd59c94f9aa45626cd49fad1bc897fde0c8868009bc9f3b5d43eafef2ce378060a1061848b7d798ce015f4d156a11b10cb89e109ab5d85 SHA512 91d0a6d8f3c21d55e11e116b4bca4832f17e06a2ab7b45963739109575a33e037cf73258aae3ec26ab1b3746c0c5777800ef3d266c170859ea393423ad031a35 diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.17.ebuild b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.17.ebuild deleted file mode 100644 index be53994bd0ff..000000000000 --- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.17.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's NextPVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.19.ebuild b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.19.ebuild deleted file mode 100644 index 4d0ea1ef9733..000000000000 --- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.19.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's NextPVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.20.ebuild b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.20.ebuild deleted file mode 100644 index 4d0ea1ef9733..000000000000 --- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.20.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's NextPVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.21.ebuild b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.21.ebuild deleted file mode 100644 index 4d0ea1ef9733..000000000000 --- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.21.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's NextPVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.18.ebuild b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.1.ebuild similarity index 82% rename from media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.18.ebuild rename to media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.1.ebuild index 4d0ea1ef9733..46d49f2ab86f 100644 --- a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-3.3.18.ebuild +++ b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.0.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils kodi-addon +inherit cmake kodi-addon DESCRIPTION="Kodi's NextPVR client addon" HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr" @@ -16,7 +16,7 @@ case ${PV} in inherit git-r3 ;; *) - CODENAME="Leia" + CODENAME="Matrix" KEYWORDS="~amd64 ~x86" SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}" @@ -28,9 +28,8 @@ SLOT="0" IUSE="" DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml + =media-tv/kodi-19* + dev-libs/tinyxml2 " RDEPEND=" diff --git a/media-plugins/kodi-pvr-njoy/Manifest b/media-plugins/kodi-pvr-njoy/Manifest index ab55d1430417..1ccdfd88b6fd 100644 --- a/media-plugins/kodi-pvr-njoy/Manifest +++ b/media-plugins/kodi-pvr-njoy/Manifest @@ -1,3 +1,2 @@ -DIST kodi-pvr-njoy-3.4.2.tar.gz 47637 BLAKE2B 258dc10c06b68b6812b320aab5236a2ddb3f565ce616efb9ec6cc7710f60b58c24b827b61109af89e41430d4ef33a1daf6cb526ad8d449b954589c82783f5035 SHA512 5f30afb07c8c683920cce9acc2aa182273943e1381304e4e17f396fb42f1c464884e9134f507d7e787d9f271d24193eeb20c72870d2c7012a07aef94e1a686c4 DIST kodi-pvr-njoy-6.0.0.tar.gz 54587 BLAKE2B 94d499840f91a1ffc57fbd3d364df1810eb82807532c8a95d66a8a2cd3e3da6c6177a01ae97ff5936aa9b35fa4ab6e1b8ed56691fe32213031f433691090cbc2 SHA512 3279226b3aef3511d7fc5c0cd73f6bb943321f8ee903a1f3736e707488c6ea7e14ab930ef54b22548a87f8daa6e19fc33f7f86d62e4b7ac53ad7eb4dfe526fd1 DIST kodi-pvr-njoy-7.0.0.tar.gz 54987 BLAKE2B c43498d3c29aed4d785373e56180fbc2be225e37be73c6c8a2ae7e40db27f7060aeb5dd3f98a38aaac1b3f098ce5ae2d27bd5a4a1edd4d512f5be78780323586 SHA512 a69757cd1d236ef0bf2624fe8f20485536a23d3c62f1c859f20a0f776a9353726e5fd53b3eed852ad0edc8f502d2aceabdcd6c74141504015948dd7d101a5ee1 diff --git a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-3.4.2.ebuild b/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-3.4.2.ebuild deleted file mode 100644 index 519e46ff8dc7..000000000000 --- a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-3.4.2.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Njoy N7 client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.njoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.njoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.njoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.njoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-pctv/Manifest b/media-plugins/kodi-pvr-pctv/Manifest index 1c633faef16f..96633549835f 100644 --- a/media-plugins/kodi-pvr-pctv/Manifest +++ b/media-plugins/kodi-pvr-pctv/Manifest @@ -1,4 +1,2 @@ -DIST kodi-pvr-pctv-2.4.5.tar.gz 67169 BLAKE2B 99861fadf9fba102fb45b9d095cf8ccaa58ca53b5182f714f8666dddecc43f98ce57583b3e7b3d156aaece9f63acc7fb653d2b3763104c280d9ef30dfff6d664 SHA512 288446a04b9dca623ab12759500123d3bc548b131a3cf6757431e99571611834408da2918085d52c29380e5d5f856a6c4dede7a9793ac427123291346a28ed62 -DIST kodi-pvr-pctv-2.4.7.tar.gz 68065 BLAKE2B 0ee70bb53be42bb9b3d82c0e429f53fb1fcc847db5072ff9507fae02a9cad9ca6757ccd801560ae2d7eed2ff39588755b8b2e1f81e144253b22fd704f77cfe0d SHA512 a7c6e81d31635aa15d9cb9a5e9636bff4ed510f73495013aecf2eb1e6898c902e481f3dc13c91838407c970f8698bf40e47ca4e32ab4d067eb0566275e6bebea DIST kodi-pvr-pctv-5.0.0.tar.gz 65924 BLAKE2B cf2a526359457d057c32fd0ec726e59fa64010b51f1cb48841c387f38834433062487c1c12ae83aed9e653a639a4d6329145ee07f21972b0d452d5f9f9919189 SHA512 88addbfea0d39384ccb8818e88984e8eb55f9214f350285a6fa42de18045611c0cf98937e252fcd787b473fddcee0f2b3760262d901fc4b158aa4b416332b795 DIST kodi-pvr-pctv-6.0.0.tar.gz 65852 BLAKE2B d0bf91ebea7a2d01fb87a79deaad8edd5bfed8be71e723df11fec4b2186f5d9785dab023e67e2290b958adb245446a3b448b0f1498026ec15de6637c7778ca31 SHA512 33bb46f872832835a16fdcc25bec8a67cf800e80c22bf59241e5eaddc3f7d6fedd9a60155b49b6b21c2c3a478cd5f4be503a120c04cf566fd8329ca08df2b0f0 diff --git a/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.5.ebuild b/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.5.ebuild deleted file mode 100644 index 78f5a4d95399..000000000000 --- a/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's PCTV client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.pctv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.pctv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.pctv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.pctv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.7.ebuild b/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.7.ebuild deleted file mode 100644 index fd990df230e6..000000000000 --- a/media-plugins/kodi-pvr-pctv/kodi-pvr-pctv-2.4.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's PCTV client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.pctv" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.pctv.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.pctv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.pctv-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-stalker/Manifest b/media-plugins/kodi-pvr-stalker/Manifest index 852d38aba8bb..f01d19dbd0f7 100644 --- a/media-plugins/kodi-pvr-stalker/Manifest +++ b/media-plugins/kodi-pvr-stalker/Manifest @@ -1,6 +1,3 @@ -DIST kodi-pvr-stalker-3.4.10.tar.gz 115715 BLAKE2B f1d0f5a756c17df7a84b24637a55717995abfa6c9e5cccfe660cf9c8ea6d53e5a7766fd44a1eb6778c1c536ca014a8a43806e9af95e0b88688e92d146f67c890 SHA512 fa7912899dd1bbefdbbc31ad936b863ae9ddf33aee0ea2cd4f1708be8424d9d7893a45f2f7a3fe6714f3a59890bdb9b3984a802fddfe43cff746303ee1121d0a -DIST kodi-pvr-stalker-3.4.8.tar.gz 115254 BLAKE2B 865ac0123b54369bbe73e67855d915efbd3af82d9cac5669099895efec8410eee7acf8d20f6904a0b939bdbba0feab8ec7aa3e953d816914407673c2bebd3c05 SHA512 f4fd2965199a0a5a31b37c2afa60e3cd6746c25dcfa80d8ddbedb2236b92f3c243dddfdff92fd9e6ffafd434c53124b89b8bd2c636856c62cb78b84e446a3292 -DIST kodi-pvr-stalker-3.4.9.tar.gz 115275 BLAKE2B bd9df715d3f5e630d4a47fe24f24515085f8a6a151545c27d5bc6b3bf4e4876672cddbd7c2d6fbd6a999b285afc6a48a29030ac72b4ed32cf10e8448235ef0b1 SHA512 16107f60529b4ef3730f7a3deb5a7cd9ee645678647248d2fff01dbc94dc7a53029a67a3709955a9be8483a13e13048dadf73a32489725b60b5c07c3a0b6a979 DIST kodi-pvr-stalker-6.0.0.tar.gz 114838 BLAKE2B 31f567d73dc4851acd748bcfa8187014aad9451e05727cf8b8b705ec936b10b39e62c82f451c6b4049bc70c70708beae2228cb0b5ced71b34de53b497c137076 SHA512 99b9c2a2876023efe510a9970e0520804180e138d63ed1a13fb94e86b346d09c252c8edf12f3c3a7d2610d80d25cc74e938b35ecd925846f6adf648430b0938e DIST kodi-pvr-stalker-6.0.1.tar.gz 114575 BLAKE2B cb42fcd4ecc7c65bac75eb12579d0dcdb5827312c275a9db998953366c6a59a1033d7d26cc9db91c909d694340bb0eaf53e9d982604ec45b8cb349c4210565c4 SHA512 e71e37e7b440cb2d4e6f72400cdb457fbcdcc39893cbe70144b9ac1941429f45b00dbf7516b25a8ac874ae471a14335ce74c845239a444446b1fda97361b0757 DIST kodi-pvr-stalker-6.0.2.tar.gz 114593 BLAKE2B 673a512ba369a85c6b08820bce845ec38d1ad4710767e585fe18f24c73bbf2b589ed3b52e3a0868a468e57094509ec2bbf1a7477c3602aafbac40095e2948bad SHA512 c8d5a2fce823e9dd00af53f12544ef6f5294b736032fc94d53312b018fb9d6ccbb9a2249cf4d41a40c89b0a0e42dbf252c7897e14c33e5f75487620260e493a5 diff --git a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.10.ebuild b/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.10.ebuild deleted file mode 100644 index 31c793ffbd41..000000000000 --- a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.10.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Stalker client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.stalker" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.stalker.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.stalker/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.stalker-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.8.ebuild b/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.8.ebuild deleted file mode 100644 index cc22dd09812a..000000000000 --- a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.8.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Stalker client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.stalker" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.stalker.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.stalker/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.stalker-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.9.ebuild b/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.9.ebuild deleted file mode 100644 index 06a9f92d0ed2..000000000000 --- a/media-plugins/kodi-pvr-stalker/kodi-pvr-stalker-3.4.9.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Stalker client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.stalker" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.stalker.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.stalker/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.stalker-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/jsoncpp - dev-libs/tinyxml - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/Manifest b/media-plugins/kodi-pvr-vbox/Manifest index bdb76cf66d42..6707efda536c 100644 --- a/media-plugins/kodi-pvr-vbox/Manifest +++ b/media-plugins/kodi-pvr-vbox/Manifest @@ -1,9 +1,3 @@ -DIST kodi-pvr-vbox-4.4.6.tar.gz 155719 BLAKE2B 178ec1adfd17f8afc80daf526fec863b93c17ec13b5a54c7a2aa166c6a73cbe5d57a3e349f2c6522c2081af6b4f892a731b49a0aee2a6e5686a2adf5f95d5fc9 SHA512 b34b2ddc9bdae9a51e44a7dbe483f9a21d6d4de951e0c996a2f82e63b87718b7f56a3bfbeb45c0cc7a6d828d279bb1f6ab25292b328b1853a09e1267c22026fe -DIST kodi-pvr-vbox-4.4.7.tar.gz 155710 BLAKE2B b8de69b536ef265afb5e30123555918a071517f2b61999889397b93ae1e06d0a695de0f604f66c011017bfe14ab251f95e75a5aec83fa0b13b69761b24914872 SHA512 07aae037b72c643ff0ca7c7fd911d77e04246caaa475a55e2ce71ee2075da68f8824d7babdfcfa31e64c27893e122c337a1fe48c769daad6acbd482e4b78297d -DIST kodi-pvr-vbox-4.4.8.tar.gz 155911 BLAKE2B bcfd48ebfa0a6378367794df5789e8cc80768a12292f88c26eef52a99007edadbb7da016109e7d29566563176e87dc75ff19e78d8777b8f263d78a23a9d4a274 SHA512 27c0d7143d70cb42ec2c57e553622cbc785e1d01aef09600030b6cb3a23a4c974d51700e80da1f3480a7e0fbacef1db3ff955fe2beab79f6ee0613065a0e556a -DIST kodi-pvr-vbox-4.5.0.tar.gz 159512 BLAKE2B 3e5cb709c0720bcbe8f1cef4ecf13e653e933329374743c089c22b806a9ed5711466fe0186bb0d11a734c368ea576dbca72bb6269ab13c10edf6fddc8707c8d2 SHA512 e2d9583e86f28e192659e19ac853b26190b7a754bf9dad3f7a2fcdc4139ce918342a97d5424b12fae253b307c1a855b599bee8776bcc4fb319dc46887003b8e7 -DIST kodi-pvr-vbox-4.6.0.tar.gz 158310 BLAKE2B 910885dd30ce4a21419118f2af536de97f3e25eb12b453752f45a7f1f96f1e3255016039af30dd138820456895e561c05c08ed9124903faaaaf55dbbb12b9402 SHA512 98a8e7a9cc6de29028bddeac05cc0c106d5b7cfd2de658cd77a9cda94ddc9f87d4b2312ef627c17ee1a1cdba7e473981c25df2fdceb1e55543f38fc6af85c379 -DIST kodi-pvr-vbox-4.7.0.tar.gz 159117 BLAKE2B 626ad92be749bc19531d7cf156e426c000843b849f3f0bbadf0fc440c62885cf227679139b83dda4950ae82708edadff962efebe0068e357a773d9b641acb777 SHA512 1f1e4a0db20e43376cceae222ef89644304838d9bad1d7e234420c8e896f7db19acebd4cb6dd484ddd99b836e182eec8268dbbee733e49773826b6e350ec7a22 DIST kodi-pvr-vbox-7.0.0.tar.gz 159504 BLAKE2B b0046434338d0afbd11b965a58ce292e5c141ab4ea13e07ddba3868e1217e50dc4d266351a6b1b6c08287bf65b7eb736d8efc9074fcfe602d30df49a41141632 SHA512 7e8965422c750e00104c27f6b67d6d14648c840684702bb85cd7350647734848ebcc43bc6cf53e2edd2c432c8e1289908f43eafb87bc7cf70652026abee0177e DIST kodi-pvr-vbox-7.0.1.tar.gz 172788 BLAKE2B d9493cee26abd8ff74aca66ea737e81a52b835c885ba94cf120f6a78e1d3132e102af3ce2aa7eb88fa3c1a522e934ce8c0d3ed935478fd3b2092f8b86ea9fb83 SHA512 fd5caada7588d14d5cce84673cccc41831379ff10f67e2b041406f82a1790e7dd46394e5bc2a106ccb3b01261eb09a7bec76111693aa1eb5131d5f275ad8f4bf DIST kodi-pvr-vbox-7.0.2.tar.gz 159326 BLAKE2B a4d463e52417ef82d13ca29dae9b6cc4e1b5582994f88ea7175410bc21fd9e0461c8b4908627f06896aaa130c3970be62af7e9652a60df8495a2b84160b73294 SHA512 b8557dd74f3d0e8a25f83cf3ec2230032f6bcfcb24f1ef21f076a7e51d65115dc583f8b8898e9dd426fb81605687c0aba203774567b9d993d5de68ba4af915fe diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.6.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.6.ebuild deleted file mode 100644 index 42079e6ec24d..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.7.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.7.ebuild deleted file mode 100644 index 42079e6ec24d..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.8.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.8.ebuild deleted file mode 100644 index 95b03e3b2c66..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.4.8.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.5.0.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.5.0.ebuild deleted file mode 100644 index 4739841da55c..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.5.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.6.0.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.6.0.ebuild deleted file mode 100644 index 4739841da55c..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.6.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.7.0.ebuild b/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.7.0.ebuild deleted file mode 100644 index 4739841da55c..000000000000 --- a/media-plugins/kodi-pvr-vbox/kodi-pvr-vbox-4.7.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VBox Home TV Gateway PVR client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vbox" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vbox.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vbox-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml2 - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vdr-vnsi/Manifest b/media-plugins/kodi-pvr-vdr-vnsi/Manifest index 9e375d1c5c04..641800ace4d4 100644 --- a/media-plugins/kodi-pvr-vdr-vnsi/Manifest +++ b/media-plugins/kodi-pvr-vdr-vnsi/Manifest @@ -1,6 +1,3 @@ -DIST kodi-pvr-vdr-vnsi-3.6.2.tar.gz 145275 BLAKE2B 40f1f21b80411c772b093a4a117522b31d93d3bc87d876154f46cfa58781e56e10d92e0dc67ca40be07a8e3e2b7c1c0a9716bd7a9b81ff21601b921b5a21f343 SHA512 ed76ba60188f513a6c43b21985522cb5e8eb8da3ffdf35ee88e95cec94c078cfc322c2e267a8837626c60242082bd61214c9ec26bff844967ce9f28f1cf885f8 -DIST kodi-pvr-vdr-vnsi-3.6.3.tar.gz 146568 BLAKE2B 375cacf90a8a7fa430f7b06a12397293df3d5aff07ce5c5fc254440bbb2a2b6f3f4e0b49687dd81a069a76801fc6ede3adcca9de11a126bb6ddae9ed7c35f4f4 SHA512 8f060373c43493ccde0e3d199470fcbf9c6e33f0457f31eb64bab4dde06e6cdbce5de0cefc9018aa7d35d8608d74fdf0f2f6e5e2b8d0a741683fa2091b4fe954 -DIST kodi-pvr-vdr-vnsi-6.0.0.tar.gz 153905 BLAKE2B 20ff651453206063ecdd5bee6f3ff469f91ab82ceb4b8f82a0aea808d596a7c98da2999297c32df64650f584877cbd685298d2441c7636857ab3a91a05a43eaf SHA512 a226fff4d88679ea61e6af39301350444d8c3d7ad564afb27bca5901d0054711dbfcdfa695c1635aecfd6ccd5063706b47230638132f37bbb5c892e86a556c77 DIST kodi-pvr-vdr-vnsi-7.0.0.tar.gz 154004 BLAKE2B 65bcc9e8745e27b440e5f2bcb848b4818220fe52cab058ab8b3f9ed0b86437469ff4826b6ba67794f3dabe210b49f0e255fbb190f84167f1b0a9075cdaa62594 SHA512 990da0a9c623d245065280d105c0060c28f7b3eb2f594092461f49092600261ab3cab107aeb4a648ee1f026d4c72dbb18d43287ea1268cb44af5bc704afeefa3 DIST kodi-pvr-vdr-vnsi-7.0.1.tar.gz 166716 BLAKE2B 86f89d819d62ac1474ce9ccfb81e3960e04ae8497bc6f6d9113bc0b9c8f11370d6a8bad1666ffe68b836b35a245a3543aa17e4ebb5a7b945aea2caf4e25c6cf5 SHA512 f81c69445b412d04e15ae542fd9aa2fc410fdfd683525b9a06a0ec917b850958d40f2ccb340765cf0b9670151a830b85f224fb826f84b714ccc1cc09ec9bc46b DIST kodi-pvr-vdr-vnsi-8.0.0.tar.gz 166811 BLAKE2B b1112bfecd04b9c5f2d408c4e74a523e04d887307efcd607002bfb713d72afd5cd9dfe0ee157ed75ef461b1e532005c966ce2e6ecd1e9e658defe192a94e93ae SHA512 14455d7ad1786bc00f4da45c4699f8e737c63161dad04373f072b41d1952a51a21b1daca4cfbda8e0dfefe8a6b2fe3ca4fffd1b162f6946c3854ce1fe263d5cc diff --git a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.2.ebuild b/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.2.ebuild deleted file mode 100644 index d8a1ed02d609..000000000000 --- a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi PVR addon VNSI" -HOMEPAGE="https://github.com/fernetmenta/pvr.vdr.vnsi" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/fernetmenta/pvr.vdr.vnsi.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/fernetmenta/pvr.vdr.vnsi/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vdr.vnsi-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3-r1.ebuild b/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3-r1.ebuild deleted file mode 100644 index 01ebe54129cf..000000000000 --- a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi PVR addon VNSI" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vdr.vnsi" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vdr.vnsi-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -PATCHES=( - "${FILESDIR}/${P}-remove-kodi-platform.patch" -) diff --git a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3.ebuild b/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3.ebuild deleted file mode 100644 index c25707972ae8..000000000000 --- a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-3.6.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi PVR addon VNSI" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vdr.vnsi" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vdr.vnsi-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-6.0.0.ebuild b/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-6.0.0.ebuild deleted file mode 100644 index c5a36ea070b4..000000000000 --- a/media-plugins/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi-6.0.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 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi PVR addon VNSI" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vdr.vnsi" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vdr.vnsi-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-19* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vuplus/Manifest b/media-plugins/kodi-pvr-vuplus/Manifest index aa6d8ec6072a..e7f2be72eae0 100644 --- a/media-plugins/kodi-pvr-vuplus/Manifest +++ b/media-plugins/kodi-pvr-vuplus/Manifest @@ -1,13 +1,3 @@ -DIST kodi-pvr-vuplus-3.28.0.tar.gz 194160 BLAKE2B b2816a456df275f31876a2e23bed3881a85b738b3e15dcedba813c9ea1bd2618eefaff0f856916e51e15af32aaa3a307cdf613d78b910e71e38e90d6f44aa85a SHA512 9d3ae8d5fb537ea32d7eb5acfed9bbdd438e09b3df70d7d7f1f86bf8b2e8455e1e9ef0b1010f8a0e96d94f869e885df1d7728da63a642b527d4488f767abe434 -DIST kodi-pvr-vuplus-3.28.1.tar.gz 194180 BLAKE2B acba261ac7295a7f1229585ee904e5868f7c8fcfeab250e7f202d51348263b58421baa4d65c0830bc1a5860ba7599e5e3312a8bb6f6d6e8c3b5d8aef87669cc3 SHA512 43cd9e232f11c950559a26be582f3cdad0229a6f9cad20394669455f5f9b288fb24929965737cf8294d961b5e0d142c5eea44425c0488df18f7006d0ec53c06a -DIST kodi-pvr-vuplus-3.28.2.tar.gz 194268 BLAKE2B 7233b934fce27bd04043231fd95b366ab4034ec8f84d5838e1dd0f89c8c284025f655600b87bd038fce742d26ac2a9314107a9c0c3a9679577a8cc5a4d318703 SHA512 a873564550eb771f89d3774bd39f334d8c24519eaa1041b4d54449952cd900351e0c5613b57a87ef6b69fe6a8b813d1a9412f87d205db5dd33f0256ac3a6680e -DIST kodi-pvr-vuplus-3.28.4.tar.gz 196505 BLAKE2B 4f901b662f3ac02b3be6e80cc774d0fe829c332f60fde51d2b729320cc3eee09f3ca2a716e224920ce852f83ec1759dd41e627b83fdd97088626eca2a3c2c157 SHA512 aa19a5d576ff25dc63a2d5d21939a950bb085a13131891149f6dddd0e61cf74df07e18f870b58054da8088fc545e220698b856ecc9131b728dc6e655a65450bd -DIST kodi-pvr-vuplus-3.28.5.tar.gz 191633 BLAKE2B 77fe326028fbc04b98a20d0fa43296610c98d6b499e0b68dbee0df08ffd33ba0b1a3d7726e682a3d8a8b1614f1564a026053fdf6b01eb6f3084fe4a504c739d4 SHA512 cf6b70a7e721e357f218b55901c2a5837721ae1ca19b2ad9027d10501fce1d6f481ca2735d41dc5daccf00c9889a5a8e925379e58da04708be9ba6a583612fc1 -DIST kodi-pvr-vuplus-3.28.6.tar.gz 191715 BLAKE2B cfcb0c47fc0960d2383ab11f1e6a5b653388a2a3675e512d9887aa2ad69370e0a46bdcf25f7fb44651e82ea696b5c33d6bf1e829b85aebee6117f05062ca814a SHA512 332cb9034b90fb9728fad3662441b26d5fe419820ea6403ce3c4e8249217f9011363ce0dc0bcc658c4373dd3b526f251ecf0da20ae1a5560c013c39b3b243272 -DIST kodi-pvr-vuplus-3.28.7.tar.gz 191502 BLAKE2B 9f24e8ff3e15b7acfe7c395ca048bdde6f9406b382fabe047f8959407a3be0ad46d7f0755fbd19ddcd45e3220d1c7a502c415604671c63b86393272f177d7c86 SHA512 e8b5de5d23691c44b85167b2817b8fba450063b780b26969b9465bf41875a6debff2945d47e84be4adf7b76dc6d0f16a5995a77164ed7ee34bdb7db2466421bd -DIST kodi-pvr-vuplus-3.28.8.tar.gz 191564 BLAKE2B 101fcad2195127674ac04a24191b13b39c448e8a10277ffb8de92b9d9bb9c571957eb14b8af273f228972061c677f21afbf1fb73da6e405d0596bfc15f98e517 SHA512 53e3d0fcebb8227e0d436011eddb326a3ab80a3a913c3841423cf835cab4d2e7f155d61547d1ec4e6913715a986bee6883b7443e6a3a1a56dd750a08f4b317d8 -DIST kodi-pvr-vuplus-3.28.9.tar.gz 191836 BLAKE2B 1b35fd8e639bc28b0e8be6863bd7ef79ce7c058e7cf531a00b4373ce43cbbc2d66e9e23048514055eb2bc08838ce4d3c919111eb5872dc4a4c9b253c2b301862 SHA512 de5a6cdb4552ef7c86cc250a14ec24ec4729c6a41a99bf72d43ed7762a66b87d061b6c94875bf7dde51ea50213c99313fecd4b42327fdce94d3549214d9dcb9e -DIST kodi-pvr-vuplus-6.1.1.tar.gz 278369 BLAKE2B e8c9ba3a00fbe467eb4779d22ff189e24189d546050a6d69c1a982c4c797adab31eb760a68eee19ddf22f6fa94ca5a9405f4ad7cd9706246b8c899679b05c615 SHA512 87de5784610275051f68fc732d4a53b218443d0e93b2b1a7e2f4b07cb285e888cf66dc26de0b947080763f5cfa3a58a7ac3363ca00254b4956cba8edba7f7a69 DIST kodi-pvr-vuplus-6.1.2.tar.gz 278841 BLAKE2B ab74d558ef6d2ecba91942968c4800b04ec3d3f6d383de51fe3fb6fca042f8613989d5e334e11c97a7c8fb52b57c1232913ffe1ccedb840293be3b4f6c8eec92 SHA512 174a49b7aea537c05a6e102fec72ceee59e58d9f3f06dbef81ae24a35ab302f401ca43297cd09c74a52072311db1c9666b31f57086751c4c70564dbf910a1180 DIST kodi-pvr-vuplus-6.1.3.tar.gz 278849 BLAKE2B b95fe39455e15432450f3ba0c6204004295ec6d883c8afeabbaea6c69ca223bdb4e9874a0973b780459c123a2c62976c2a94f48448d9038b206f9433e8a54475 SHA512 97a1f3b8fe968966634bfbd36dfc9b9a7b455d2854426dd467103279a24e5142ee657be4118872032e652071f3b83f4b4f911b00470273c7152a98d4e1430d94 DIST kodi-pvr-vuplus-6.2.1.tar.gz 265691 BLAKE2B bc1216fee4853228f2dd306ce95e56eead0a1086bbf73e52f494f93edea16a472a36644dc16e49dd6a7ab55e595ec2ebf2a6d715d5fed9ffc3baffaf67e735cf SHA512 dd98695c6d6aa2f4d16353fc901419f66cfdbaf8cb925d3610c14fde38c2b7dcba387dae5f51542003c33525f98a98623d860a9526e0939f142b576191251537 diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.0.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.0.ebuild deleted file mode 100644 index 116b05d8ee7c..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.1.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.1.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.2.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.2.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.4.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.4.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.5.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.5.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.5.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.6.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.6.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.6.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.7.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.7.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.7.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.9.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.9.ebuild deleted file mode 100644 index 4c2a9805262f..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.9.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-6.1.1.ebuild b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-6.1.1.ebuild deleted file mode 100644 index 514a694a91e0..000000000000 --- a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-6.1.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's VuPlus client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - =dev-libs/libplatform-2* - dev-libs/tinyxml - dev-cpp/nlohmann_json - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-pvr-wmc/Manifest b/media-plugins/kodi-pvr-wmc/Manifest index 07e73537acb7..099702fc0c3e 100644 --- a/media-plugins/kodi-pvr-wmc/Manifest +++ b/media-plugins/kodi-pvr-wmc/Manifest @@ -1,6 +1,2 @@ -DIST kodi-pvr-wmc-2.4.4.tar.gz 178508 BLAKE2B e1d80860ade2a639dd65a9dd541657ee29032facf95c427fd38038f5df28f5cc93622f00809228ae7968786b0d5499606c38eb79adc7ed9200b4e94e2de26206 SHA512 9932d3c44dd91ff371ef34cd9fbbbe1485629116b102c31dc7292e32f82869727423195ae9c78969d96e3a03dd22d481cc0708212921acba0524759a4acaad8d -DIST kodi-pvr-wmc-2.4.5.tar.gz 179019 BLAKE2B ba116c687bcfbde69600a9fe9ebb22dec334768f6210b568be4d5b4b75c964d9d50764ad841f000af4c7656ad5e5b77721f9a806f3d63de5ec742d74d2dd3bb2 SHA512 d3c7abdd99190bfe5dda191d2811db8879ad916d6083042f9c84f30c8a0ad2a2694141df33ad1c7624387e4488c7aa2853c0fd84dce4f3c75b1897c256ca6154 -DIST kodi-pvr-wmc-2.4.6.tar.gz 179322 BLAKE2B b82761c76fd1d49400f5aa38ebe32adf6984b94c6d6feebeca2e0c6b31fbc413960af7a09955bfc0a5a50d454a4cc52a36098b74313a4ce673b08802ac109525 SHA512 2912d57f1d9d03d7f40c041c76737a620205e5fc81c6fc72c34c2f4d12e0fd18ccf185d78501dcd0b633aef3d5d2ce91d4201b60b92e0f6ac59d36df5eb19d15 -DIST kodi-pvr-wmc-5.0.1.tar.gz 184896 BLAKE2B 28f321f9a6da6c96ec3482bcdd6939229f121b87e5378429b9a37b1638d0c9d3682d9442c5b0cc544b97fcd60d84dae5c442d4430ed0a5bcda2d7bbe52807be1 SHA512 f705915c1cbd47a024d53709f734c6e5ec4bb01f2b6e648a9c385712ed8101340c8a4fd45d4ce16a04de29e73c5fb9ecaf8163c7c30f848bd2acada6cf66804e DIST kodi-pvr-wmc-5.0.2.tar.gz 184922 BLAKE2B e1515a79d94bd4950af4f1c1058f0db4527f5af51dfe5368e4f7762505c6db8a8e986e4f17a99a355952c12a558d81e088a36aa2e2ac82803c4e2ca0e94472c2 SHA512 aff8f1e8bcb2b8fe6e4137b8af1c61e8036d262953f21f4512e40d7b9b5925cd078d021c569e1e51a7d260db5c90ddee8e3c158499d2cd656fd4861ecc90e0fe DIST kodi-pvr-wmc-6.0.0.tar.gz 185044 BLAKE2B 203e99e82edac23fdbb59fae1fbaf840358978473fe01a7b0630b1d1d79b3ab2236fbb0446f8170d8345e61f752d02f8fd9a61be82b89c9fa77b718306a3d097 SHA512 c1d14bdb037140dbc5339d823312af15e75d70f177396487e4947b3c8898980ac49cf689c06ee06728748b80839d1e3ed44cf790ff84f698fea800deb4b6bb7c diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild deleted file mode 100644 index cd20b116f137..000000000000 --- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Kodi's Windows Media Center client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.5.ebuild b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.5.ebuild deleted file mode 100644 index 76afe485b98e..000000000000 --- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.5.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Windows Media Center client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.6.ebuild b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.6.ebuild deleted file mode 100644 index 76afe485b98e..000000000000 --- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.6.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Windows Media Center client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-5.0.1.ebuild b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-5.0.1.ebuild deleted file mode 100644 index f1ee4b584ccf..000000000000 --- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-5.0.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Kodi's Windows Media Center client addon" -HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - =dev-libs/libplatform-2* - " -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-screensaver-asteroids/Manifest b/media-plugins/kodi-screensaver-asteroids/Manifest index 57ae2bd95276..fcc5a68e8d52 100644 --- a/media-plugins/kodi-screensaver-asteroids/Manifest +++ b/media-plugins/kodi-screensaver-asteroids/Manifest @@ -1,3 +1 @@ -DIST kodi-screensaver-asteroids-2.1.0.tar.gz 18838 BLAKE2B 26504e8a10afed55a780fc18e127df7029adabff913baf4da89e76ebc1ee1bea46431e4a578f8273335a40a30b0bf8e678c86624e75fd3419696c3cb9d494a69 SHA512 61d848aa136ab3a9896446d92c5bc8d02867bcdc67b8eed58cff0b9c3573c52a19b4d16de5494dc45c0f69946075749d73e8681858d534f8cbbe31d005a9a5c3 -DIST kodi-screensaver-asteroids-2.3.2.tar.gz 117462 BLAKE2B c17837e244baeb65cfef11b8f9a20796922aae19ff48e95baff52163ad2ad44e272e219123ab875ca017a1347d77d07a943991a7822ebcae9e8d96ce881b77db SHA512 1ea720ba96e65e2d63984ece928f40d60eaacd207cfa64979f1fb38e779957bbd91f41df0e0dcb0bad1b3efbb5dd9be17f2a06bcbeb3c06e7a386c07e99d22db DIST kodi-screensaver-asteroids-2.4.2.tar.gz 120463 BLAKE2B 3ec2c8142f8d763e85095f6c89c59583fb0ca309c18a57407fe456113dd8964f6bd896c23fc6d86b9a4d1aacb25e097202e52844faf9272e08d507e50f523ca5 SHA512 795c7ef2eaab9e1801d48430b9544a7f721d45ad5aed79ca2e361b16186043dd2ac9dc2b47ddf459744717f4704c9212d23c18df9da6c1bd158e6e6e9ef76fc5 diff --git a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.1.0.ebuild b/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.1.0.ebuild deleted file mode 100644 index fc030729fef3..000000000000 --- a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.1.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Asteroids screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.asteroids" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.asteroids.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.asteroids/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.asteroids-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.3.2.ebuild b/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.3.2.ebuild deleted file mode 100644 index 27287d27bc2c..000000000000 --- a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.3.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Asteroids screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.asteroids" -KODI_PLUGIN_NAME="screensaver.asteroids" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.4.2.ebuild b/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.4.2.ebuild deleted file mode 100644 index dc97eaddcea5..000000000000 --- a/media-plugins/kodi-screensaver-asteroids/kodi-screensaver-asteroids-2.4.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Asteroids screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.asteroids" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.asteroids.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.asteroids/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.asteroids-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - media-libs/glm - virtual/opengl" diff --git a/media-plugins/kodi-screensaver-biogenesis/Manifest b/media-plugins/kodi-screensaver-biogenesis/Manifest index 281d8073d058..56d0ebf3c2f0 100644 --- a/media-plugins/kodi-screensaver-biogenesis/Manifest +++ b/media-plugins/kodi-screensaver-biogenesis/Manifest @@ -1,4 +1 @@ -DIST kodi-screensaver-biogenesis-1.1.0.tar.gz 8792 BLAKE2B 7e6d64cd5e4e53fc3c53adad6bfb66f2ee9bceaad5ee2a35243782a931d5d2eb67af4ac5489cfae52d5fd5240ce1b2142feef9c80306276d86f91b697eeaca8f SHA512 db970113a44d87ccf44c520d5d6adfc640617ba9fd01f0b0114129d1901b2e853804871d9f5377a0869034b2379663922069545f3a7bd38f98b2d9894013c5ae -DIST kodi-screensaver-biogenesis-2.0.0.tar.gz 10579 BLAKE2B f6dbd9f99b453f33b3cd2650d901c4fa39b98ce77382362fa93b1d2e31a54a23394677006b3be97b8bd1626c97564ae812f3452bd17f9cb165914d8793e2e00a SHA512 3aa4668f009561b3615d68d7a61d47a86970e32ff97012f1a9a7ad8dab367008267949d736c47a913f878aced1daae8768c2531d3af6239419470baa2e9f835c -DIST kodi-screensaver-biogenesis-2.2.3.tar.gz 141092 BLAKE2B 64d3f9b4b87a7a6533fba653ae8e281777a6df6ff085886e9e556378203a0badd52e2124fd4f5b01984c24caf84b07bba6cb40a6c7b11e3e0a89e55ee83ef4f9 SHA512 62f96e318766d609110fdddd3d56a56b7402630a137a7ded051a60b042c9e8f5e7b414d5d48d760c16cc272bbaa5f664478ed7beec216e2d8f6ce5b363ea4f9c DIST kodi-screensaver-biogenesis-2.3.2.tar.gz 143025 BLAKE2B e454d8fdca397b163d4e1d4856257e3db819423706b153e833b39a3f789b493073a0047456eff75f912b26723fc63f7b6956eeaf88d410a786a8b71266c76b77 SHA512 c4761f486aebe08df8811ff54bc32ae0f44e416bf2bf22f639478ffe27f26d2e4239704f6e8f93871a9d9c7903351e04ed05295d60345e8eb829c82874c6cfc1 diff --git a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-1.1.0.ebuild b/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-1.1.0.ebuild deleted file mode 100644 index 2d4344f8b9c8..000000000000 --- a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-1.1.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Biogenesis screensaver for Kodi" -HOMEPAGE="https://github.com/notspiff/screensaver.biogenesis" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/screensaver.biogenesis.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/screensaver.biogenesis/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.biogenesis-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - media-tv/kodi - " diff --git a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.0.0.ebuild b/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.0.0.ebuild deleted file mode 100644 index 0b42f0daabef..000000000000 --- a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Biogenesis screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.biogenesis" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.biogenesis.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.biogenesis/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.biogenesis-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.2.3.ebuild b/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.2.3.ebuild deleted file mode 100644 index a8276426225f..000000000000 --- a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.2.3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Biogenesis screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.biogenesis" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.biogenesis.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.biogenesis/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.biogenesis-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -RDEPEND="${DEPEND}" diff --git a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.3.2.ebuild b/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.3.2.ebuild deleted file mode 100644 index fc33cc303c55..000000000000 --- a/media-plugins/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis-2.3.2.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 - -inherit cmake kodi-addon - -DESCRIPTION="Biogenesis screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.biogenesis" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.biogenesis.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.biogenesis/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.biogenesis-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " diff --git a/media-plugins/kodi-screensaver-greynetic/Manifest b/media-plugins/kodi-screensaver-greynetic/Manifest index 1d710e815d4b..377764feb5e8 100644 --- a/media-plugins/kodi-screensaver-greynetic/Manifest +++ b/media-plugins/kodi-screensaver-greynetic/Manifest @@ -1,4 +1 @@ -DIST kodi-screensaver-greynetic-1.1.0.tar.gz 5115 BLAKE2B 357a4d51b2271c4181a33521f8cd2b0ab991d168f4768474bcc81c64b3f058b8a84b1e5ac812abad650de22f925f894ea0fd3aa35b7a33b63413a7fe783ceee4 SHA512 ebc35da057f425ab5a4832324f4e26bbd6767aa1aed13177073caab8a099b4a4cbcb6e9c84ae88970eb13401bdf411422588ed9ba83a9d5d9749c3add6e43375 -DIST kodi-screensaver-greynetic-2.0.0.tar.gz 6608 BLAKE2B bb48adc922d3949670d3685ca4adba7d608a42e9f9c0c659ca91a26e9181568f4a6d1f1f9aa707eedb395a9eb54c4aa40a83b36b6594bef5f9159ead5585381a SHA512 15a577bb9e10f81d86582eb43c20b4e2dcf430f478c76b3c18c1800532e38d9dc87754b7e0df669ca8df4e1d4d589224c561688a4fd14528c70dc6728c7be16f -DIST kodi-screensaver-greynetic-2.2.2.tar.gz 334717 BLAKE2B dddfd2bc96d7b08dd8107b6830c5db3fa999a34f26845bce3f5be11442bc8e00aa7415be2312192af785710773648cdc8a5f1019be7e74e522641c216a1eb741 SHA512 2ff75111db2df696055bd7b5d447662bae8871f05750f9753f646d9167d57d694442efe59ec277c0de0b064d6f5ab0d73f3c8cc1d1e918d065e35646d3311b41 DIST kodi-screensaver-greynetic-2.3.1.tar.gz 336191 BLAKE2B 54cc3f93bb18c315e75faca68dd7683e7afb50ebadcad01c33e60457958702205d51321b665ac72c95f4d758ddf896b9bb120e4a9a9315be33d24f9c1707989b SHA512 e4e6e513c4b2c7476ee0f29a436abf102a196e5c307c17e9b197572cc7eb7a12890033250a8115ea4bc43baec0f5cb87f1103413a7d6b852235f0710b4086279 diff --git a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-1.1.0.ebuild b/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-1.1.0.ebuild deleted file mode 100644 index 46c8e6cebc5d..000000000000 --- a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-1.1.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Greynetic screensaver for Kodi" -HOMEPAGE="https://github.com/notspiff/screensaver.greynetic" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/screensaver.greynetic.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/screensaver.greynetic/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.greynetic-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - media-tv/kodi - " diff --git a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.0.0.ebuild b/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.0.0.ebuild deleted file mode 100644 index d018688d7843..000000000000 --- a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Greynetic screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.greynetic" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.greynetic.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.greynetic/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.greynetic-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.2.2.ebuild b/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.2.2.ebuild deleted file mode 100644 index 846592b822fb..000000000000 --- a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.2.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Greynetic screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.greynetic" -KODI_PLUGIN_NAME="screensaver.greynetic" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.3.1.ebuild b/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.3.1.ebuild deleted file mode 100644 index dd0202a1506c..000000000000 --- a/media-plugins/kodi-screensaver-greynetic/kodi-screensaver-greynetic-2.3.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Greynetic screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.greynetic" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.greynetic.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.greynetic/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.greynetic-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - media-libs/glm - =media-tv/kodi-19* - virtual/opengl - " diff --git a/media-plugins/kodi-screensaver-matrixtrails/Manifest b/media-plugins/kodi-screensaver-matrixtrails/Manifest index df948ec23d67..8a254093f20c 100644 --- a/media-plugins/kodi-screensaver-matrixtrails/Manifest +++ b/media-plugins/kodi-screensaver-matrixtrails/Manifest @@ -1,5 +1 @@ -DIST kodi-screensaver-matrixtrails-2.2.3.tar.gz 1669456 BLAKE2B ebc44866ad1c7b42ff3f0efd0fc1fdb33c2552e432735b0a196388f57e7405e6115b0fa316ccf0840f593aaf1ad0eb333ba0ca0b8271e7152a2cd5d1707619d4 SHA512 5347dc6b7ec32bc305ee71859070229609367a3231f8ca18e4712588f56387cec4c5591abbda2375d047f951f8482d96ed93e8224cb1afd92cbbecdbf151b03e -DIST kodi-screensaver-matrixtrails-2.4.2.tar.gz 1679056 BLAKE2B 1f8ff378de25aae23b0d97702364e322c1e941610ca2afad42f947d7e2ac352f1911ba75cef68b4487b1660eacfb502ba37bbfb55eee284fbd023848a6cb4921 SHA512 1d93ede840b578aabbc83195e1234faf4a4e8408dab94a0e7573e49df826878f5618fc49348c1f1f24c947eaeae7406aadd1bc4e0405a6155c92f32f7c413d71 -DIST kodi-screensaver-matrixtrails-2.5.0.tar.gz 803916 BLAKE2B 81e96e2a713e2744c29637570d16a06b5005c8ef562a568d8ff1d5cce2ddebf389b7c6bb274fe6f71d7e8ba3de79d42cf647fdf267930d894d7d29dc1c458360 SHA512 5a1a4f882feca5c990349f17953bb7645eadf1e06688c437a3efe5fdb79b0c6d3dd86108bc20404c1b1ecd73f4d648e86f31041394fe77a3ad8d081cd98f6e37 -DIST kodi-screensaver-matrixtrails-2.5.1.tar.gz 855195 BLAKE2B 2ec475f0e9c7647aae659501c1868db1d45b3e00ba42f292a15092bf9e74e650636942c93f7b000c5508d92db63a6d52dc87e134b354f36fe1424e4e6a063970 SHA512 074c8438bc1ff3a79d1ae0dea5dbad09599302c1440d0d7c57acddc8eb91da14c977f412086493b183b85aedbfe53c8c6e72d1896242b27ba36e14ea5569ca9e DIST kodi-screensaver-matrixtrails-2.6.0.tar.gz 855189 BLAKE2B 6a8525da2661a6d34deb28d068c791d7a7fe9339426d258cf4d96facaff3baa6d6e115e3f1333fd8649704d7f836d09dc8570548f490f0986d33d70abe2532bb SHA512 8770021c999539431a5a6acce1e892639133c0856d30d74c7775038c87a922aaed216806cbcfb71f680593f9227cc3ed45b10631b70f489b7dfda2e4221381f1 diff --git a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.2.3.ebuild b/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.2.3.ebuild deleted file mode 100644 index 7ac2462f0896..000000000000 --- a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.2.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="screensaver.matrixtrails" -DESCRIPTION="Matrix Trails screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.matrixtrails" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.4.2.ebuild b/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.4.2.ebuild deleted file mode 100644 index 497606cc108f..000000000000 --- a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.4.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="screensaver.matrixtrails" -DESCRIPTION="Matrix Trails screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.matrixtrails" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.0.ebuild b/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.0.ebuild deleted file mode 100644 index 497606cc108f..000000000000 --- a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="screensaver.matrixtrails" -DESCRIPTION="Matrix Trails screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.matrixtrails" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.1.ebuild b/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.1.ebuild deleted file mode 100644 index 497606cc108f..000000000000 --- a/media-plugins/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails-2.5.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -KODI_PLUGIN_NAME="screensaver.matrixtrails" -DESCRIPTION="Matrix Trails screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.matrixtrails" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-pingpong/Manifest b/media-plugins/kodi-screensaver-pingpong/Manifest index 3a6b4259e2db..da62c68de534 100644 --- a/media-plugins/kodi-screensaver-pingpong/Manifest +++ b/media-plugins/kodi-screensaver-pingpong/Manifest @@ -1,4 +1 @@ -DIST kodi-screensaver-pingpong-1.1.0.tar.gz 14476 BLAKE2B ce9a13968394ff607beff2fec8ea8b2e17a8bf7b08cd7be12af426dc45c100a666fb104a5cfa05287b6e632cf51d7d27b6d504d481fb4b6ae85066ddb179be08 SHA512 304bb57cb4d5a9807ced12ad1503f7a1be0f57b2ccc8a024651dcdba83ee17fb1b3adde1799b62d41c0ad2fc75ec0757dc06492c9b3adb5b89e6ef77a63856b7 -DIST kodi-screensaver-pingpong-2.0.0.tar.gz 16768 BLAKE2B 1b4864ae3b88245733dec758cd815ff7a9f4673e1ab249275239c4ac1cdf04fbd256001d5ee984bd509730094b91cfe1d2e683169624f87192dbebcd4dc98f74 SHA512 c754b38a549589488e524e6b61088b3d9afe8f2f76bd65aa72901c7004880087cc7cb614f4b1cde49b0200a11f2f57181be913523a8b339abb6c26589a6a3d39 -DIST kodi-screensaver-pingpong-2.1.2.tar.gz 23187 BLAKE2B eca285634708491d2a9ae4a00bc203b99b8d13c38e7c852060e9f4b89907c01204f231769558e7111a6c1700a48f7a78add0dfbb388bbe56cad9dcd589816f8d SHA512 d7a1b316920a4ecea88462c6ade886f8bebf35d4b2be7108eca8fc929838c01b02a1f7cc1dce5ce89f677e84cea7cdd7eb259cc23fb70b6760bf2eb57d6a9e5d DIST kodi-screensaver-pingpong-2.2.2.tar.gz 25546 BLAKE2B b396f1e7e167c46b1acc49587b25bbb95b7310b5f10ec4a35daeaa752cd65fc3919811453c5be0b93ac807b6775db27f4f4be9be1183766eabe287e4b1b16a16 SHA512 bf7df6298a182479c676434ec23a20c120e2483a921ed7bc059f0712d7b0e1a8e97e2c140205a243321eef755cfb6e346aba9122924b59dea29ff386a94173ee diff --git a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-1.1.0.ebuild b/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-1.1.0.ebuild deleted file mode 100644 index 554471db61c1..000000000000 --- a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-1.1.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Ping-pong screensaver for Kodi" -HOMEPAGE="https://github.com/notspiff/screensaver.pingpong" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/screensaver.pingpong.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/screensaver.pingpong/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pingpong-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - media-tv/kodi - " diff --git a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.0.0.ebuild b/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.0.0.ebuild deleted file mode 100644 index 40ed6c4dd4b5..000000000000 --- a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Ping-pong screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pingpong" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pingpong.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pingpong/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pingpong-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.1.2.ebuild b/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.1.2.ebuild deleted file mode 100644 index 4ed074531ad3..000000000000 --- a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.1.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kodi-addon - -DESCRIPTION="Ping-pong screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pingpong" -KODI_PLUGIN_NAME="screensaver.pingpong" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.2.2.ebuild b/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.2.2.ebuild deleted file mode 100644 index bec402307a6d..000000000000 --- a/media-plugins/kodi-screensaver-pingpong/kodi-screensaver-pingpong-2.2.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Ping-pong screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pingpong" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pingpong.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pingpong/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pingpong-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - media-libs/glm - virtual/opengl - " diff --git a/media-plugins/kodi-screensaver-pyro/Manifest b/media-plugins/kodi-screensaver-pyro/Manifest index b7f33d4e25e8..aa24288e439b 100644 --- a/media-plugins/kodi-screensaver-pyro/Manifest +++ b/media-plugins/kodi-screensaver-pyro/Manifest @@ -1,6 +1 @@ -DIST kodi-screensaver-pyro-2.0.0.tar.gz 6502 BLAKE2B a0ccc3346f6482db303d4d12104b09611fcc21658eefd23a6af7610cfcff996e2e6507f90da1a8ae3b853a5104da1d4d2a316ae5a335c14e1af4c88b5ac6a7fb SHA512 383fd40fc2bde9a1fe52126300b6279ec78ceab773bd6a763c8b72c3d3ed9b04e5b15eaa0de6da34af7e1d86046807e4734f75e524fa8335bf18cc8bc3965360 -DIST kodi-screensaver-pyro-3.0.0.tar.gz 81858 BLAKE2B 4d48cfeee5d51c45e0caa99e742226ed6f6b0704391d657be8863ffe76acfeb2e3f3740903cec89e0dcaa2dcbff6109fb91e582c5855598b9fd75549880ab87a SHA512 92335e156950f7da5800dc9c9fd57262a2d608d63cb2015e3f5711686b657930f05651a35e043480ed64f40cb34a3228c44b6c641b63a8d0438e0944abc09515 -DIST kodi-screensaver-pyro-3.0.1.tar.gz 82462 BLAKE2B 166dd754877ae9567fcf3983080ede532c2db0c577242232cf89a4b05ef2ea1cad2db6070d1e9756140f196c2c7f319d011b1f5c6b0b7454844b5ea14d9267c8 SHA512 bf2b248d2448342cd4b4e1b7c8b77ff1391050221a6c229f6db0e21cd7b9192ee925dedddbe2361b8cc2a2a943fbf53670f2d3832bff5cfbb29dea08896c9acb -DIST kodi-screensaver-pyro-3.1.2.tar.gz 84503 BLAKE2B 3bb804f971a116ef3bc8ac46a4c887d818d2d51769ca4af8dce4ca4bebefe486d52e61adb9f57ba8c746c69aefbcad27d8b1cb9dbcd0291927e7264d67527f2c SHA512 4de06ae2d2a3665f2614d28249b99d6fa8559d8d0c876aa5dc6e2ac7a4731d016a7e414f312e4537b8b3da01d66a3759fe113b9a1bdfc3b3a1f19530638494e0 -DIST kodi-screensaver-pyro-3.2.0.tar.gz 84597 BLAKE2B dc1571c968869be00fce0432b660fe6c4cd9eed9e68c71a8bf666de3d6e5651e65a7104b5859977f43634cc7a7bddeaf427aa0d9138989a3495cac1deaac2951 SHA512 0e416e89ece7835246b5d71aeeb00347b140c2ab6459c5a8f1809cdee44c7d6e67bd57262c88f13ca2fc0175101d5bfcba5d672911a9f29999f31a193c451a9f DIST kodi-screensaver-pyro-3.3.0.tar.gz 84587 BLAKE2B c4f18f1016fc98d7dfd631fe6b8d50731bbc4756b5b92f74a437219e2c2fff726474be6f63a7def7352f73303867f9e5882d5e28778adb4f21082cca367451d2 SHA512 e12ad6ba0d49f1e479da7d448646ff1d0bf5521d59c86b0652e03ee932e7de160d67d96d8d55a79830a9c04271f5d9a2f4f45cac98a1146265eb204e0b2d8826 diff --git a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-2.0.0.ebuild b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-2.0.0.ebuild deleted file mode 100644 index 0455e7ee5e59..000000000000 --- a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-2.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Pyro screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pyro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild deleted file mode 100644 index a51a4c182589..000000000000 --- a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Pyro screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pyro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.1.ebuild b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.1.ebuild deleted file mode 100644 index eddc2c61ccb2..000000000000 --- a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Pyro screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pyro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.1.2.ebuild b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.1.2.ebuild deleted file mode 100644 index 6b20cc260690..000000000000 --- a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.1.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Pyro screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pyro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_BRANCH="Matrix" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " diff --git a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.2.0.ebuild b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.2.0.ebuild deleted file mode 100644 index 6b20cc260690..000000000000 --- a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.2.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Pyro screensaver for Kodi" -HOMEPAGE="https://github.com/xbmc/screensaver.pyro" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_BRANCH="Matrix" - EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - " diff --git a/media-plugins/kodi-vfs-libarchive/Manifest b/media-plugins/kodi-vfs-libarchive/Manifest index 8435b3b19642..dace39c470a7 100644 --- a/media-plugins/kodi-vfs-libarchive/Manifest +++ b/media-plugins/kodi-vfs-libarchive/Manifest @@ -1,6 +1 @@ -DIST kodi-vfs-libarchive-1.0.2.tar.gz 21985 BLAKE2B 0d3b8d7405cc7ea1a766a138b4327de295811f248ba50ab085d223406e172607ff08e1cd395b8d421e8f81a7339e9f053a4542567007803ea6285b52907d2264 SHA512 fec6506e4e85da9cde8fb5b800486cd95666bfcf834e4da9331ee67ff35880507175249229504fd3e10d3b3b475ffc8d1bd90d5c5ad0d3457dc5cf01eff36f83 -DIST kodi-vfs-libarchive-1.0.5.tar.gz 32808 BLAKE2B f822cfb188d5d6ff2f5237fc3d242b7e9095d967314d9701a1a1635ff7865b9fd4d836686af5dd6afc90fd52c097952937d0ed7c02eb56c4c51b335d8f9b328c SHA512 3d9c5d1b8cba0545ca2b30a3a72d2ed930324329968f17a1fe3c145b54632d8d60dee45efdc1d7e74f7872503ce893101c71b6d9063b372de912a60980c762c7 -DIST kodi-vfs-libarchive-1.0.6.tar.gz 47484 BLAKE2B ed0140b6266884c277f58d33280942cd2274e9b07a73a6471a58eb0fff54836d54c8956921617fc92e332d318451af6fb58df85ee5be2fc20c8d1c359c1d6126 SHA512 395f226640fca5adc31a3dc12e99c25bf379d531f5ee972a8c087afeda6d872add1aef8bd66aabed53671a6657ea223a998521902a7ce8c9d4c96384272b8b2b -DIST kodi-vfs-libarchive-1.0.7.tar.gz 53326 BLAKE2B ad9088f04cc4b4ec19b10535bcff3d2c8d4fc33eb0751f7d97be95d68db9359a9598be806e03da427cd7a0d75c26ba09be06c1277f1e235900ae00240fe6e2c2 SHA512 982d691e290aa3aed5c9822903a540a13a5f65f3b85d52987ee2bedfcd06faee7bd7745d8e614a5e6502f102e637baed111e60b371294b658ea1f733623ad53a -DIST kodi-vfs-libarchive-1.3.0.tar.gz 54434 BLAKE2B cf5c0e039d6054c249e5f1699751f20eada69953d69b67c7203d0b99ad65356a94a918c6feee61bae1e536e53f63d59cdb8cf006042811a80222f210f62bff86 SHA512 b53f76bcaed7f9f8e8645972901a7394b3e2bf481bb0044f54f98314b3593b80922dbd30027c5ca808d5dfc9822d2b0b69265b4bcb4fb529a1ac4bcd8e33c9d3 DIST kodi-vfs-libarchive-2.0.0.tar.gz 56515 BLAKE2B da4e7634b908677871931eef458d44d7088e6bc9ed19c39462154b3eda0c5347e42306e8116bf072acd1d59642113be1f213b23113680c4e4b45896d2d425502 SHA512 689734fe24a74a756a8243e0ea721d1e3877b485f5294040b34c763c905d53754daba857982875b3df1dc5630efefc71f17558b89b5470fb2bb084402beb4199 diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.2.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.2.ebuild deleted file mode 100644 index 4b45a0b4c5c7..000000000000 --- a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libarchive VFS add-on for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.libarchive" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="libressl" - -DEPEND=" - app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] - app-arch/lzma - app-arch/bzip2 - sys-libs/zlib - app-arch/lz4 - dev-libs/lzo:2 - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( - dev-libs/libressl:0= - app-arch/libarchive[libressl] - ) - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild deleted file mode 100644 index 6c8ff0eb44f4..000000000000 --- a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.5.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libarchive VFS add-on for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.libarchive" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="libressl" - -DEPEND=" - app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] - app-arch/lzma - app-arch/bzip2 - sys-libs/zlib - app-arch/lz4 - dev-libs/lzo:2 - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( - dev-libs/libressl:0= - app-arch/libarchive[libressl] - ) - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.6.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.6.ebuild deleted file mode 100644 index 7a993c6932b4..000000000000 --- a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.6.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libarchive VFS add-on for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.libarchive" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="libressl" - -DEPEND=" - app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] - app-arch/lzma - app-arch/bzip2 - sys-libs/zlib - app-arch/lz4 - dev-libs/lzo:2 - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( - dev-libs/libressl:0= - app-arch/libarchive[libressl] - ) - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild deleted file mode 100644 index 7a993c6932b4..000000000000 --- a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.0.7.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Libarchive VFS add-on for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.libarchive" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="libressl" - -DEPEND=" - app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] - app-arch/lzma - app-arch/bzip2 - sys-libs/zlib - app-arch/lz4 - dev-libs/lzo:2 - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( - dev-libs/libressl:0= - app-arch/libarchive[libressl] - ) - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.3.0.ebuild b/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.3.0.ebuild deleted file mode 100644 index 551c21eef802..000000000000 --- a/media-plugins/kodi-vfs-libarchive/kodi-vfs-libarchive-1.3.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 - -inherit cmake kodi-addon - -DESCRIPTION="Libarchive VFS add-on for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.libarchive" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.libarchive.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.libarchive/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.libarchive-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="libressl" - -DEPEND=" - app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] - app-arch/lzma - app-arch/bzip2 - sys-libs/zlib - app-arch/lz4 - dev-libs/lzo:2 - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( - dev-libs/libressl:0= - app-arch/libarchive[libressl] - ) - =media-tv/kodi-19* - " -RDEPEND="${DEPEND}" diff --git a/media-plugins/kodi-vfs-rar/Manifest b/media-plugins/kodi-vfs-rar/Manifest index fe848ef469c4..7af8206f96a4 100644 --- a/media-plugins/kodi-vfs-rar/Manifest +++ b/media-plugins/kodi-vfs-rar/Manifest @@ -1,8 +1 @@ -DIST kodi-vfs-rar-2.2.0.tar.gz 460340 BLAKE2B 8362dd0c1d3bb799fa041d2f6ed0e61c4abf23ca3d2f3701060579e45fbc76247845f647c233cc85f0aff4a5ce7a54a6a2c2ea4bb899c92f3a35be365c2df1e8 SHA512 ed6f023b508a948c5bc952c967f159272345e8fb048e524a623d842d855a4d2b301c1445c34598b7b33c834189822359117f95fb00fa8b02975c28db34539840 -DIST kodi-vfs-rar-2.2.1.tar.gz 455711 BLAKE2B b16ce42dc66ddd0f9e8cd4be22ad63fa08cdb5fbdeaeaff4f7b93098650d09530ace2c9bbffc2bb3b39054f0311de81fb0ff15c33a904b63ac6299409c2d887a SHA512 d191973d7ffd1f5f9912e889b292ebed12b58aa7602d4a07ad7593aada5a68b92a593909734ff116a8f815f1cea9ceae60fe4842e5ee6b60199130b3e4a2722e -DIST kodi-vfs-rar-2.2.2.tar.gz 456689 BLAKE2B d874338fce92548bbf3223d103bc1083c78f9fd7799f7f54f689d3adacc64031b70b766fa086ae38b41c9945ae9f08d24080467444a4ac652a03c665d3a4908b SHA512 c03664b4db58251f558202c90b740c5c838745ec47007ad58e378d7237c2b399d57d42779e5dc24c371afcad4f90bc9516d25a4f5f1f7824b8c0d076a1b8cf5c -DIST kodi-vfs-rar-2.2.3.tar.gz 461697 BLAKE2B 08315b17e61a2074fca7382e69a6c4d76e75e123492614c0e2f3ccbade888c891b305df591df6f5a785df0a9abdae022f27020045d1db8eff3112f3c7bdd026e SHA512 9adc3fb36366bf14f3cf8229c3efabf6459228b148a19745e5f62230683aa607c94bf36c1739ab32a07ca50a33742e3094f21bc5d47d0fc27b26071fea231736 -DIST kodi-vfs-rar-2.3.0.tar.gz 462195 BLAKE2B cc351adff4ca0b130a71606dac3cd2abd0da295b09a80f974ed4bc1fad9c96fbd3d869633d5d8b10fee12b2a1954f89bf989e4c2ef01bc5a5c7bcab055e72580 SHA512 8efcae79ee860ad376888e6ca2ef77b68baa64e6e7f82dfa505b341e5fe141f769d5ac3cb4c7b1adb89edde1ae98f684bfdcade5084b403c47b2f3ef877b0a71 -DIST kodi-vfs-rar-2.3.1.tar.gz 463099 BLAKE2B bbe83bdef495d9996c93fe1953b7c0b11b2638d563ef6f1bc32b8fb866293c37810ee70e881136ceb1723f4b94e35884155faa1273e06069476705cea722a0ba SHA512 c14501e4f10c6a0e07b9df0d8543d84033e4f2143fe3e31af1ac829423c4f55fdf26dfccf236cac7598638428e6a80740171a0d25c23ab9cb574909d4f8e7b64 -DIST kodi-vfs-rar-3.4.0.tar.gz 462875 BLAKE2B ca0f683d5c62d5b4da943234774fa94e3e705d9b1f23ccf308e1b1cd3a0896333ab002f4101f9aa6598aa6d58adc9c69742ee9f6a949006266c1f654a575688f SHA512 b7b4889e6eac87098d12bf5b93327266772b0a2ef2e5889c3d95b3aaa3a7d5ebe5622ecf329cfdf1b82c1f1c6f32a5b60bd34f335309be93cf56106125bbe2a2 DIST kodi-vfs-rar-4.0.0.tar.gz 464866 BLAKE2B a221f6e9604e3f8d76a5e4eebfc518d17f6129489d6bff9efd89475bf3661d50da69d77cf9f84518137e9a74b33bb758bca5acd474bb968249c5bca555c6a1f7 SHA512 6287c277419f964b950220a858f098eb9aa9bbab4aaff1277850a84f8dfd90a6d5f4fd6c9ea04e84a3c1744ee69cfc4dd7010e2e29f6578640960220f3f716cc diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.0.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.0.ebuild deleted file mode 100644 index 800adb13571b..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.1.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.1.ebuild deleted file mode 100644 index 800adb13571b..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.2.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.2.ebuild deleted file mode 100644 index 800adb13571b..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.3.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.3.ebuild deleted file mode 100644 index 800adb13571b..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.2.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.0.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.0.ebuild deleted file mode 100644 index 800adb13571b..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.1.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.1.ebuild deleted file mode 100644 index 529f08dce3c2..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-2.3.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - dev-libs/tinyxml - " - -RDEPEND="$DEPEND" diff --git a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-3.4.0.ebuild b/media-plugins/kodi-vfs-rar/kodi-vfs-rar-3.4.0.ebuild deleted file mode 100644 index e30e27c6e9b9..000000000000 --- a/media-plugins/kodi-vfs-rar/kodi-vfs-rar-3.4.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="RAR VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.rar" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.rar.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.rar/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.rar-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - dev-libs/tinyxml - " - -RDEPEND="$DEPEND" diff --git a/media-plugins/kodi-vfs-sacd/Manifest b/media-plugins/kodi-vfs-sacd/Manifest index f8dfee94176a..c4527c821692 100644 --- a/media-plugins/kodi-vfs-sacd/Manifest +++ b/media-plugins/kodi-vfs-sacd/Manifest @@ -1,4 +1 @@ -DIST kodi-vfs-sacd-1.0.3.tar.gz 185930 BLAKE2B 7c80cd2a7bfccaf4ca61c7bbe6654b4bedf9e054eac76fe80a3ebbd7c6a8e3896891d4da3c60391c47f7cf585524822ddf5b740a632c9067fa3fdf8684398a65 SHA512 418620256c0ebc5f4ea90ce9e22428f46b318fc1824c17f0a1034443f73333b887abb7fd6a36747c9d2db33a9f7d03d7e0bc2606f5b1c9681a6feae92252918e -DIST kodi-vfs-sacd-1.0.4.tar.gz 192147 BLAKE2B 6cc09d620a0db1acfa54e4a172410220cb50d68da719afa36ca19396737292e23c16bc1f381e7b43cbd6b19a609af1617e7e015ebe91766e18dd62cf415eacf6 SHA512 27a9fe9070ab52c6970e13ea7f10964e9adb4ee1fd5493ba1ac2edb97159dc77e2d9c140ad9c86ebfad51efdaadf9c16b57c03348c1f7fc9232429f01b753446 -DIST kodi-vfs-sacd-1.3.0.tar.gz 192158 BLAKE2B 5f31cb74ccf374f243eb2a9a3dc8abd2b8978430a49f468ad645ae6bb74d0b661ab217a1be79eb25ef3151c7d8a1a9c018b3c2da3bc6e2b2174dabe2f567f52d SHA512 af4e24f09882e0537318232872d8dc44a490be6b847df48768a96e12d210a72e89d9ee98e2f8ab2ad0ade0d24cba403f4177e2ae6fcea7c681f5401bf522e0e6 DIST kodi-vfs-sacd-2.0.0.tar.gz 193849 BLAKE2B 9cb3d0f9bbb2e46901f4673ac637d2d5447b6953a060c35891a14c61eed77229516b4d4b03ea6d1961a494dc6de5cb152a09ebf96b8a71b7dd496ffbf85d4dcc SHA512 1b701189c81cd38d410de10382942478c017647050ddc6bce14f48558cd7085cae5c085cda213c88a15815be01199f8ef00f0306f4de2d3ca82293b20179f78a diff --git a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.3.ebuild b/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.3.ebuild deleted file mode 100644 index c72e5630aa0b..000000000000 --- a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SACD VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sacd" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.sacd.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sacd/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sacd-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - virtual/libiconv - " -RDEPEND="${DEPEND}" diff --git a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.4.ebuild b/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.4.ebuild deleted file mode 100644 index c72e5630aa0b..000000000000 --- a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.0.4.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SACD VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sacd" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.sacd.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sacd/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sacd-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - virtual/libiconv - " -RDEPEND="${DEPEND}" diff --git a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.3.0.ebuild b/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.3.0.ebuild deleted file mode 100644 index 45902cf944a4..000000000000 --- a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-1.3.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SACD VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sacd" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.sacd.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sacd/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sacd-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - virtual/libiconv - " -RDEPEND="${DEPEND}" diff --git a/media-plugins/kodi-vfs-sftp/Manifest b/media-plugins/kodi-vfs-sftp/Manifest index 15eb1a1ee362..599b0c2982b4 100644 --- a/media-plugins/kodi-vfs-sftp/Manifest +++ b/media-plugins/kodi-vfs-sftp/Manifest @@ -1,7 +1 @@ -DIST kodi-vfs-sftp-1.0.1.tar.gz 20059 BLAKE2B 3ff2178738dbb85de731d5268d80cad079f684234ff39ca1141337c384377ca75dd5ad51026471af4e8a1229c6739fa9212b6fd6253cad9be6d9b19a7dc7081a SHA512 e51aeae2bf6e611e679b38401add778fc5605ededb8b8b9d2f6732eda4b87fdee5ea352d2c491cf1ff671c0299395de1cc689404e2924266ffef84c4e7cc71c3 -DIST kodi-vfs-sftp-1.0.3.tar.gz 20923 BLAKE2B 3f2856fa97453739d6a712b5ce63d97771d4f763e182ba28c311a1d5add1f9aae14d069cbcccebeec116a0c138bfbb545aadb1657bb712559d8c73406d61dc4e SHA512 2d0b1f21e3815780124013456abfc4ba07f6a26a3406ba65db76e197254a068a6bfbbe5deb6fb264cbaabe83ac8301a6a7f5f668790934dc7c727745472a3764 -DIST kodi-vfs-sftp-1.0.4.tar.gz 28366 BLAKE2B fce63dcfffdaa03bcfae7ef4c4406ee2096720b4749ed6b732e0264838e26ee7357f592a491c1e8ff8e26158e31713d53f11abe3c733096374ce2deb7835407c SHA512 fd3e843c2241ab198e332e6758982fe54cee0a6e9594d6dd738e813f9916ccb2c8258f160a630487123c2817b771f0e26e0f57dc5ddec16cdc26c754ec40c56b -DIST kodi-vfs-sftp-1.0.5.tar.gz 30777 BLAKE2B ff0fd5a56a5e68cafddd7267c9881079b7439ddc8f15638a1ea9f8d05be505646f08f1332b85e0e3fa8e0959194ee009b125222e86e78e02876f6b373b5e9b47 SHA512 999b7c136294b7691457ffea4fa929211dce8cdabcb3b1efcb37c2e062ca10b36f2f036cd1bbaa2e25a9c1647b983b48acd6a279df4ceb1741cb5131d379e381 -DIST kodi-vfs-sftp-1.0.6.tar.gz 37162 BLAKE2B 7f2a4e9dbabd01b2fbd4efd6c19e8f5bcf1f6e6f55fe7a286c6bf616fa83303f3a0e26cf8c82cc6e4a69a7c981645f72bbfa06b4c0545047b5c1ae579cc22257 SHA512 e7e6d70e974179bb1d7b5a22b495490d75ad6988b8b519a03c167dd9731ed8c695a2ef3b72264107b9559ab9ce2756a4aa3247d6417de50d9a3652d2c890e618 -DIST kodi-vfs-sftp-1.3.0.tar.gz 36956 BLAKE2B 213049a4a3b2e35040622f4c5cb5ab6a76a6c4a0f56cd8157248fa83fb7a8a7054623a11f919e73ed0ace5f64d2ead88db6e613ba12a978ee76e936dcb606bd4 SHA512 2edf833761da194d53d33e7a35ec440283eacd9a31adec3518408fe318c3131a1a2c59c7e61c4562af7029030d97adaad500eb83bbcc0e679aff1568ae6732e0 DIST kodi-vfs-sftp-2.0.0.tar.gz 36146 BLAKE2B 50aadf1087b64791c6e284673c4072829592dd10e8772b739e34091257c3a410862225dae98c322b6616663e3dd0d6ebe8ae7e1518fe89cc9e8b2233dec95cf0 SHA512 223dc0f7ef53318963e77f4b4c5ddb9bc3afa9f3ea5d8ba202269d71a68f24600b99c6927ee856441fe216fbec9e821af8328c3911ef306dff61bb107a7cf0df diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.1.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.1.ebuild deleted file mode 100644 index 439c41cf4706..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="git://github.com/xbmc/vfs.sftp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - net-libs/libssh[sftp] - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.3.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.3.ebuild deleted file mode 100644 index ee1c4e242427..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="git://github.com/xbmc/vfs.sftp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - net-libs/libssh[sftp] - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.4.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.4.ebuild deleted file mode 100644 index 5a8059b24c94..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="git://github.com/xbmc/vfs.sftp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - net-libs/libssh[sftp] - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " -RDEPEND="${DEPEND}" - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.5.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.5.ebuild deleted file mode 100644 index 5a8059b24c94..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.5.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="git://github.com/xbmc/vfs.sftp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - net-libs/libssh[sftp] - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " -RDEPEND="${DEPEND}" - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.6.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.6.ebuild deleted file mode 100644 index 5a8059b24c94..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.0.6.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="git://github.com/xbmc/vfs.sftp.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - net-libs/libssh[sftp] - =media-libs/kodi-platform-18* - =media-tv/kodi-18* - " -RDEPEND="${DEPEND}" - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.3.0.ebuild b/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.3.0.ebuild deleted file mode 100644 index 4f57d2b4aa6c..000000000000 --- a/media-plugins/kodi-vfs-sftp/kodi-vfs-sftp-1.3.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="SFTP VFS addon for Kodi" -HOMEPAGE="https://github.com/xbmc/vfs.sftp" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/vfs.sftp.git" - EGIT_BRANCH="Matrix" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/vfs.sftp/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/vfs.sftp-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - net-libs/libssh[sftp] - =media-tv/kodi-19* - " -RDEPEND="${DEPEND}" - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/Manifest b/media-plugins/kodi-visualization-fishbmc/Manifest index 67a2b17cb55d..458671b027c0 100644 --- a/media-plugins/kodi-visualization-fishbmc/Manifest +++ b/media-plugins/kodi-visualization-fishbmc/Manifest @@ -1,6 +1 @@ -DIST kodi-visualization-fishbmc-5.1.1.tar.gz 357412 BLAKE2B d3f658d021f2ff47f31ddb2c285c1a4040555503eb9740020b60ca475ac87a0e478984fe78197752a2f67dba166a0c0b3ed854377c3a1c3c229ebb5ebfe78f72 SHA512 53652435612bfdc05918c76f4963fb6b5a7fce8efb9a3acf0e6f41aa25a528df692acb3dfe64a027e1548c5f84f4fb1b15092adf4412d6c4cfb1c4220f90aa30 -DIST kodi-visualization-fishbmc-5.1.2.tar.gz 357467 BLAKE2B 7ecf14e7953bb61cf5c66d3a7388937d12170cca079305e1deb445cedbb8af43056ead33f287bff28b6f2bae306193c58fe52b80f7136cfc86c12c43e4d7dfe9 SHA512 0f1149d362e268367236be42d6202938410cb2d9330dd1cb980f49ceb3720b84efd73f9708fa7f1d17f15150b796a95daff68b8fa3b19ae75b52523f61cd3e71 -DIST kodi-visualization-fishbmc-6.1.0.tar.gz 367284 BLAKE2B a3c1a7c7446602276ce3dc20920fb441a44c3ce86b61e28581a196a0a64db8bde4f0306b900e57d29c2284c878357e94b3b041914e17a5f99eaab9203f6ed2a8 SHA512 ea429d66ea12478a7e6533f48f57077f68b12d2f1fd2efeeba8e5908ec423dad57576d463393620588d87b12b484108f55afd3a9c7802458830c738ba3931dde -DIST kodi-visualization-fishbmc-6.2.0.tar.gz 367475 BLAKE2B f6af3fda3352bcb97c5d58c1952ee9b2b1a6ca3d80be6b560b80f3897af793dacf865b2ef986482491a2f9179ab4d9d1b25223d3cf1935b5c8e5dde8ece50a1e SHA512 8fc32adb76bd7b065d6352ada911ab059c182e20ad81075322b7de79d892c7864926f2ece6396bb61df58658cac73c109f43cd2fa6b496b870f7fd7ab117be23 -DIST kodi-visualization-fishbmc-6.2.1.tar.gz 367718 BLAKE2B 461f3e438d0fa0180d5bc57812eb4469d4694459c54484326a0a0709993017efddd34a458761ff1a8b380f2fc5cd279c78df056b6e8f91f69050f931e42f565f SHA512 9f2784e8583079136c8d9e959a4db4d5cfb25afbafe2291c6df1d44bb8908d20ddb176841b4be58d443ee48539be23d8357d6c5441b79ee1ceedd618a1b089ab DIST kodi-visualization-fishbmc-6.3.0.tar.gz 367650 BLAKE2B 78081d673a1eddea8d16e355176eed1b61f0a8e748d0b831f74a3780a9a11be19bd05c1376413dfd10276192f1a3cebeb11ec8f258fb96f16b0128112fa6a2b6 SHA512 02f72476571b2c49629406394eb55c6d9635b7359e8c9aee545d1e486060282389c794657016ed9aed9c2c5471222170b32ac78d5d800f7cc906344bae9a1332 diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.1.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.1.ebuild deleted file mode 100644 index 61d420f35e17..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.fishbmc" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.fishbmc.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.fishbmc/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.fishbmc-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - media-libs/glm - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.2.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.2.ebuild deleted file mode 100644 index a874dc3da575..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-5.1.2.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 - -inherit kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.fishbmc" -KODI_PLUGIN_NAME="visualization.fishbmc" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.0-r1.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.0-r1.ebuild deleted file mode 100644 index 4264440c3a7b..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.0-r1.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 - -inherit kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.fishbmc" -KODI_PLUGIN_NAME="visualization.fishbmc" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.0.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.0.ebuild deleted file mode 100644 index 4264440c3a7b..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.1.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 - -inherit kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.fishbmc" -KODI_PLUGIN_NAME="visualization.fishbmc" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.0.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.0.ebuild deleted file mode 100644 index 4264440c3a7b..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.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 - -inherit kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.fishbmc" -KODI_PLUGIN_NAME="visualization.fishbmc" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.1.ebuild b/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.1.ebuild deleted file mode 100644 index 4264440c3a7b..000000000000 --- a/media-plugins/kodi-visualization-fishbmc/kodi-visualization-fishbmc-6.2.1.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 - -inherit kodi-addon - -DESCRIPTION="Fische visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.fishbmc" -KODI_PLUGIN_NAME="visualization.fishbmc" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-goom/Manifest b/media-plugins/kodi-visualization-goom/Manifest index fc4fc68f6a1d..2f4edd30af59 100644 --- a/media-plugins/kodi-visualization-goom/Manifest +++ b/media-plugins/kodi-visualization-goom/Manifest @@ -1,7 +1 @@ -DIST kodi-visualization-goom-2.1.0.tar.gz 8119409 BLAKE2B 4162201e4415df9b8dc4e22f40d6e9eb71e85804cfb6898d472e2d612a090e81041ed2bf3c1c7423012aff53cc239d25400948fad20e0ccf93fe59270491818e SHA512 5e2b4b2133938224506d94cf55cefb4aa77212e16b570900da33b84ea5de94bd4dcb3d161cc7d0d632353a9c9dd9a5925ce25b9c016cd13818944122c0806054 -DIST kodi-visualization-goom-2.2.0.tar.gz 8119581 BLAKE2B 4e02ac797420f6acf59c9a2c3ce8c185fcf64fc6306d9635401a026207b92eaa6465e492bcbae06b95130fc114c31529d31e5ddcc1e6eeb855f513a8689500e4 SHA512 b6ab828e76b4c1dae54b853cfdc2f31c143e93ec02e81492c3e7152174ce74553eb06720a448f1434a81e44d886ee2b5751c3674ce3f9a45e4988421ea5931ba -DIST kodi-visualization-goom-2.2.1.tar.gz 8119580 BLAKE2B 92558e0560e0590bf7ed52e9506518e32ba80d5a71d10d1c622ec99186c8621a73308bb70cd95f97e86f6e2b6bf2920938e6692b5f080d98e2d457e95c1ab958 SHA512 f93f602e77e754545a58dc9f4ff92c850754503db853b47acbb36468263059919e827e8ffeafe261eca7f6e9c8b563a83787914fa8669bfb50f66aa5c551fbc6 -DIST kodi-visualization-goom-3.2.0.tar.gz 8125972 BLAKE2B 2de0580cdda6a0f94a6dc1bd487910b7683448683670c9ae2c1793beff44351db617ae79fd0aad1bc55b39d030868cdc0f71f8c1853162faf4b68248ce0a0510 SHA512 78111b28918b3ef7a1f00ed1c4b0e74377b7c9e4e11bd7615399d577510da62333f7ad24f40a66a65cd4bec8ad1619122809590054edafd1071e546c7b64fd69 -DIST kodi-visualization-goom-3.3.0.tar.gz 1210480 BLAKE2B 1e1f5b48820c2fd6847e5fc241a409eacefae1bc2a95d3b5fca72e6bf4e6d1202b1b9806c0a6810724834655f071bd183528e7cec8242db97ea3826fcffbe72a SHA512 5a51ffa0730786616f38cf156d480c747ddcef5e099c26de1cf9b3459732d50c553e72a5a84b4b00939b91c1cc06b944f0901e357b11895eb87d83290d00e2d0 -DIST kodi-visualization-goom-3.3.1.tar.gz 1210558 BLAKE2B 3ca3d7464ef0924e3a390ba761955ac26db56b46ade8fad17428ac87743674c64f3ff04b9bd6f06186938564ab05a2c4306498f9bf848d069fa024d4cfc2e44e SHA512 e2d1fe30924435b5debad039533d4f55d9a454daf3d7d66a76437ee88044fca0e44173f0d36b4ba401437f0d60ccc95af497faaf498e105316ab493354523e03 DIST kodi-visualization-goom-3.4.0.tar.gz 1210534 BLAKE2B c871188f50a1deab108e36e4199dc4d0450ddb59cf8f87090505b46f7494a66006b796d4a7c60e61057f8668dc7afebbab15e1018ed8fa644d77315ea8b3c2be SHA512 d864932202b2611b435b91a0ced86cc60b5e1853dfa958651a7327e931d7744b267d4a151f1a8e1d8080f37c009b6bc5d22ca9cef5bf2f9cecc8d4a114fa1971 diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.1.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.1.0.ebuild deleted file mode 100644 index 91e5232cbbbf..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.goom" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.goom.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.goom/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.goom-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.0.ebuild deleted file mode 100644 index 91e5232cbbbf..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.goom" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.goom.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.goom/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.goom-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1-r1.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1-r1.ebuild deleted file mode 100644 index 842215df3206..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1-r1.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 - -inherit kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.goom" -KODI_PLUGIN_NAME="visualization.goom" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1.ebuild deleted file mode 100644 index 91e5232cbbbf..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-2.2.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.goom" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.goom.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.goom/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.goom-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.2.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.2.0.ebuild deleted file mode 100644 index e1aa393b2927..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.2.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 - -inherit kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.goom" -KODI_PLUGIN_NAME="visualization.goom" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.0.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.0.ebuild deleted file mode 100644 index e1aa393b2927..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.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 - -inherit kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.goom" -KODI_PLUGIN_NAME="visualization.goom" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.1.ebuild b/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.1.ebuild deleted file mode 100644 index e1aa393b2927..000000000000 --- a/media-plugins/kodi-visualization-goom/kodi-visualization-goom-3.3.1.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 - -inherit kodi-addon - -DESCRIPTION="Goom visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.goom" -KODI_PLUGIN_NAME="visualization.goom" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-projectm/Manifest b/media-plugins/kodi-visualization-projectm/Manifest index 7625a57d4eb0..f639086a3954 100644 --- a/media-plugins/kodi-visualization-projectm/Manifest +++ b/media-plugins/kodi-visualization-projectm/Manifest @@ -1,4 +1 @@ -DIST kodi-visualization-projectm-2.3.5.tar.gz 2479207 BLAKE2B ae67f42ec6b5430f99b7a4fe72addb5bce59c1d9ab53909f80724da1c521b1c16df253038653110972617365d0aecf604ac683bab7b25f486147a797cb19a91d SHA512 dbcddc99e2278fe5e0657ceff142ce625833433e3d6ff757228f59f47606dcf7125138e2c381dfb5b00cfbb41cc24ce1c805617b42a6e3dabb665f5e33b94682 -DIST kodi-visualization-projectm-3.1.0.tar.gz 2509529 BLAKE2B 398f24325707d1ea79804ae047a6108be789961cd81f49945e6c798ca1f3ba8b4f375152fecfa9b195bb24e1602ce35974d065c1cb4dfb7718fc6426c106fb4c SHA512 8ae1bd4de726edb0f6434d0a4669a1a828d415a3fdc62984e20e135f79c0e710ca7374ee2da5dc78794252327e84ed678a6548510433938d87a0a98165d3abdf -DIST kodi-visualization-projectm-3.2.0.tar.gz 2497196 BLAKE2B 6ac289661c63588678680bee36a5b881aae35e8468876979c4a7975843f3750334beb8b23e63b9b3271231589d26b72abdb267a4adc289e43bd37d1f1ce08a23 SHA512 9368978e20fce99d9f7005b4bd9c96efce7c9afe239d80839c665bc8517fc212598444dcf422bba9b2e500f87f52f0c18153969f3287ed9b5a9cb78d72669c65 DIST kodi-visualization-projectm-3.3.0.tar.gz 2497200 BLAKE2B 894e77cabd96f8862f1873c5b506d358d4808443a92947586ae6e4907cbfe931d2ab0af19a0d6d5a35e7d93a67c184eb886b217887b45895b552d14684bff60a SHA512 fbce9121a403279a9f54eced08f2069ab6e1f732ef5c6b82380323e2357b70ffa88157428afd4884b6d119aa5a02848718e48602ce9d5f1454c8fa5ed0f78e7b diff --git a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5-r1.ebuild b/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5-r1.ebuild deleted file mode 100644 index f1891b47eaea..000000000000 --- a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5-r1.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 - -inherit kodi-addon - -DESCRIPTION="ProjectM visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.projectm" -KODI_PLUGIN_NAME="visualization.projectm" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - >=media-libs/libprojectm-3.1.2:= - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5.ebuild b/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5.ebuild deleted file mode 100644 index dc01f9efbb46..000000000000 --- a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-2.3.5.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 - -inherit cmake kodi-addon - -DESCRIPTION="ProjectM visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.projectm" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.projectm.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/xbmc/visualization.projectm/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.projectm-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - =media-libs/kodi-platform-18* - >=media-libs/libprojectm-3.1.2:= - >=media-libs/glm-0.9.9.5 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0-r1.ebuild b/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0-r1.ebuild deleted file mode 100644 index 759f84a9e7e2..000000000000 --- a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0-r1.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 - -inherit kodi-addon - -DESCRIPTION="ProjectM visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.projectm" -KODI_PLUGIN_NAME="visualization.projectm" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - >=media-libs/libprojectm-3.1.2:= - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0.ebuild b/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0.ebuild deleted file mode 100644 index 6beacd7eafbe..000000000000 --- a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.1.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="ProjectM visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.projectm" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.projectm.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Matrix" - SRC_URI="https://github.com/xbmc/visualization.projectm/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.projectm-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - >=media-libs/libprojectm-3.1.2:= - >=media-libs/glm-0.9.9.5 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.2.0.ebuild b/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.2.0.ebuild deleted file mode 100644 index 759f84a9e7e2..000000000000 --- a/media-plugins/kodi-visualization-projectm/kodi-visualization-projectm-3.2.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 - -inherit kodi-addon - -DESCRIPTION="ProjectM visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.projectm" -KODI_PLUGIN_NAME="visualization.projectm" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/opengl - >=media-libs/libprojectm-3.1.2:= - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/Manifest b/media-plugins/kodi-visualization-shadertoy/Manifest index 66c57fb9b745..b39c666ff64e 100644 --- a/media-plugins/kodi-visualization-shadertoy/Manifest +++ b/media-plugins/kodi-visualization-shadertoy/Manifest @@ -1,11 +1 @@ -DIST kodi-visualization-shadertoy-1.1.10.tar.gz 11825761 BLAKE2B 6a87efd04a038b9d30a43875b6c48c0febf574ebf8cab7501c6b4fa11b2a62adf7532e856afcffe931e6702afe28c22775a14dc43849570429ffc40c67f14a17 SHA512 2d81edc2bffd29d2d33a8c67fdf84e65a53a2f204cc051df23d7904a763d6096b7c9839dfda9830e081ee465fcfacd656dc2959ace84ea4350e9d03cccc72712 -DIST kodi-visualization-shadertoy-1.1.5.tar.gz 11826868 BLAKE2B a18512c811e1412d63d4cfcd97804eaf90047603de592ed21fe2b1c24b77a21a3f9e859d86ab23f8f59ba3eacfa40f3028f5848c8b6d6f7e8acde19c1522e640 SHA512 557cc9567707ab53c63537f760b552c4129f45a4c99346acf9d00f8fea5249af1a8af9ea6fc8587e7ab6e24c8a686356e5bacf0a2cb34dcc8b38059c36127e43 -DIST kodi-visualization-shadertoy-1.1.8.tar.gz 11825753 BLAKE2B 1ab30e261d9e48806d7b6629b5aac687831f735b05d1cc48d6bacf146fe2f3e2d75758c490c474838e9d861f2bc1776d0fc9cee00d6dca9d5e87ec874dbd02fd SHA512 5cee18db177c0cc61bc46a4d457b559bd1a023d3ff51261eee8d4c4828df77571beda12dd726f30554bd16c7ad67e12d836c5a211a3d55321d92551eb337ddc6 -DIST kodi-visualization-shadertoy-1.1.9.tar.gz 11825717 BLAKE2B 683b89be6b02574bec6db39446d1adb03ed09ed0da4be03245e8012980de8f1ff5d10fba22e40f74f022263c853fd076f3079feb6d82b34901975682cf8ecbdb SHA512 f829505525f46cb54ac205a52561dbf99f776350c0c34487438663d1c42dcd734f8c2e543c23550b4be61bab00d7f09beb63824935cd68de14328aaca44a5b95 -DIST kodi-visualization-shadertoy-1.2.1.tar.gz 11833386 BLAKE2B d62f907426ba6cddac91fa7ab0592f62e15f77ec3fd7af3dda15b467c72e36a248f24ad374897746b337b7223a1b67a156e595999a3e9ba9b5d8a543eb5a220b SHA512 5dd92e8629c6fe5319fd9d7715f474c3c146218a812e312a2335501f20319c8385a736b02d37d769c4025fb2c6a10882e9979359f3667aa390d1de77f373483e -DIST kodi-visualization-shadertoy-1.2.2.tar.gz 11833357 BLAKE2B 3b7c87785dcc1c93795f34599f64ab61e2a0f7ae5f465f014efcbc77d6f7e0cc49ba3defc4a982ff352b61ac5d96f9f59368af8884b660e337c54ec0ceea4729 SHA512 bc4c0fab5ab63205b4cd3cbf669bbcc93d8273592082d741dba762b2a72c5f468d8eabf158b309c62a813a14a17884a240c22c88b133eb34315e0fb7b064b507 -DIST kodi-visualization-shadertoy-1.2.3.tar.gz 12495585 BLAKE2B 821b4bf4b380125c5bf0bdb0e5b3d62624155729abaa4784a7606ec0f48d9517317064f0a8442442f7cc549c6623cc58734b99dcfbd23c68dcad9fd24efc35fb SHA512 ea6aafd9afe221b3f12584f081eb55db29dd3a4483b6eb9cb53f8ccff105c3fd9bea9ced3badb171c5b2795387afd062d10b1b2f1dca31b1efcd896c89131958 -DIST kodi-visualization-shadertoy-2.1.1.tar.gz 12481964 BLAKE2B 179e60218a86ab3294fab5a7c8d5c1f4892ad0f6ff9a3a799a05088551a61487542a0624201a4025aafeaeba097228b21ddf36310f930661f25b27fed4588ccf SHA512 e406ceec5f4efc6bdc7b22ec96cfb36a59177a836ea3bf6a3a5df6cdde0c2ee9f7e7c93b240d9b0e4c2f3f2c7c8fe6d88123c4cb104d547b5ce15f8223b20ea0 -DIST kodi-visualization-shadertoy-2.2.0.tar.gz 12483112 BLAKE2B 6b8a841085b316eeddcda95e4d4d79949f2bc822605469a4fddf589180f6a93310b14a449201ed600d22422c47bce8bb53e92faded294a7c49dcce9e93bc7648 SHA512 0050f35614b17e48adbe16c8255c111e0927245b46067bbf8d547b460b556f3fa8cf12fb3c6cfd7320a06967d2b397da3d83aa5b58e9f997dfc2d318771d5302 -DIST kodi-visualization-shadertoy-2.2.1.tar.gz 12483348 BLAKE2B 81cb4383b6067149a6ec4a66329a11d9482fb845f3c70c2a51644f3af0fc151adf7ace7c1f252bc911ed8095b2f52e54b2ba718de12a2256dec9ab135eb1256b SHA512 91b9feaa47b025dbce0a60723405ff2cbab926c37d167984be4409aba1f296de6d734667d728ce5c5730fb3a7cde815e37237aa641e3808d693dd94f8999650f DIST kodi-visualization-shadertoy-2.3.0.tar.gz 12483281 BLAKE2B a2140c52820a235d9c3d469fea0d3d1b20bc33d697915a6dd789fe0c25addb5296d80d643ee2d99613b3f3144b41c451b2a418798df7a5aa869f96e79187b3f4 SHA512 7693e67b3aaad0b6bc78c80b1bdfd92348de139acbb1292b56e9430dfd939b242f56e5c732625bece0088ef9e2a5627fe2f9a19aadbf076c54647c9e6929874a diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.10.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.10.ebuild deleted file mode 100644 index e87d16765980..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.10.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.5.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.5.ebuild deleted file mode 100644 index cfc3de7a808e..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.5.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/notspiff/visualization.shadertoy/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - media-tv/kodi - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.8.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.8.ebuild deleted file mode 100644 index 0a4999641de8..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.8.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild deleted file mode 100644 index e87d16765980..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.1.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.1.ebuild deleted file mode 100644 index 2587f22407fb..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - media-libs/glm - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.2.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.2.ebuild deleted file mode 100644 index 2587f22407fb..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - media-libs/glm - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.3.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.3.ebuild deleted file mode 100644 index ecceb22c0037..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.2.3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =dev-libs/libplatform-2* - =media-tv/kodi-18* - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.1.1.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.1.1.ebuild deleted file mode 100644 index ed5256b3ad5d..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.1.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.0.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.0.ebuild deleted file mode 100644 index ed5256b3ad5d..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.1.ebuild b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.1.ebuild deleted file mode 100644 index ed5256b3ad5d..000000000000 --- a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-2.2.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Shadertoy visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.shadertoy" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git" - inherit git-r3 - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-19* - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-spectrum/Manifest b/media-plugins/kodi-visualization-spectrum/Manifest index 852d246fc2f5..afe2cd42073c 100644 --- a/media-plugins/kodi-visualization-spectrum/Manifest +++ b/media-plugins/kodi-visualization-spectrum/Manifest @@ -1,4 +1 @@ -DIST kodi-visualization-spectrum-3.0.3.tar.gz 324645 BLAKE2B d7cae4829a0d9032d26dd7642617286dbd1f86baea6672de1d819aaa07657113fba2ce0876a5a18ea212ccc5c4e0de8c1233460e4172950b7af663fe8fdd5c86 SHA512 8c6f111100ae155fc8486dba269d184d65a00235643ed10e77cbe1b5442e466143039fdc1faef17af6545817fd721a7057b09937c91dde1f1b2ceee74f87a935 -DIST kodi-visualization-spectrum-3.2.0.tar.gz 327841 BLAKE2B a5a4e858419beabe93e302d129efe8d8a75778cc52e90408150b43f000812b7949cfd3ebeab34e62f52e7467e839291b56d97984284141a0209d02b19a5b2043 SHA512 1378a8f082bdb255c0c48875c87cec27c549525fa1a1f94f2d31c91bc3f70c2c50afb1063ba03fcc71d1948337ef85168f29c0edb8102e6be1eba82dfbc7377f -DIST kodi-visualization-spectrum-3.3.0.tar.gz 315547 BLAKE2B c1586f28f6a7de1696fddb06ba68ac7920c6f9f1300eef96c56f6fa796e4e2c92d41043c9d303c64878720efa8f335a85cd288d5649c46002cd9cc3d9b33950d SHA512 fbf063c5362ef7f837acc648f5a78c537990873ff0539662eb95e0312250475038fed450631ba7b2ec7b9654776e263f329419aeee7559fcf8e37eccce928364 DIST kodi-visualization-spectrum-3.4.0.tar.gz 315666 BLAKE2B b87b2f29a3dd2cb46058661362823f3e6005e354468a5b83ce65b5e5ee59fc56c9a35a22207c61e98c83e964ea682501296a66f376f9259e73b5e76250e08281 SHA512 c653c867dc1fa4d0c4de9cb3e5dcf90daf73ffdeb2b4f50bdcb651799fd1adec549a11889e4a7fa3b9bca46ad36c68e5cea925b0cf5d006b975215c682b9b584 diff --git a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.0.3.ebuild b/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.0.3.ebuild deleted file mode 100644 index c5bfc95f2070..000000000000 --- a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.0.3.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 - -inherit kodi-addon - -DESCRIPTION="Spectrum visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.spectrum" -KODI_PLUGIN_NAME="visualization.spectrum" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.2.0.ebuild b/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.2.0.ebuild deleted file mode 100644 index 3284a024509a..000000000000 --- a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.2.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 - -inherit kodi-addon - -DESCRIPTION="Spectrum visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.spectrum" -KODI_PLUGIN_NAME="visualization.spectrum" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.3.0.ebuild b/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.3.0.ebuild deleted file mode 100644 index 3284a024509a..000000000000 --- a/media-plugins/kodi-visualization-spectrum/kodi-visualization-spectrum-3.3.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 - -inherit kodi-addon - -DESCRIPTION="Spectrum visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.spectrum" -KODI_PLUGIN_NAME="visualization.spectrum" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-starburst/Manifest b/media-plugins/kodi-visualization-starburst/Manifest index d2f9792cef99..67b53439b724 100644 --- a/media-plugins/kodi-visualization-starburst/Manifest +++ b/media-plugins/kodi-visualization-starburst/Manifest @@ -1,7 +1,2 @@ -DIST kodi-visualization-starburst-2.0.0.tar.gz 149618 BLAKE2B 8afaba6236b8d2f70532e7fedcdccd7271dfcd7149b1d6e4a0f8a3c3591b984f51f0e4846ca9763968579a67277eb8547e16e8729656b32247ccbaf2a307803f SHA512 7671288a9b24ca9ea2c7aae3d0bd31dd9d3ae47785d4ef2cd11a063270fd30b89115c4736ed34aea885bea011adf3aa3b0f19abf9c24a813bdeb55cc956e6610 -DIST kodi-visualization-starburst-2.0.1.tar.gz 128625 BLAKE2B d49a85c149f908d480b8cad244f4128dae077d991b24f78f214bfa43645a12ff2d635b79682e5638b4f958b11365493f1c810418b55d60f47369de88ffc5ca22 SHA512 0af874f2265fb9ce2983f08f27e60f8a0a11ae0046b7d09dea112d9fc961169153b536495ccdb1db2ca8666e1ddd595b134d75915485b8c78a752e3db87dcd87 -DIST kodi-visualization-starburst-2.0.2.tar.gz 128638 BLAKE2B e373ee9488d9ddeda698794df20cae391b60c284f1bcb25d5dba8d969061e9658fd2ae425b174169eb07b144d2ea358919d0538faf4fc7732bea749f24786d15 SHA512 87fb353cf5ca64cb5418abd2ff5827f780cde07deac19efe54430afa3fd01ff6ff3b28211066133de3f7a410b7c3bbfae5e180cab67f7cd7afb6ecf1fa5e81fc -DIST kodi-visualization-starburst-2.2.0.tar.gz 139247 BLAKE2B 2aea5f1e685e0d16a06120ed5d2a0a0e913c78d0f023f73a80d2ad32fa25de55a9038b399e353e6e14894a3e3d457f253968df459e91e7ea41fbd5bea13b2940 SHA512 3dc0361370be406a3bbcf4353e44a4340fbbc98d1d9baa0250b1b94c780f04bd3edb016c88a00d3e74e022bf94c317afb01a11117e0f90c81b95cc3ba6b83b32 -DIST kodi-visualization-starburst-2.3.0.tar.gz 139410 BLAKE2B 08183257f49b815a77dd6881393780342df541405725ef5561f1e7fb289c3434297e2e9ba6bcc9d05226580ef94e3b48858a13dc97de74dd2b830b886537e345 SHA512 c185b3ad75c49d7d488dff0172581d44f6f81944a5b96bd946adcd5de499c7ad9efef6b23825e8352cf3bf2077ad99106c3de7ea88ff3f7645cf8ba3b592ca21 DIST kodi-visualization-starburst-2.3.1.tar.gz 139560 BLAKE2B f906e1f2b60c7685e354f44f4f1d2484d18adc21255ff207fc9f9a55dd7815089cab341acd06dc71cb07469508a0c0412ba1a6e1fbff26c2bd3f7445eb56fe44 SHA512 58b332c4b8729a599710cac969ceaacc23c158b30544fd5fdf9b2d168718c4c032c89e6980d3dd107dbe5de40435de6637cd25f597a3cb01287b80876cd97ff0 DIST kodi-visualization-starburst-2.4.0.tar.gz 139487 BLAKE2B 094eb87051f3d296f1a66ed497d49e57b6080d5f2db2c6a7736056c80983282767e8ffdcc1108b3f59f0449819c274890abd463f6dd3140fcf9e5424899f9a53 SHA512 2c7ed9b1edb9310d48fc53d5eec9746d3fb51beefb24ebf7025d4b5c72ea67c89c8b92846d4daac0ec7806ebd8c39d774479cf582feac1fcd8364ad67d0f3a64 diff --git a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.0.ebuild b/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.0.ebuild deleted file mode 100644 index 88a848413485..000000000000 --- a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.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 - -inherit cmake kodi-addon - -DESCRIPTION="StarBurst visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.starburst" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.starburst.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.starburst/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.starburst-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - media-libs/glm - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.1.ebuild b/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.1.ebuild deleted file mode 100644 index 9ba2ff248210..000000000000 --- a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="StarBurst visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.starburst" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/notspiff/visualization.starburst.git" - inherit git-r3 - ;; -*) - KEYWORDS="~amd64 ~x86" - CODENAME="Leia" - SRC_URI="https://github.com/notspiff/visualization.starburst/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.starburst-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - media-libs/glm - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.2.ebuild b/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.2.ebuild deleted file mode 100644 index 0288a46c379d..000000000000 --- a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.0.2.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 - -inherit kodi-addon - -DESCRIPTION="StarBurst visualizer for Kodi" -HOMEPAGE="https://github.com/notspiff/visualization.starburst" -KODI_PLUGIN_NAME="visualization.starburst" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.2.0.ebuild b/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.2.0.ebuild deleted file mode 100644 index 532d4ca45e77..000000000000 --- a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.2.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 - -inherit kodi-addon - -DESCRIPTION="StarBurst visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.starburst" -KODI_PLUGIN_NAME="visualization.starburst" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.3.0.ebuild b/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.3.0.ebuild deleted file mode 100644 index 532d4ca45e77..000000000000 --- a/media-plugins/kodi-visualization-starburst/kodi-visualization-starburst-2.3.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 - -inherit kodi-addon - -DESCRIPTION="StarBurst visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.starburst" -KODI_PLUGIN_NAME="visualization.starburst" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/Manifest b/media-plugins/kodi-visualization-waveform/Manifest index c2f592794da0..7e7840dc10f5 100644 --- a/media-plugins/kodi-visualization-waveform/Manifest +++ b/media-plugins/kodi-visualization-waveform/Manifest @@ -1,8 +1 @@ -DIST kodi-visualization-waveform-2.0.1.tar.gz 43929 BLAKE2B 5ef24c80ca035ffe92e9c96b8d5a509bca7ce68679bc3e723fcd76b6a5eea70702caa6a8b802b26058131993d8b7f42e41a2cb43073ba2fff65356cdf5e333f3 SHA512 3ba3a3b92d7bbe5e82374daf92fe1054ee80fc316e8b63d0543248406ab7c341831f085f50221aa0bf9ea534c2eb37221c8c165aa553b8c8dbe5cae1b58c3229 -DIST kodi-visualization-waveform-3.0.2.tar.gz 546352 BLAKE2B 98d35bbbbda2a44c35d8c1a8275085ae645b39ecbecf317f97e18b018e09def8ce48acdbe79c7c3bef5e42ea0490961f99a345eca211372e6be3137422af41e4 SHA512 a33e1f79aa23449255c5c1e9cfc172df900f53dce1adaabcad63b4e57c3cd07cce62cc7fe4923bc08fbc5632401af1c4b9fca9e9f265cb27aa6ac20ab4f31bc5 -DIST kodi-visualization-waveform-3.1.0.tar.gz 548379 BLAKE2B 855423b77e12e371640ede7c34fc4419f4643c5376fe2a11f83570c9178657d2b7283f85487a06783d03002263e2cd81640b0fe7dff3710198998d9a3d48f5d1 SHA512 a1204ed4d17e021508e969a522c2631a020b469cf24e6a2fcf5e586f8fbc2369b5499df8153cf984a15b570045e0f03fffefbb21d5a112a1ab3788bc35024d63 -DIST kodi-visualization-waveform-3.1.1.tar.gz 548907 BLAKE2B da38a0d9a7a50bac502a48b8e50aceb8d5d94fa7c9c00fdee29a91d8d30432bac96b5008e4659c93cf22905a05456f6311d4bdd8e214fc33ebe869b826303802 SHA512 0ed887c892b20fc4e162e9d7317d20ceb1cfce2db2cfcfa948995349ae8c97c33520202052d80c01d1122c50fac0772f18245aa40b4b7b7b55917fa533b65cd9 -DIST kodi-visualization-waveform-4.2.0.tar.gz 551580 BLAKE2B b043d16956a28a184a4de23653dbbb2a8fbe7b3f6118824a4170e9b5b0c0b93d44faf0f57ca94cc37a6a622472df4de06dd56650e5bd91b1490ab4dfcf3103cd SHA512 589bc23efc99f848d429632f00ab6cd34bb47ef9b9fa32cd20a2cd6fef44d7cb9bb08a02e343e1eba99626feb60b234812880be89162b98f3cc3fc15629e11e4 -DIST kodi-visualization-waveform-4.3.0.tar.gz 540639 BLAKE2B d8202f914329ea77255a46364d61a22798e4a2ea793459606e96677d7d91e41d21361d5cd96f7af605ad30e147036deaa4a2d9c96a5c67ab005e61357dc2b2ab SHA512 d85f74ea65a42b1a997237026b9fa324b0b510144418ddf0e07013602718186ab9607bc4114d0bacf1e9a38f4c2b324656306e39f6b54ff621df7ea0462ada1c -DIST kodi-visualization-waveform-4.3.1.tar.gz 540792 BLAKE2B 10df6d615beb52ef92459f98b771df49e122d5615a2296a3627a36d14624f9c6f39b55199821834eb8d979f2f46ad6f8547eeda9c07593c4c932933367b3e250 SHA512 38f4c662722d84313706312a1744bcdcd22e0ea7e74f44ccd436f1c2dce9b5717cfe76660460ef476dbd507bc41a46da6473bba52cffb2b1a58b39991ef7c7b3 DIST kodi-visualization-waveform-4.4.0.tar.gz 540721 BLAKE2B 5d154dc309ec1db62f1b26578f26970c633671aefe00c08bcc0f15bed33b51f6c459f1849dad6c144eeba8aacc6f8003a76e96e10fc4e9a8d0b623342b82b875 SHA512 8452b5c9cb57c40fa79c58278ea6fa32e4a6845f0cb1555009aedcb3ce5759330918aa2c10c4fdc7c9fef97e6afff61d6145344ce5fccecbc576f64ac036d0a3 diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-2.0.1.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-2.0.1.ebuild deleted file mode 100644 index 6e0e2e772235..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-2.0.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.waveform.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.waveform/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.waveform-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - " - -RDEPEND=" - ${DEPEND} - " diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.0.2.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.0.2.ebuild deleted file mode 100644 index 97b415b36b20..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.0.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.waveform.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.waveform/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.waveform-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - media-libs/glm - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.0.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.0.ebuild deleted file mode 100644 index 97b415b36b20..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -SRC_URI="" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/visualization.waveform.git" - inherit git-r3 - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/visualization.waveform/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/visualization.waveform-${PV}-${CODENAME}" - ;; -esac - -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=" - =media-tv/kodi-18* - virtual/opengl - media-libs/glm - " - -RDEPEND=" - ${DEPEND} - " - -src_prepare() { - [ -d depends ] && rm -rf depends || die - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.1.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.1.ebuild deleted file mode 100644 index 3086c42e5070..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-3.1.1.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 - -inherit kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -KODI_PLUGIN_NAME="visualization.waveform" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Leia" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-18*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.2.0.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.2.0.ebuild deleted file mode 100644 index 55c275ff5f4e..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.2.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 - -inherit kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -KODI_PLUGIN_NAME="visualization.waveform" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.0.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.0.ebuild deleted file mode 100644 index 55c275ff5f4e..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.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 - -inherit kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -KODI_PLUGIN_NAME="visualization.waveform" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.1.ebuild b/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.1.ebuild deleted file mode 100644 index 55c275ff5f4e..000000000000 --- a/media-plugins/kodi-visualization-waveform/kodi-visualization-waveform-4.3.1.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 - -inherit kodi-addon - -DESCRIPTION="Waveform visualizer for Kodi" -HOMEPAGE="https://github.com/xbmc/visualization.waveform" -KODI_PLUGIN_NAME="visualization.waveform" - -case ${PV} in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}.git" - inherit git-r3 - DEPEND="~media-tv/kodi-9999" - ;; -*) - CODENAME="Matrix" - KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/xbmc/${KODI_PLUGIN_NAME}/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${KODI_PLUGIN_NAME}-${PV}-${CODENAME}" - DEPEND="=media-tv/kodi-19*:=" - ;; -esac - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" - -DEPEND+=" - >=media-libs/glm-0.9.9.8-r1 - virtual/opengl - " - -RDEPEND="${DEPEND}" - -BDEPEND="virtual/pkgconfig" - -src_prepare() { - if [ -d depends ]; then rm -rf depends || die; fi - - cmake_src_prepare -} diff --git a/media-radio/Manifest.gz b/media-radio/Manifest.gz index f850bff9363d..f4642ce662e2 100644 Binary files a/media-radio/Manifest.gz and b/media-radio/Manifest.gz differ diff --git a/media-radio/tucnak/tucnak-4.23.ebuild b/media-radio/tucnak/tucnak-4.23.ebuild index b4c1192a2e40..8490a3d7874c 100644 --- a/media-radio/tucnak/tucnak-4.23.ebuild +++ b/media-radio/tucnak/tucnak-4.23.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="alsa fftw gpm hamlib suid" RDEPEND="dev-libs/glib:2 diff --git a/media-radio/wsjtx/wsjtx-2.2.2.ebuild b/media-radio/wsjtx/wsjtx-2.2.2.ebuild index 923305c594b1..47399ac280d9 100644 --- a/media-radio/wsjtx/wsjtx-2.2.2.ebuild +++ b/media-radio/wsjtx/wsjtx-2.2.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/wsjt/${MY_P}.tgz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc" RDEPEND="dev-qt/qtcore:5 diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index d2e9fa3fd893..26b6a8c41498 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/aqualung/aqualung-1.1-r1.ebuild b/media-sound/aqualung/aqualung-1.1-r1.ebuild index 33bb7a4e90c7..c2442960c3c6 100644 --- a/media-sound/aqualung/aqualung-1.1-r1.ebuild +++ b/media-sound/aqualung/aqualung-1.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/jeremyevans/${PN}/releases/download/${PV}/${P}.tar.g LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack" diff --git a/media-sound/lollypop/lollypop-1.2.35.ebuild b/media-sound/lollypop/lollypop-1.2.35.ebuild index fc57c94f6368..70b5f2889b80 100644 --- a/media-sound/lollypop/lollypop-1.2.35.ebuild +++ b/media-sound/lollypop/lollypop-1.2.35.ebuild @@ -49,15 +49,16 @@ RDEPEND="${DEPEND} RESTRICT="test" -pkg_preinst() { - gnome2_schemas_savelist -} - src_install() { meson_src_install python_optimize } +pkg_preinst() { + gnome2_schemas_savelist + xdg_pkg_preinst +} + pkg_postinst() { gnome2_gconf_install gnome2_schemas_update diff --git a/media-sound/musescore/Manifest b/media-sound/musescore/Manifest index 416db5f56970..b9d6b81186b0 100644 --- a/media-sound/musescore/Manifest +++ b/media-sound/musescore/Manifest @@ -1,3 +1,2 @@ DIST MuseScore_General-0.2.0.tar.bz2 35122747 BLAKE2B 7f9cafb7912ab8c977842c51df69506d4ad3d1d37498c856978a2d5ab50a1c4fe9145a4807f8c353e6f14138704abb2bbd70c948f1621b494c6e0458c2df0184 SHA512 69eeb22e8c9d1d393a2af857baeb8e49bf2a492651d18190685c74df84a5f6b424e37077e39d9d69c117c4896ea1fbb857eba25a1fbcb6f98d53f384a55713cc -DIST musescore-3.5.1.tar.gz 66952759 BLAKE2B 74907cc3a7c2305f26a763c12d5bba63a42d720bf97103c366e8d51ca513f8e77e3e950c6674c1c68f71b6e73deaf75dc35de82ee509df632ba3752a34486122 SHA512 ae3907f0cc39f0855fe5069a21d87c5c6ddc31811def36ebf9e069be773693363569fb6b7ad35ff9bf2a64c771133b7c68d50636af9e0733743dd365bc86f654 DIST musescore-3.5.2.tar.gz 66326638 BLAKE2B 6f4f10c40c2c9c84a1cf07b45ce1badf14a74c834315a1e7768ffbf6738fafb550937105be9e8fd0c7deb79721691fbf40621135e0e2a7354129c00e3623c6fb SHA512 4e98bebaa43abcb692969bd3272c64b6a8ff8e794c54ca8d4ed7dcb8059f4adbe498491f21b3b6d90e6495d4f44166747e1c1869617eba82af6db1aea6b06d38 diff --git a/media-sound/musescore/musescore-3.5.1.ebuild b/media-sound/musescore/musescore-3.5.1.ebuild deleted file mode 100644 index b8137e72faf0..000000000000 --- a/media-sound/musescore/musescore-3.5.1.ebuild +++ /dev/null @@ -1,118 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_MAKEFILE_GENERATOR="emake" -CHECKREQS_DISK_BUILD=3500M -inherit cmake xdg check-reqs - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/${PN}/MuseScore.git" -else - SRC_URI="https://github.com/musescore/MuseScore/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm64 x86" - S="${WORKDIR}/MuseScore-${PV}" -fi - -DESCRIPTION="WYSIWYG Music Score Typesetter" -HOMEPAGE="https://musescore.org/" -# MuseScore_General-*.tar.bz2 packaged from https://ftp.osuosl.org/pub/musescore/soundfont/MuseScore_General/ -# It has to be repackaged because the files are not versioned, current version can be found in VERSION file there. -SRC_URI+=" https://dev.gentoo.org/~fordfrog/distfiles/MuseScore_General-0.2.0.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -IUSE="alsa debug jack mp3 osc omr portaudio portmidi pulseaudio +sf3 sfz webengine" -REQUIRED_USE="portmidi? ( portaudio )" - -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" -DEPEND=" - dev-qt/designer:5 - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qthelp:5 - dev-qt/qtnetwork:5 - dev-qt/qtprintsupport:5 - dev-qt/qtquickcontrols2:5 - >=dev-qt/qtsingleapplication-2.6.1_p20171024[X] - dev-qt/qtsvg:5 - dev-qt/qtxml:5 - dev-qt/qtxmlpatterns:5 - >=media-libs/freetype-2.5.2 - media-libs/libsndfile - sys-libs/zlib:= - alsa? ( >=media-libs/alsa-lib-1.0.0 ) - jack? ( virtual/jack ) - mp3? ( media-sound/lame ) - omr? ( app-text/poppler ) - portaudio? ( media-libs/portaudio ) - portmidi? ( media-libs/portmidi ) - pulseaudio? ( media-sound/pulseaudio ) - sf3? ( media-libs/libvorbis ) - webengine? ( dev-qt/qtwebengine:5[widgets] ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-3.0.1-man-pages.patch" - "${FILESDIR}/${PN}-3.5-lambda-capture-this.patch" - "${FILESDIR}/${PN}-3.5-remove-duplicite-declaration.patch" -) - -src_unpack() { - if [[ ${PV} == "9999" ]]; then - git-r3_src_unpack - unpack ${A} - else - default - fi -} - -src_prepare() { - cmake_src_prepare - - # Move soundfonts to the correct directory - mv "${WORKDIR}"/sound/* "${S}"/share/sound/ || die "Failed to move soundfont files" -} - -src_configure() { - local mycmakeargs=( - -DAEOLUS=OFF # does not compile - -DBUILD_ALSA="$(usex alsa)" - -DBUILD_CRASH_REPORTER=OFF - -DBUILD_JACK="$(usex jack)" - -DBUILD_LAME="$(usex mp3)" - -DBUILD_PCH=ON - -DBUILD_PORTAUDIO="$(usex portaudio)" - -DBUILD_PORTMIDI="$(usex portmidi)" - -DBUILD_PULSEAUDIO="$(usex pulseaudio)" - -DBUILD_SHARED_LIBS=ON - -DBUILD_TELEMETRY_MODULE=ON - -DBUILD_WEBENGINE="$(usex webengine)" - -DCMAKE_SKIP_RPATH=ON - -DDOWNLOAD_SOUNDFONT=OFF - -DHAS_AUDIOFILE=ON - -DOCR=OFF - -DOMR="$(usex omr)" - -DSOUNDFONT3=ON - -DZERBERUS="$(usex sfz)" - -DUSE_PATH_WITH_EXPLICIT_QT_VERSION=ON - -DUSE_SYSTEM_FREETYPE=ON - -DUSE_SYSTEM_POPPLER=ON - -DUSE_SYSTEM_QTSINGLEAPPLICATION=ON - ) - cmake_src_configure -} - -src_compile() { - cd "${BUILD_DIR}" || die - cmake_build -j1 lrelease manpages - cmake_src_compile -} diff --git a/media-sound/musescore/musescore-3.5.2.ebuild b/media-sound/musescore/musescore-3.5.2.ebuild index a1d345341b93..b8137e72faf0 100644 --- a/media-sound/musescore/musescore-3.5.2.ebuild +++ b/media-sound/musescore/musescore-3.5.2.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/${PN}/MuseScore.git" else SRC_URI="https://github.com/musescore/MuseScore/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 x86" + KEYWORDS="amd64 ~arm64 x86" S="${WORKDIR}/MuseScore-${PV}" fi diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index f6399648a84e..c1eb133511aa 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest index 46a8fc565429..876fc65d0579 100644 --- a/media-tv/kodi/Manifest +++ b/media-tv/kodi/Manifest @@ -1,10 +1,5 @@ -DIST ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz 12430413 BLAKE2B 6de6fde2c16264f851466b46f87c23c34e7d503203f69d47342d46034f153860190d196da51221f866315405c8a33325b2160283333256ee5d5e293336afae99 SHA512 c6dd75dbff7119adeeda246cfb640b5e8d3b4c242ef83e5ba070207b60f0c715c3fe3cb328d87687b70a133f122a03aba990f0e95f3aac7d5dbcee25bec59078 DIST ffmpeg-kodi-4.3.1-Matrix-Alpha1-2.tar.gz 13477450 BLAKE2B c33a2aad8b895be3ea5be76de238680284487d38a8c22ce57f17c3944a6ba214c0dfa9ef1e4717244ff8f70f6dd640b36715842d61ddaed65867a6c096470283 SHA512 7f614d0dd2b319414cb31853be9cd52e5e81b780a4049e36470f992e78e52bcd65e99bfd268df5f8781ad030bb60f99d15bd5e8c4d7c2fd9a4011b55a3efc40c DIST ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz 13477440 BLAKE2B 49415f76fd2a888b0efadb19597bd89db65c3d9e1224ab529ff0d73ab5734a23982b4d4905ddeb105ce59a816c4642cdb9f5568b0c39c29f5fb9431f9623d4ec SHA512 ce43390e816dabeed4ca231f5f7adade6c721c38e17996a57810fb6025ea49b812133c2a6e29aac7c674d4e4af3a21dbd7e605d85fb966935a01bda983b884ac -DIST kodi-18-libmicrohttpd-0.9.71.patch 84981 BLAKE2B e07c7df63bdfbaf9dfc5d0989adf96eb663a8c99ea11c42dfc585d8b91343a3445e9bc2f1797e845b0895e79568526e8e594a76e8cb3d7b591153a0ad45ce807 SHA512 286a1466174d847eac460b2a7a1b66b082148f2a3e91c4f5f881b909a59b8fdb2037eda074bd3c6e5dbe6a65dc2bef9f1d6746d7db2cb78d285c4b7750c366c2 -DIST kodi-18.7.tar.gz 51051040 BLAKE2B 7ff04cd0ddcf74e46eef4318cf870662b9e076b362322958a6b8019d49134e37981f7ca21b5806e38b942adc4c29ea2b25a19f46e5da3d469613cf19a29f4e8c SHA512 7e5678f5e23e8af929056a49b0ce0b992a1f53a1fe970a149610c5a24adb591085bb06cc405e8bdc6040eef853d23e99df660d7006fc1ea4e79afd3a697875c5 -DIST kodi-18.8.tar.gz 51052219 BLAKE2B 6e49b08b5e2bfe778dafb687658e82b90226a9f1c1a7827a4290d601fe4c98e5cbaabaa39563c19a2956b83ce3a76640f081a56a41dfea4d65fb8b503c6f37b0 SHA512 242eaa9144ba0d9b15f02ab41282295de76d375cf66d595e7f6687d47c996133fcf5647448dcd06759df9f30bd86cdba239720b9bdd8b57827b6f261c08c4aaa -DIST kodi-18.9.tar.gz 51052509 BLAKE2B e7cd888a38ed81e90566ae5e8a6f28c93688c8293af4b210674f224b02e7452ac81c25128cfbeaa3c67980fc00e18631060640ddff61263c782c807f8c5ea00e SHA512 72e4e2afa46d5d2061ed348af5c9a4218474589cb38d630e6d0643b35aff3b0aefb3db81333d52da6c799c530a1b709b1d7ccb6ec77dcb0cba06fce6791cb353 DIST kodi-19.0_alpha3_p20201109.tar.gz 52322634 BLAKE2B 4a69422811119ecc4b706a1b1f950b19bae16088ea8717b22c3015fe1dd448d37dccc46b2f756049ab71519c72a2e8a639f07128590dd94f227fce73e12efe10 SHA512 2fe0abfa8a8e4c3dd73021cf1aedb6dadda9c14588380276fc5ab05dee13e397d4f893ee5a62301fc79ebe5fe9129b8d37489edc0014c5a15564c63696d89d93 DIST kodi-19.0b1.tar.gz 52314501 BLAKE2B 35090e969160f7ea6619d6c720f92a3ecf97391d12548927fcfd03ccc15091132f795f4636a4c4b8c15b2a623ee8b892c4b395e2e4e811152c63ffc19474ff90 SHA512 51a5a060c9ee51dd05303259cf59164bf273b05430f0987998a90879dfb52c1e95669e1c432476df65247fb70e920058119713a627ed7e12bf8dcd13645ffc40 DIST libdvdcss-1.4.2-Leia-Beta-5.tar.gz 101068 BLAKE2B 283aa2cec0a2200d3569bc280cb9659e9224a6b3a77db8a35b269cd8caf1337ac9d8b92b806df66f63ef7458a46bd6261f0b8b14678b10e26644a79dcbeea5da SHA512 5185dbdbeb1bd13ea9d8723f1f4ab599d6f3102f5ba1096cd085aa1cda252c045f327c719227bba8e1b742352ade5e335106c8d0c1637a5a6b93ce661620dd7e diff --git a/media-tv/kodi/files/kodi-18-remove-useless-test.patch b/media-tv/kodi/files/kodi-18-remove-useless-test.patch deleted file mode 100644 index 144626718b60..000000000000 --- a/media-tv/kodi/files/kodi-18-remove-useless-test.patch +++ /dev/null @@ -1,51 +0,0 @@ -From 6cf1d4aaf9807a209f19e0aea97b44a7ae617f27 Mon Sep 17 00:00:00 2001 -From: Craig Andrews -Date: Tue, 23 Jun 2020 14:30:29 -0400 -Subject: [PATCH] [test] TestCPUInfo: remove useless test as we cannot - guarantee that they exist - ---- - xbmc/utils/test/TestCPUInfo.cpp | 30 ------------------------------ - 1 file changed, 30 deletions(-) - -diff --git a/xbmc/utils/test/TestCPUInfo.cpp b/xbmc/utils/test/TestCPUInfo.cpp -index fab473891356..df74ca3ee995 100644 ---- a/xbmc/utils/test/TestCPUInfo.cpp -+++ b/xbmc/utils/test/TestCPUInfo.cpp -@@ -73,36 +73,6 @@ TEST(TestCPUInfo, getTemperature) - } - #endif - --TEST(TestCPUInfo, getCPUModel) --{ -- std::string s = g_cpuInfo.getCPUModel(); -- EXPECT_STRNE("", s.c_str()); --} -- --TEST(TestCPUInfo, getCPUBogoMips) --{ -- std::string s = g_cpuInfo.getCPUBogoMips(); -- EXPECT_STRNE("", s.c_str()); --} -- --TEST(TestCPUInfo, getCPUHardware) --{ -- std::string s = g_cpuInfo.getCPUHardware(); -- EXPECT_STRNE("", s.c_str()); --} -- --TEST(TestCPUInfo, getCPURevision) --{ -- std::string s = g_cpuInfo.getCPURevision(); -- EXPECT_STRNE("", s.c_str()); --} -- --TEST(TestCPUInfo, getCPUSerial) --{ -- std::string s = g_cpuInfo.getCPUSerial(); -- EXPECT_STRNE("", s.c_str()); --} -- - TEST(TestCPUInfo, CoreInfo) - { - ASSERT_TRUE(g_cpuInfo.HasCoreId(0)); diff --git a/media-tv/kodi/files/kodi-18.5-cassert.patch b/media-tv/kodi/files/kodi-18.5-cassert.patch deleted file mode 100644 index 9558baa9e18c..000000000000 --- a/media-tv/kodi/files/kodi-18.5-cassert.patch +++ /dev/null @@ -1,42 +0,0 @@ -https://github.com/xbmc/xbmc/pull/17000 - -From bbfc36f06c191d3bdea19cacc498afb86bd25404 Mon Sep 17 00:00:00 2001 -From: Craig Andrews -Date: Thu, 5 Dec 2019 14:49:50 -0500 -Subject: [PATCH] Add missing cassert includes -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Without these includes, ‘assert’ was not declared in this scope errors -occur. ---- - xbmc/profiles/dialogs/GUIDialogProfileSettings.cpp | 1 + - xbmc/windowing/GraphicContext.cpp | 2 ++ - 2 files changed, 3 insertions(+) - -diff --git a/xbmc/profiles/dialogs/GUIDialogProfileSettings.cpp b/xbmc/profiles/dialogs/GUIDialogProfileSettings.cpp -index 1303d894478c..aa85d95b3234 100644 ---- a/xbmc/profiles/dialogs/GUIDialogProfileSettings.cpp -+++ b/xbmc/profiles/dialogs/GUIDialogProfileSettings.cpp -@@ -31,6 +31,7 @@ - #include "utils/Variant.h" - #include "utils/log.h" - -+#include - #include - - #define SETTING_PROFILE_NAME "profile.name" -diff --git a/xbmc/windowing/GraphicContext.cpp b/xbmc/windowing/GraphicContext.cpp -index b47bafba57dc..75b333ea6daa 100644 ---- a/xbmc/windowing/GraphicContext.cpp -+++ b/xbmc/windowing/GraphicContext.cpp -@@ -25,6 +25,8 @@ - #include "settings/lib/Setting.h" - #include "utils/log.h" - -+#include -+ - using namespace KODI::MESSAGING; - - CGraphicContext::CGraphicContext(void) = default; diff --git a/media-tv/kodi/kodi-18.7.ebuild b/media-tv/kodi/kodi-18.7.ebuild deleted file mode 100644 index af2df1256278..000000000000 --- a/media-tv/kodi/kodi-18.7.ebuild +++ /dev/null @@ -1,324 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_REQ_USE="libressl?,sqlite,ssl" -LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" -LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" -LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" -FFMPEG_VERSION="4.0.4" -CODENAME="Leia" -FFMPEG_KODI_VERSION="18.4" -SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz - https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz - https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz - !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz ) - https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch" -PATCHES=( - "${FILESDIR}/${PN}-18.5-cassert.patch" - "${FILESDIR}/${PN}-18-remove-useless-test.patch" - "${DISTDIR}/${PN}-18-libmicrohttpd-0.9.71.patch" -) - -if [[ ${PV} == *9999 ]] ; then - PYTHON_COMPAT=( python2_7 python3_{6,7} ) - EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" - inherit git-r3 -else - PYTHON_COMPAT=( python2_7 ) - MY_PV=${PV/_p/_r} - MY_PV=${MY_PV/_alpha/a} - MY_PV=${MY_PV/_beta/b} - MY_PV=${MY_PV/_rc/rc} - MY_P="${PN}-${MY_PV}" - SRC_URI+=" https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="amd64 x86" - S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME} -fi - -inherit autotools cmake desktop linux-info pax-utils python-single-r1 xdg - -DESCRIPTION="A free and open source media-player and entertainment hub" -HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" - -LICENSE="GPL-2+" -SLOT="0" -# use flag is called libusb so that it doesn't fool people in thinking that -# it is _required_ for USB support. Otherwise they'll disable udev and -# that's going to be worse. -IUSE="airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - || ( gles opengl ) - ^^ ( gbm raspberry-pi wayland X ) - ?? ( mariadb mysql ) - udev? ( !libusb ) - udisks? ( dbus ) - upower? ( dbus ) -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="${PYTHON_DEPS} - airplay? ( - >=app-pda/libplist-2.0.0 - net-libs/shairplay - ) - alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) - bluetooth? ( net-wireless/bluez ) - bluray? ( >=media-libs/libbluray-1.0.2 ) - caps? ( sys-libs/libcap ) - dbus? ( sys-apps/dbus ) - dev-db/sqlite - dev-libs/expat - dev-libs/flatbuffers - >=dev-libs/fribidi-0.19.7 - cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) - dev-libs/libpcre[cxx] - >=dev-libs/libinput-1.10.5 - >=dev-libs/libxml2-2.9.4 - >=dev-libs/lzo-2.04 - dev-libs/tinyxml[stl] - $(python_gen_cond_dep 'dev-python/pillow[${PYTHON_MULTI_USEDEP}]') - $(python_gen_cond_dep 'dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]' 'python3*') - >=dev-libs/libcdio-0.94 - >=dev-libs/libfmt-3.0.1 - dev-libs/libfstrcmp - gbm? ( media-libs/mesa[gbm] ) - gles? ( - !raspberry-pi? ( media-libs/mesa[gles2] ) - ) - lcms? ( media-libs/lcms:2 ) - libusb? ( virtual/libusb:1 ) - virtual/ttf-fonts - media-fonts/roboto - >=media-libs/fontconfig-2.12.4 - >=media-libs/freetype-2.8 - >=media-libs/libass-0.13.4 - !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) - >=media-libs/taglib-1.11.1 - system-ffmpeg? ( - >=media-video/ffmpeg-${FFMPEG_VERSION}:=[encode,postproc] - libressl? ( media-video/ffmpeg[libressl,-openssl] ) - !libressl? ( media-video/ffmpeg[-libressl,openssl] ) - ) - mysql? ( dev-db/mysql-connector-c:= ) - mariadb? ( dev-db/mariadb-connector-c:= ) - >=net-misc/curl-7.56.1[http2] - nfs? ( >=net-fs/libnfs-2.0.0:= ) - opengl? ( media-libs/glu ) - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( dev-libs/libressl:0= ) - raspberry-pi? ( - || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) - >=sys-libs/zlib-1.2.11 - udev? ( virtual/udev ) - vaapi? ( - x11-libs/libva:= - opengl? ( x11-libs/libva[opengl] ) - system-ffmpeg? ( media-video/ffmpeg[vaapi] ) - vdpau? ( x11-libs/libva[vdpau] ) - wayland? ( x11-libs/libva[wayland] ) - X? ( x11-libs/libva[X] ) - ) - virtual/libiconv - vdpau? ( - || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) - system-ffmpeg? ( media-video/ffmpeg[vdpau] ) - ) - wayland? ( - >=dev-cpp/waylandpp-0.2.3:= - media-libs/mesa[wayland] - >=dev-libs/wayland-protocols-1.7 - ) - webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) - X? ( - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - system-ffmpeg? ( media-video/ffmpeg[X] ) - ) - x11-libs/libdrm - >=x11-libs/libxkbcommon-0.4.1 - xslt? ( dev-libs/libxslt ) - zeroconf? ( net-dns/avahi[dbus] ) -" -RDEPEND="${COMMON_DEPEND} - lirc? ( app-misc/lirc ) - !media-tv/xbmc - udisks? ( sys-fs/udisks:2 ) - upower? ( sys-power/upower ) -" -DEPEND="${COMMON_DEPEND} - app-arch/bzip2 - app-arch/xz-utils - dev-lang/swig - dev-libs/crossguid - dev-libs/rapidjson - dev-util/cmake - dev-util/gperf - media-libs/giflib - >=media-libs/libjpeg-turbo-1.5.1:= - >=media-libs/libpng-1.6.26:0= - test? ( dev-cpp/gtest ) - virtual/pkgconfig - virtual/jre - x86? ( dev-lang/nasm ) -" - -CONFIG_CHECK="~IP_MULTICAST" -ERROR_IP_MULTICAST=" -In some cases Kodi needs to access multicast addresses. -Please consider enabling IP_MULTICAST under Networking options. -" - -pkg_setup() { - check_extra_config - python-single-r1_pkg_setup -} - -src_unpack() { - if [[ ${PV} == *9999 ]] ; then - if python_is_python3; then - EGIT_BRANCH="feature_python3" - ewarn "Using the experimental Python 3 branch!" - ewarn "See https://kodi.wiki/view/Migration_to_Python_3 for more information." - ewarn "To use the non-experimental Python 2 version:" - ewarn "echo '~${CATEGORY}/${P} PYTHON_TARGETS: -* python2_7 PYTHON_SINGLE_TARGET: -* python2_7' >> /etc/portage/package.use" - ewarn "then re-merge using: emerge -a =${CATEGORY}/${PF}" - fi - git-r3_src_unpack - else - default - fi -} - -src_prepare() { - cmake_src_prepare - - # avoid long delays when powerkit isn't running #348580 - sed -i \ - -e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ - xbmc/platform/linux/*.cpp || die - - # Prepare tools and libs witch are configured with autotools during compile time - AUTOTOOLS_DIRS=( - "${S}"/lib/cpluff - "${S}"/tools/depends/native/TexturePacker/src - "${S}"/tools/depends/native/JsonSchemaBuilder/src - ) - - local d - for d in "${AUTOTOOLS_DIRS[@]}" ; do - pushd ${d} >/dev/null || die - AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf - popd >/dev/null || die - done - elibtoolize - - # Prevent autoreconf rerun - sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ - "${S}"/cmake/modules/FindCpluff.cmake \ - "${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ - "${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ - || die -} - -src_configure() { - local mycmakeargs=( - -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" - -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 - -DENABLE_ALSA=$(usex alsa) - -DENABLE_AIRTUNES=$(usex airplay) - -DENABLE_AVAHI=$(usex zeroconf) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_BLURAY=$(usex bluray) - -DENABLE_CCACHE=OFF - -DENABLE_CEC=$(usex cec) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DVDCSS=$(usex css) - -DENABLE_INTERNAL_CROSSGUID=OFF - -DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" - -DENABLE_INTERNAL_FSTRCMP=OFF - -DENABLE_CAP=$(usex caps) - -DENABLE_LCMS2=$(usex lcms) - -DENABLE_LIRCCLIENT=$(usex lirc) - -DENABLE_MARIADBCLIENT=$(usex mariadb) - -DENABLE_MICROHTTPD=$(usex webserver) - -DENABLE_MYSQLCLIENT=$(usex mysql) - -DENABLE_NFS=$(usex nfs) - -DENABLE_OPENGLES=$(usex gles) - -DENABLE_OPENGL=$(usex opengl) - -DENABLE_OPTICAL=$(usex dvd) - -DENABLE_PLIST=$(usex airplay) - -DENABLE_PULSEAUDIO=$(usex pulseaudio) - -DENABLE_SMBCLIENT=$(usex samba) - -DENABLE_UDEV=$(usex udev) - -DENABLE_UPNP=$(usex upnp) - -DENABLE_VAAPI=$(usex vaapi) - -DENABLE_VDPAU=$(usex vdpau) - -DENABLE_XSLT=$(usex xslt) - -Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" - -Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" - -Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" - ) - - use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) - - if use system-ffmpeg; then - mycmakeargs+=( -DWITH_FFMPEG="yes" ) - else - mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) - fi - - if use gbm; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="gbm" - -DGBM_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use wayland; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="wayland" - -DWAYLAND_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use raspberry-pi; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="rbpi" ) - fi - - if use X; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="x11" ) - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all -} - -src_test() { - # see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213 - KODI_HOME="${BUILD_DIR}" cmake_build check -} - -src_install() { - cmake_src_install - - pax-mark Em "${ED}"/usr/$(get_libdir)/${PN}/${PN}.bin - - newicon media/icon48x48.png kodi.png - - rm "${ED}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die - dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ - usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf - - python_domodule tools/EventClients/lib/python/xbmcclient.py - python_newscript "tools/EventClients/Clients/KodiSend/kodi-send.py" kodi-send -} diff --git a/media-tv/kodi/kodi-18.8.ebuild b/media-tv/kodi/kodi-18.8.ebuild deleted file mode 100644 index 4311cb82d79d..000000000000 --- a/media-tv/kodi/kodi-18.8.ebuild +++ /dev/null @@ -1,319 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_REQ_USE="libressl?,sqlite,ssl" -LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" -LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" -LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" -FFMPEG_VERSION="4.0.4" -CODENAME="Leia" -FFMPEG_KODI_VERSION="18.4" -SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz - https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz - https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz - !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz ) - https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch" - -if [[ ${PV} == *9999 ]] ; then - PYTHON_COMPAT=( python2_7 python3_{6,7} ) - EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" - inherit git-r3 -else - PYTHON_COMPAT=( python2_7 ) - MY_PV=${PV/_p/_r} - MY_PV=${MY_PV/_alpha/a} - MY_PV=${MY_PV/_beta/b} - MY_PV=${MY_PV/_rc/rc} - MY_P="${PN}-${MY_PV}" - SRC_URI+=" https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME} -fi - -inherit autotools cmake desktop linux-info pax-utils python-single-r1 xdg - -DESCRIPTION="A free and open source media-player and entertainment hub" -HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" - -LICENSE="GPL-2+" -SLOT="0" -# use flag is called libusb so that it doesn't fool people in thinking that -# it is _required_ for USB support. Otherwise they'll disable udev and -# that's going to be worse. -IUSE="airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - || ( gles opengl ) - ^^ ( gbm raspberry-pi wayland X ) - ?? ( mariadb mysql ) - udev? ( !libusb ) - udisks? ( dbus ) - upower? ( dbus ) -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="${PYTHON_DEPS} - airplay? ( - >=app-pda/libplist-2.0.0 - net-libs/shairplay - ) - alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) - bluetooth? ( net-wireless/bluez ) - bluray? ( >=media-libs/libbluray-1.0.2 ) - caps? ( sys-libs/libcap ) - dbus? ( sys-apps/dbus ) - dev-db/sqlite - dev-libs/expat - dev-libs/flatbuffers - >=dev-libs/fribidi-0.19.7 - cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) - dev-libs/libpcre[cxx] - >=dev-libs/libinput-1.10.5 - >=dev-libs/libxml2-2.9.4 - >=dev-libs/lzo-2.04 - dev-libs/tinyxml[stl] - $(python_gen_cond_dep 'dev-python/pillow[${PYTHON_MULTI_USEDEP}]') - $(python_gen_cond_dep 'dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]' 'python3*') - >=dev-libs/libcdio-0.94 - >=dev-libs/libfmt-3.0.1 - dev-libs/libfstrcmp - gbm? ( media-libs/mesa[gbm] ) - gles? ( - !raspberry-pi? ( media-libs/mesa[gles2] ) - ) - lcms? ( media-libs/lcms:2 ) - libusb? ( virtual/libusb:1 ) - virtual/ttf-fonts - media-fonts/roboto - >=media-libs/fontconfig-2.12.4 - >=media-libs/freetype-2.8 - >=media-libs/libass-0.13.4 - !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) - >=media-libs/taglib-1.11.1 - system-ffmpeg? ( - >=media-video/ffmpeg-${FFMPEG_VERSION}:=[encode,postproc] - libressl? ( media-video/ffmpeg[libressl,-openssl] ) - !libressl? ( media-video/ffmpeg[-libressl,openssl] ) - ) - mysql? ( dev-db/mysql-connector-c:= ) - mariadb? ( dev-db/mariadb-connector-c:= ) - >=net-misc/curl-7.56.1[http2] - nfs? ( >=net-fs/libnfs-2.0.0:= ) - opengl? ( media-libs/glu ) - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( dev-libs/libressl:0= ) - raspberry-pi? ( - || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) - >=sys-libs/zlib-1.2.11 - udev? ( virtual/udev ) - vaapi? ( - x11-libs/libva:= - opengl? ( x11-libs/libva[opengl] ) - system-ffmpeg? ( media-video/ffmpeg[vaapi] ) - vdpau? ( x11-libs/libva[vdpau] ) - wayland? ( x11-libs/libva[wayland] ) - X? ( x11-libs/libva[X] ) - ) - virtual/libiconv - vdpau? ( - || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) - system-ffmpeg? ( media-video/ffmpeg[vdpau] ) - ) - wayland? ( - >=dev-cpp/waylandpp-0.2.3:= - media-libs/mesa[wayland] - >=dev-libs/wayland-protocols-1.7 - ) - webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) - X? ( - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - system-ffmpeg? ( media-video/ffmpeg[X] ) - ) - x11-libs/libdrm - >=x11-libs/libxkbcommon-0.4.1 - xslt? ( dev-libs/libxslt ) - zeroconf? ( net-dns/avahi[dbus] ) -" -RDEPEND="${COMMON_DEPEND} - lirc? ( app-misc/lirc ) - !media-tv/xbmc - udisks? ( sys-fs/udisks:2 ) - upower? ( sys-power/upower ) -" -DEPEND="${COMMON_DEPEND} - app-arch/bzip2 - app-arch/xz-utils - dev-lang/swig - dev-libs/crossguid - dev-libs/rapidjson - dev-util/cmake - dev-util/gperf - media-libs/giflib - >=media-libs/libjpeg-turbo-1.5.1:= - >=media-libs/libpng-1.6.26:0= - test? ( dev-cpp/gtest ) - virtual/pkgconfig - virtual/jre - x86? ( dev-lang/nasm ) -" - -CONFIG_CHECK="~IP_MULTICAST" -ERROR_IP_MULTICAST=" -In some cases Kodi needs to access multicast addresses. -Please consider enabling IP_MULTICAST under Networking options. -" - -pkg_setup() { - check_extra_config - python-single-r1_pkg_setup -} - -src_unpack() { - if [[ ${PV} == *9999 ]] ; then - if python_is_python3; then - EGIT_BRANCH="feature_python3" - ewarn "Using the experimental Python 3 branch!" - ewarn "See https://kodi.wiki/view/Migration_to_Python_3 for more information." - ewarn "To use the non-experimental Python 2 version:" - ewarn "echo '~${CATEGORY}/${P} PYTHON_TARGETS: -* python2_7 PYTHON_SINGLE_TARGET: -* python2_7' >> /etc/portage/package.use" - ewarn "then re-merge using: emerge -a =${CATEGORY}/${PF}" - fi - git-r3_src_unpack - else - default - fi -} - -src_prepare() { - cmake_src_prepare - - # avoid long delays when powerkit isn't running #348580 - sed -i \ - -e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ - xbmc/platform/linux/*.cpp || die - - # Prepare tools and libs witch are configured with autotools during compile time - AUTOTOOLS_DIRS=( - "${S}"/lib/cpluff - "${S}"/tools/depends/native/TexturePacker/src - "${S}"/tools/depends/native/JsonSchemaBuilder/src - ) - - local d - for d in "${AUTOTOOLS_DIRS[@]}" ; do - pushd ${d} >/dev/null || die - AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf - popd >/dev/null || die - done - elibtoolize - - # Prevent autoreconf rerun - sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ - "${S}"/cmake/modules/FindCpluff.cmake \ - "${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ - "${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ - || die -} - -src_configure() { - local mycmakeargs=( - -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" - -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 - -DENABLE_ALSA=$(usex alsa) - -DENABLE_AIRTUNES=$(usex airplay) - -DENABLE_AVAHI=$(usex zeroconf) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_BLURAY=$(usex bluray) - -DENABLE_CCACHE=OFF - -DENABLE_CEC=$(usex cec) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DVDCSS=$(usex css) - -DENABLE_INTERNAL_CROSSGUID=OFF - -DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" - -DENABLE_INTERNAL_FSTRCMP=OFF - -DENABLE_CAP=$(usex caps) - -DENABLE_LCMS2=$(usex lcms) - -DENABLE_LIRCCLIENT=$(usex lirc) - -DENABLE_MARIADBCLIENT=$(usex mariadb) - -DENABLE_MICROHTTPD=$(usex webserver) - -DENABLE_MYSQLCLIENT=$(usex mysql) - -DENABLE_NFS=$(usex nfs) - -DENABLE_OPENGLES=$(usex gles) - -DENABLE_OPENGL=$(usex opengl) - -DENABLE_OPTICAL=$(usex dvd) - -DENABLE_PLIST=$(usex airplay) - -DENABLE_PULSEAUDIO=$(usex pulseaudio) - -DENABLE_SMBCLIENT=$(usex samba) - -DENABLE_UDEV=$(usex udev) - -DENABLE_UPNP=$(usex upnp) - -DENABLE_VAAPI=$(usex vaapi) - -DENABLE_VDPAU=$(usex vdpau) - -DENABLE_XSLT=$(usex xslt) - -Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" - -Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" - -Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" - ) - - use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) - - if use system-ffmpeg; then - mycmakeargs+=( -DWITH_FFMPEG="yes" ) - else - mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) - fi - - if use gbm; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="gbm" - -DGBM_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use wayland; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="wayland" - -DWAYLAND_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use raspberry-pi; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="rbpi" ) - fi - - if use X; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="x11" ) - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all -} - -src_test() { - # see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213 - KODI_HOME="${BUILD_DIR}" cmake_build check -} - -src_install() { - cmake_src_install - - pax-mark Em "${ED}"/usr/$(get_libdir)/${PN}/${PN}.bin - - newicon media/icon48x48.png kodi.png - - rm "${ED}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die - dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ - usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf - - python_domodule tools/EventClients/lib/python/xbmcclient.py - python_newscript "tools/EventClients/Clients/KodiSend/kodi-send.py" kodi-send -} diff --git a/media-tv/kodi/kodi-18.9.ebuild b/media-tv/kodi/kodi-18.9.ebuild deleted file mode 100644 index 4311cb82d79d..000000000000 --- a/media-tv/kodi/kodi-18.9.ebuild +++ /dev/null @@ -1,319 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_REQ_USE="libressl?,sqlite,ssl" -LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" -LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" -LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" -FFMPEG_VERSION="4.0.4" -CODENAME="Leia" -FFMPEG_KODI_VERSION="18.4" -SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz - https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz - https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz - !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz ) - https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch" - -if [[ ${PV} == *9999 ]] ; then - PYTHON_COMPAT=( python2_7 python3_{6,7} ) - EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" - inherit git-r3 -else - PYTHON_COMPAT=( python2_7 ) - MY_PV=${PV/_p/_r} - MY_PV=${MY_PV/_alpha/a} - MY_PV=${MY_PV/_beta/b} - MY_PV=${MY_PV/_rc/rc} - MY_P="${PN}-${MY_PV}" - SRC_URI+=" https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME} -fi - -inherit autotools cmake desktop linux-info pax-utils python-single-r1 xdg - -DESCRIPTION="A free and open source media-player and entertainment hub" -HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" - -LICENSE="GPL-2+" -SLOT="0" -# use flag is called libusb so that it doesn't fool people in thinking that -# it is _required_ for USB support. Otherwise they'll disable udev and -# that's going to be worse. -IUSE="airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - || ( gles opengl ) - ^^ ( gbm raspberry-pi wayland X ) - ?? ( mariadb mysql ) - udev? ( !libusb ) - udisks? ( dbus ) - upower? ( dbus ) -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="${PYTHON_DEPS} - airplay? ( - >=app-pda/libplist-2.0.0 - net-libs/shairplay - ) - alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) - bluetooth? ( net-wireless/bluez ) - bluray? ( >=media-libs/libbluray-1.0.2 ) - caps? ( sys-libs/libcap ) - dbus? ( sys-apps/dbus ) - dev-db/sqlite - dev-libs/expat - dev-libs/flatbuffers - >=dev-libs/fribidi-0.19.7 - cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) - dev-libs/libpcre[cxx] - >=dev-libs/libinput-1.10.5 - >=dev-libs/libxml2-2.9.4 - >=dev-libs/lzo-2.04 - dev-libs/tinyxml[stl] - $(python_gen_cond_dep 'dev-python/pillow[${PYTHON_MULTI_USEDEP}]') - $(python_gen_cond_dep 'dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]' 'python3*') - >=dev-libs/libcdio-0.94 - >=dev-libs/libfmt-3.0.1 - dev-libs/libfstrcmp - gbm? ( media-libs/mesa[gbm] ) - gles? ( - !raspberry-pi? ( media-libs/mesa[gles2] ) - ) - lcms? ( media-libs/lcms:2 ) - libusb? ( virtual/libusb:1 ) - virtual/ttf-fonts - media-fonts/roboto - >=media-libs/fontconfig-2.12.4 - >=media-libs/freetype-2.8 - >=media-libs/libass-0.13.4 - !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) - >=media-libs/taglib-1.11.1 - system-ffmpeg? ( - >=media-video/ffmpeg-${FFMPEG_VERSION}:=[encode,postproc] - libressl? ( media-video/ffmpeg[libressl,-openssl] ) - !libressl? ( media-video/ffmpeg[-libressl,openssl] ) - ) - mysql? ( dev-db/mysql-connector-c:= ) - mariadb? ( dev-db/mariadb-connector-c:= ) - >=net-misc/curl-7.56.1[http2] - nfs? ( >=net-fs/libnfs-2.0.0:= ) - opengl? ( media-libs/glu ) - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( dev-libs/libressl:0= ) - raspberry-pi? ( - || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) - >=sys-libs/zlib-1.2.11 - udev? ( virtual/udev ) - vaapi? ( - x11-libs/libva:= - opengl? ( x11-libs/libva[opengl] ) - system-ffmpeg? ( media-video/ffmpeg[vaapi] ) - vdpau? ( x11-libs/libva[vdpau] ) - wayland? ( x11-libs/libva[wayland] ) - X? ( x11-libs/libva[X] ) - ) - virtual/libiconv - vdpau? ( - || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) - system-ffmpeg? ( media-video/ffmpeg[vdpau] ) - ) - wayland? ( - >=dev-cpp/waylandpp-0.2.3:= - media-libs/mesa[wayland] - >=dev-libs/wayland-protocols-1.7 - ) - webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) - X? ( - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - system-ffmpeg? ( media-video/ffmpeg[X] ) - ) - x11-libs/libdrm - >=x11-libs/libxkbcommon-0.4.1 - xslt? ( dev-libs/libxslt ) - zeroconf? ( net-dns/avahi[dbus] ) -" -RDEPEND="${COMMON_DEPEND} - lirc? ( app-misc/lirc ) - !media-tv/xbmc - udisks? ( sys-fs/udisks:2 ) - upower? ( sys-power/upower ) -" -DEPEND="${COMMON_DEPEND} - app-arch/bzip2 - app-arch/xz-utils - dev-lang/swig - dev-libs/crossguid - dev-libs/rapidjson - dev-util/cmake - dev-util/gperf - media-libs/giflib - >=media-libs/libjpeg-turbo-1.5.1:= - >=media-libs/libpng-1.6.26:0= - test? ( dev-cpp/gtest ) - virtual/pkgconfig - virtual/jre - x86? ( dev-lang/nasm ) -" - -CONFIG_CHECK="~IP_MULTICAST" -ERROR_IP_MULTICAST=" -In some cases Kodi needs to access multicast addresses. -Please consider enabling IP_MULTICAST under Networking options. -" - -pkg_setup() { - check_extra_config - python-single-r1_pkg_setup -} - -src_unpack() { - if [[ ${PV} == *9999 ]] ; then - if python_is_python3; then - EGIT_BRANCH="feature_python3" - ewarn "Using the experimental Python 3 branch!" - ewarn "See https://kodi.wiki/view/Migration_to_Python_3 for more information." - ewarn "To use the non-experimental Python 2 version:" - ewarn "echo '~${CATEGORY}/${P} PYTHON_TARGETS: -* python2_7 PYTHON_SINGLE_TARGET: -* python2_7' >> /etc/portage/package.use" - ewarn "then re-merge using: emerge -a =${CATEGORY}/${PF}" - fi - git-r3_src_unpack - else - default - fi -} - -src_prepare() { - cmake_src_prepare - - # avoid long delays when powerkit isn't running #348580 - sed -i \ - -e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ - xbmc/platform/linux/*.cpp || die - - # Prepare tools and libs witch are configured with autotools during compile time - AUTOTOOLS_DIRS=( - "${S}"/lib/cpluff - "${S}"/tools/depends/native/TexturePacker/src - "${S}"/tools/depends/native/JsonSchemaBuilder/src - ) - - local d - for d in "${AUTOTOOLS_DIRS[@]}" ; do - pushd ${d} >/dev/null || die - AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf - popd >/dev/null || die - done - elibtoolize - - # Prevent autoreconf rerun - sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ - "${S}"/cmake/modules/FindCpluff.cmake \ - "${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ - "${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ - || die -} - -src_configure() { - local mycmakeargs=( - -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" - -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 - -DENABLE_ALSA=$(usex alsa) - -DENABLE_AIRTUNES=$(usex airplay) - -DENABLE_AVAHI=$(usex zeroconf) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_BLURAY=$(usex bluray) - -DENABLE_CCACHE=OFF - -DENABLE_CEC=$(usex cec) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DVDCSS=$(usex css) - -DENABLE_INTERNAL_CROSSGUID=OFF - -DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" - -DENABLE_INTERNAL_FSTRCMP=OFF - -DENABLE_CAP=$(usex caps) - -DENABLE_LCMS2=$(usex lcms) - -DENABLE_LIRCCLIENT=$(usex lirc) - -DENABLE_MARIADBCLIENT=$(usex mariadb) - -DENABLE_MICROHTTPD=$(usex webserver) - -DENABLE_MYSQLCLIENT=$(usex mysql) - -DENABLE_NFS=$(usex nfs) - -DENABLE_OPENGLES=$(usex gles) - -DENABLE_OPENGL=$(usex opengl) - -DENABLE_OPTICAL=$(usex dvd) - -DENABLE_PLIST=$(usex airplay) - -DENABLE_PULSEAUDIO=$(usex pulseaudio) - -DENABLE_SMBCLIENT=$(usex samba) - -DENABLE_UDEV=$(usex udev) - -DENABLE_UPNP=$(usex upnp) - -DENABLE_VAAPI=$(usex vaapi) - -DENABLE_VDPAU=$(usex vdpau) - -DENABLE_XSLT=$(usex xslt) - -Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" - -Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" - -Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" - ) - - use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) - - if use system-ffmpeg; then - mycmakeargs+=( -DWITH_FFMPEG="yes" ) - else - mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) - fi - - if use gbm; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="gbm" - -DGBM_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use wayland; then - mycmakeargs+=( - -DCORE_PLATFORM_NAME="wayland" - -DWAYLAND_RENDER_SYSTEM="$(usex opengl gl gles)" - ) - fi - - if use raspberry-pi; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="rbpi" ) - fi - - if use X; then - mycmakeargs+=( -DCORE_PLATFORM_NAME="x11" ) - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all -} - -src_test() { - # see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213 - KODI_HOME="${BUILD_DIR}" cmake_build check -} - -src_install() { - cmake_src_install - - pax-mark Em "${ED}"/usr/$(get_libdir)/${PN}/${PN}.bin - - newicon media/icon48x48.png kodi.png - - rm "${ED}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die - dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ - usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf - - python_domodule tools/EventClients/lib/python/xbmcclient.py - python_newscript "tools/EventClients/Clients/KodiSend/kodi-send.py" kodi-send -} diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index bab05453519f..4d20f5455f1d 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 a052a264e5e4..b77077aa718f 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 18 Nov 2020 06:38:22 +0000 +Fri, 20 Nov 2020 05:08:24 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index a052a264e5e4..b77077aa718f 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 18 Nov 2020 06:38:22 +0000 +Fri, 20 Nov 2020 05:08:24 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 4bbe3563962b..1aef379deeae 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 346afe382d0a..b4658ef727f2 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/conky-1.11.6-r1 b/metadata/md5-cache/app-admin/conky-1.11.6-r1 deleted file mode 100644 index a8f8955db1b0..000000000000 --- a/metadata/md5-cache/app-admin/conky-1.11.6-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXfixes x11-libs/libXext ) cmus? ( media-sound/cmus ) curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-sound/pulseaudio ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) webserver? ( net-libs/libmicrohttpd ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) doc? ( app-text/docbook2X dev-libs/libxslt ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=An advanced, highly configurable system monitor for X -EAPI=7 -HOMEPAGE=https://github.com/brndnmtthws/conky -IUSE=apcupsd bundled-toluapp cmus curl doc hddtemp ical iconv imlib iostats ipv6 irc lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype vim-syntax weather-metar webserver wifi X xmms2 kernel_linux +lua_single_target_lua5-3 -KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-3 BSD LGPL-2.1 MIT -RDEPEND=X? ( x11-libs/libX11 x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXfixes x11-libs/libXext ) cmus? ( media-sound/cmus ) curl? ( net-misc/curl ) ical? ( dev-libs/libical:= ) iconv? ( virtual/libiconv ) imlib? ( media-libs/imlib2[X] ) irc? ( net-libs/libircclient ) lua-cairo? ( x11-libs/cairo[X] ) lua-imlib? ( media-libs/imlib2[X] ) lua-rsvg? ( gnome-base/librsvg ) mysql? ( dev-db/mysql-connector-c ) ncurses? ( sys-libs/ncurses:= ) nvidia? ( x11-drivers/nvidia-drivers[tools,static-libs] ) pulseaudio? ( media-sound/pulseaudio ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) webserver? ( net-libs/libmicrohttpd ) xmms2? ( media-sound/xmms2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) apcupsd? ( sys-power/apcupsd ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) nano-syntax? ( app-editors/nano ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -REQUIRED_USE=imlib? ( X ) nvidia? ( X ) truetype? ( X ) lua-cairo? ( X bundled-toluapp ) lua-imlib? ( X bundled-toluapp ) lua-rsvg? ( X bundled-toluapp ) -SLOT=0 -SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.11.6.tar.gz -> conky-1.11.6.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8ad92dd80fd9e2a4206e1b40d5e120dc diff --git a/metadata/md5-cache/app-admin/graylog-4.0.0_rc2 b/metadata/md5-cache/app-admin/graylog-4.0.0_rc2 new file mode 100644 index 000000000000..61812b0ece02 --- /dev/null +++ b/metadata/md5-cache/app-admin/graylog-4.0.0_rc2 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install postinst prepare +DESCRIPTION=Free and open source log management +EAPI=7 +HOMEPAGE=https://www.graylog.org +LICENSE=GPL-3 +RDEPEND=!app-admin/graylog2 acct-group/graylog acct-user/graylog >=virtual/jdk-1.8:* +RESTRICT=strip +SLOT=0 +SRC_URI=https://downloads.graylog.org/releases/graylog/graylog-4.0.0-rc.2.tgz -> graylog-4.0.0_rc2.tar.gz +_md5_=f6ecd5ee8b1492ce86c3823c37c312ff diff --git a/metadata/md5-cache/app-admin/logstash-bin-7.10.0 b/metadata/md5-cache/app-admin/logstash-bin-7.10.0-r1 similarity index 94% rename from metadata/md5-cache/app-admin/logstash-bin-7.10.0 rename to metadata/md5-cache/app-admin/logstash-bin-7.10.0-r1 index 0b53b780ed98..62614a6f49f9 100644 --- a/metadata/md5-cache/app-admin/logstash-bin-7.10.0 +++ b/metadata/md5-cache/app-admin/logstash-bin-7.10.0-r1 @@ -11,4 +11,4 @@ RESTRICT=strip SLOT=0 SRC_URI=x-pack? ( https://artifacts.elastic.co/downloads/logstash/logstash-7.10.0-linux-x86_64.tar.gz ) !x-pack? ( https://artifacts.elastic.co/downloads/logstash/logstash-oss-7.10.0-linux-x86_64.tar.gz ) _eclasses_=java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 -_md5_=b389f2593ec938410f22ab89099e06be +_md5_=f93cb701d645c66690051439962159d8 diff --git a/metadata/md5-cache/app-admin/salt-3000.2-r4 b/metadata/md5-cache/app-admin/salt-3000.2-r4 deleted file mode 100644 index c49765c971de..000000000000 --- a/metadata/md5-cache/app-admin/salt-3000.2-r4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( sys-apps/pciutils dev-python/distro[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/jinja[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/libnacl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/msgpack-0.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] =dev-python/requests-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mako? ( dev-python/mako[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ldap? ( dev-python/python-ldap[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) libvirt? ( python_targets_python3_7? ( dev-python/libvirt-python[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) openssl? ( dev-libs/openssl:0=[-bindist] dev-python/pyopenssl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/ioflo-1.1.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/raet-0.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cheetah? ( dev-python/cheetah3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mongodb? ( dev-python/pymongo[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) portage? ( sys-apps/portage[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) keyring? ( dev-python/keyring[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) redis? ( dev-python/redis-py[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_7? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) neutron? ( python_targets_python3_7? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) profile? ( dev-python/yappi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) >=dev-python/boto-2.32.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/jsonschema-3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/mock-2.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/moto-0.3.6[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pip[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/psutil[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest-helpers-namespace[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest-helpers-namespace[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pytest-salt-2018.12.8[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest-tempdir[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/SaltTesting-2016.5.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/virtualenv[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !x86? ( >=dev-python/boto3-1.2.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ) virtual/pkgconfig 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 postinst prepare test -DESCRIPTION=Salt is a remote execution and configuration manager -EAPI=7 -HOMEPAGE=https://www.saltstack.com/resources/community/ https://github.com/saltstack -IUSE=cheetah cherrypy ldap libcloud libvirt genshi gnupg keyring mako mongodb neutron nova openssl portage profile redis selinux test raet +zeromq vim-syntax python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=sys-apps/pciutils dev-python/distro[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/jinja[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/libnacl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/msgpack-0.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] =dev-python/requests-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mako? ( dev-python/mako[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ldap? ( dev-python/python-ldap[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) libvirt? ( python_targets_python3_7? ( dev-python/libvirt-python[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) openssl? ( dev-libs/openssl:0=[-bindist] dev-python/pyopenssl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/ioflo-1.1.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/raet-0.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cheetah? ( dev-python/cheetah3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mongodb? ( dev-python/pymongo[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) portage? ( sys-apps/portage[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) keyring? ( dev-python/keyring[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) redis? ( dev-python/redis-py[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_7? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) neutron? ( python_targets_python3_7? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) profile? ( dev-python/yappi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) 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(-)] -REQUIRED_USE=|| ( raet zeromq ) test? ( cheetah genshi ) || ( python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=!test? ( test ) x86? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/s/salt/salt-3000.2.tar.gz https://dev.gentoo.org/~chutzpah/dist/salt/salt-3000.2-py38-misc.patch.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=24cea62382510289419d6184c48c29c5 diff --git a/metadata/md5-cache/app-admin/salt-3001.2 b/metadata/md5-cache/app-admin/salt-3001.3 similarity index 99% rename from metadata/md5-cache/app-admin/salt-3001.2 rename to metadata/md5-cache/app-admin/salt-3001.3 index 89dc3e97fa82..3943cdb8d6ee 100644 --- a/metadata/md5-cache/app-admin/salt-3001.2 +++ b/metadata/md5-cache/app-admin/salt-3001.3 @@ -10,6 +10,6 @@ RDEPEND=sys-apps/pciutils dev-python/distro[python_targets_python3_7(-)?,python_ REQUIRED_USE=|| ( raet zeromq ) test? ( cheetah genshi ) || ( python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) x86? ( test ) SLOT=0 -SRC_URI=mirror://pypi/s/salt/salt-3001.2.tar.gz +SRC_URI=mirror://pypi/s/salt/salt-3001.3.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7cdf3e5b0453b63e1586ab73e9077110 diff --git a/metadata/md5-cache/app-admin/salt-3002.2 b/metadata/md5-cache/app-admin/salt-3002.2 new file mode 100644 index 000000000000..c20951891a88 --- /dev/null +++ b/metadata/md5-cache/app-admin/salt-3002.2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( sys-apps/pciutils >=dev-python/distro-1.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/jinja[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/libnacl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/msgpack-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pycryptodome-3.9.8[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pycryptodomex[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/markupsafe[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/requests-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/toml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/watchdog[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mako? ( dev-python/mako[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ldap? ( dev-python/python-ldap[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) libvirt? ( python_targets_python3_7? ( dev-python/libvirt-python[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) openssl? ( dev-libs/openssl:0=[-bindist] dev-python/pyopenssl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/ioflo-1.1.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/raet-0.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cheetah? ( dev-python/cheetah3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mongodb? ( dev-python/pymongo[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) portage? ( sys-apps/portage[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) keyring? ( dev-python/keyring[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) redis? ( dev-python/redis-py[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_7? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) neutron? ( python_targets_python3_7? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) profile? ( dev-python/yappi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) >=dev-python/boto-2.32.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/jsonschema-3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/mock-2.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/moto-0.3.6[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pip[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/psutil[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest-helpers-namespace[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pytest-salt-factories-0.93.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pytest-tempdir[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/virtualenv-20.0.20[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !x86? ( >=dev-python/boto3-1.3.15[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ) virtual/pkgconfig 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 postinst prepare test +DESCRIPTION=Salt is a remote execution and configuration manager +EAPI=7 +HOMEPAGE=https://www.saltstack.com/resources/community/ https://github.com/saltstack +IUSE=cheetah cherrypy ldap libcloud libvirt genshi gnupg keyring mako mongodb neutron nova openssl portage profile redis selinux test raet +zeromq vim-syntax python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=sys-apps/pciutils >=dev-python/distro-1.5[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/jinja[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/libnacl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/msgpack-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pycryptodome-3.9.8[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pycryptodomex[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/markupsafe[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/requests-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/toml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/watchdog[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mako? ( dev-python/mako[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ldap? ( dev-python/python-ldap[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) libvirt? ( python_targets_python3_7? ( dev-python/libvirt-python[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) openssl? ( dev-libs/openssl:0=[-bindist] dev-python/pyopenssl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) raet? ( >=dev-python/libnacl-1.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/ioflo-1.1.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/raet-0.6.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cherrypy? ( >=dev-python/cherrypy-3.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) cheetah? ( dev-python/cheetah3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mongodb? ( dev-python/pymongo[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) portage? ( sys-apps/portage[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) keyring? ( dev-python/keyring[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) redis? ( dev-python/redis-py[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) selinux? ( sec-policy/selinux-salt ) nova? ( python_targets_python3_7? ( >=dev-python/python-novaclient-2.17.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) neutron? ( python_targets_python3_7? ( >=dev-python/python-neutronclient-2.3.6[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) ) gnupg? ( dev-python/python-gnupg[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) profile? ( dev-python/yappi[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) vim-syntax? ( app-vim/salt-vim ) zeromq? ( >=dev-python/pyzmq-2.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) 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(-)] +REQUIRED_USE=|| ( raet zeromq ) test? ( cheetah genshi ) || ( python_targets_python3_7 python_targets_python3_8 ) +RESTRICT=!test? ( test ) x86? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/s/salt/salt-3002.2.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=21f9777a8127a1d77bf4d47c46792330 diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index 5599efb44861..ad2af8ae122e 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/torrentzip-0.9-r1 b/metadata/md5-cache/app-arch/torrentzip-0.9-r1 new file mode 100644 index 000000000000..fdab8c727f56 --- /dev/null +++ b/metadata/md5-cache/app-arch/torrentzip-0.9-r1 @@ -0,0 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=prepare +DEPEND=sys-libs/zlib +DESCRIPTION=Create identical zip archives over multiple systems +EAPI=7 +HOMEPAGE=https://sourceforge.net/projects/trrntzip +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=sys-libs/zlib +SLOT=0 +SRC_URI=https://dev.gentoo.org/~monsieurp/packages/torrentzip-0.9.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3f683d9dbb568561a880689b53183362 diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz index 9afc53d7bdcd..d14966f9135b 100644 Binary files a/metadata/md5-cache/app-benchmarks/Manifest.gz and b/metadata/md5-cache/app-benchmarks/Manifest.gz differ diff --git a/metadata/md5-cache/app-benchmarks/wrk-4.1.0-r100 b/metadata/md5-cache/app-benchmarks/wrk-4.1.0-r100 new file mode 100644 index 000000000000..0ecec29fde55 --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/wrk-4.1.0-r100 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install setup +DEPEND=libressl? ( dev-libs/libressl:0= ) !libressl? ( dev-libs/openssl:0= ) lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) +DESCRIPTION=A HTTP benchmarking tool +EAPI=7 +HOMEPAGE=https://www.github.com/wg/wrk +IUSE=libressl lua_single_target_luajit lua_single_target_lua5-1 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 BSD MIT +RDEPEND=libressl? ( dev-libs/libressl:0= ) !libressl? ( dev-libs/openssl:0= ) lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) +REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) +SLOT=0 +SRC_URI=https://www.github.com/wg/wrk/archive/4.1.0.tar.gz -> wrk-4.1.0.tar.gz +_eclasses_=lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6ac100adc2ba9cb0e3a3c722d9c599f9 diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 6c74b89cc8f9..d088d7b9a097 100644 Binary files a/metadata/md5-cache/app-crypt/Manifest.gz and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/mit-krb5-1.18.2-r1 b/metadata/md5-cache/app-crypt/mit-krb5-1.18.3 similarity index 86% rename from metadata/md5-cache/app-crypt/mit-krb5-1.18.2-r1 rename to metadata/md5-cache/app-crypt/mit-krb5-1.18.3 index 50ab28e34bfd..e30b23e4c0bb 100644 --- a/metadata/md5-cache/app-crypt/mit-krb5-1.18.2-r1 +++ b/metadata/md5-cache/app-crypt/mit-krb5-1.18.3 @@ -1,15 +1,15 @@ -BDEPEND=|| ( dev-lang/python:3.8 dev-lang/python:3.7 ) virtual/yacc cpu_flags_x86_aes? ( amd64? ( dev-lang/yasm ) x86? ( dev-lang/yasm ) ) doc? ( virtual/latex-base ) test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 ) dev-lang/tcl:0 dev-util/dejagnu dev-util/cmocka ) >=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 +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) virtual/yacc cpu_flags_x86_aes? ( amd64? ( dev-lang/yasm ) x86? ( dev-lang/yasm ) ) doc? ( virtual/latex-base ) test? ( || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) dev-lang/tcl:0 dev-util/dejagnu dev-util/cmocka ) >=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 setup test DEPEND=!!app-crypt/heimdal >=sys-libs/e2fsprogs-libs-1.42.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] || ( >=dev-libs/libverto-0.2.5[libev,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/libverto-0.2.5[libevent,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/libverto-0.2.5[tevent,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) keyutils? ( >=sys-apps/keyutils-1.5.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lmdb? ( dev-db/lmdb ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openldap? ( >=net-nds/openldap-2.4.38-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(-)?] ) pkinit? ( !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(-)?] ) libressl? ( dev-libs/libressl: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(-)?] ) ) xinetd? ( sys-apps/xinetd ) DESCRIPTION=MIT Kerberos V EAPI=7 HOMEPAGE=https://web.mit.edu/kerberos/www/ IUSE=cpu_flags_x86_aes doc +keyutils libressl lmdb nls openldap +pkinit selinux +threads test xinetd 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 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 || ( BSD-2 GPL-2+ ) RDEPEND=!!app-crypt/heimdal >=sys-libs/e2fsprogs-libs-1.42.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] || ( >=dev-libs/libverto-0.2.5[libev,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/libverto-0.2.5[libevent,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/libverto-0.2.5[tevent,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) keyutils? ( >=sys-apps/keyutils-1.5.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lmdb? ( dev-db/lmdb ) nls? ( sys-devel/gettext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) openldap? ( >=net-nds/openldap-2.4.38-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(-)?] ) pkinit? ( !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(-)?] ) libressl? ( dev-libs/libressl: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(-)?] ) ) xinetd? ( sys-apps/xinetd ) selinux? ( sec-policy/selinux-kerberos ) RESTRICT=test SLOT=0 -SRC_URI=https://web.mit.edu/kerberos/dist/krb5/1.18/krb5-1.18.2.tar.gz +SRC_URI=https://web.mit.edu/kerberos/dist/krb5/1.18/krb5-1.18.3.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=942bcc706e7290ef69903616dee26e43 +_md5_=494f6574bdd4ea051b6f880581f25fe8 diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz index 43b3daf991a2..0ea6950c3324 100644 Binary files a/metadata/md5-cache/app-doc/Manifest.gz and b/metadata/md5-cache/app-doc/Manifest.gz differ diff --git a/metadata/md5-cache/app-doc/geant-docs-4.10.05 b/metadata/md5-cache/app-doc/geant-docs-4.10.05 deleted file mode 100644 index 9c1ce1e29f29..000000000000 --- a/metadata/md5-cache/app-doc/geant-docs-4.10.05 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=User documentation for Geant4 physics simulation toolkit -EAPI=6 -HOMEPAGE=https://geant4.web.cern.ch/support/user_documentation -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -SLOT=4 -SRC_URI=http://cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/fo/Geant4InstallationGuide.pdf -> BookInstalGuide-4.10.05.pdf http://cern.ch/geant4-userdoc/UsersGuides/ForApplicationDeveloper/fo/BookForApplicationDevelopers.pdf -> BookForAppliDev-4.10.05.pdf http://cern.ch/geant4-userdoc/UsersGuides/ForToolkitDeveloper/fo/BookForToolkitDevelopers.pdf -> BookForToolDev-4.10.05.pdf http://cern.ch/geant4-userdoc/UsersGuides/PhysicsReferenceManual/fo/PhysicsReferenceManual.pdf -> PhysicsReferenceManual-4.10.05.pdf -_md5_=c7c660adaf64fd7805cba4f42827587e diff --git a/metadata/md5-cache/app-doc/geant-docs-4.10.5_p2 b/metadata/md5-cache/app-doc/geant-docs-4.10.5_p2 deleted file mode 100644 index b86a10c1a8b6..000000000000 --- a/metadata/md5-cache/app-doc/geant-docs-4.10.5_p2 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=User documentation for Geant4 physics simulation toolkit -EAPI=7 -HOMEPAGE=https://geant4.web.cern.ch/support/user_documentation -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -SLOT=4 -SRC_URI=https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/FAQ/BackupVersions/V10.5-2.0/fo/BookFAQ.pdf -> BookFAQ-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForApplicationDeveloper/BackupVersions/V10.5-2.0/fo/BookForApplicationDevelopers.pdf -> BookForApplicationDevelopers-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForToolkitDeveloper/BackupVersions/V10.5-2.0/fo/BookForToolkitDevelopers.pdf -> BookForToolkitDevelopers-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/BackupVersions/V10.5-2.0/fo/Geant4InstallationGuide.pdf -> Geant4InstallationGuide-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/IntroductionToGeant4/BackupVersions/V10.5-2.0/fo/IntroductionToGeant4.pdf -> IntroductionToGeant4-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsListGuide/BackupVersions/V10.5-2.0/fo/PhysicsListGuide.pdf -> PhysicsListGuide-4.10.5_p2.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsReferenceManual/BackupVersions/V10.5-2.0/fo/PhysicsReferenceManual.pdf -> PhysicsReferenceManual-4.10.5_p2.pdf -_md5_=158c37cf8df7f22eaa76ff2b67f44b9b diff --git a/metadata/md5-cache/app-doc/geant-docs-4.10.6 b/metadata/md5-cache/app-doc/geant-docs-4.10.6 index 2f964f64aee7..ffe18bbb92fc 100644 --- a/metadata/md5-cache/app-doc/geant-docs-4.10.6 +++ b/metadata/md5-cache/app-doc/geant-docs-4.10.6 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=User documentation for Geant4 physics simulation toolkit EAPI=7 HOMEPAGE=https://geant4.web.cern.ch/support/user_documentation -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=geant4 SLOT=4 SRC_URI=https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/FAQ/BackupVersions/V10.6/fo/BookFAQ.pdf -> BookFAQ-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForApplicationDeveloper/BackupVersions/V10.6/fo/BookForApplicationDevelopers.pdf -> BookForApplicationDevelopers-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForToolkitDeveloper/BackupVersions/V10.6/fo/BookForToolkitDevelopers.pdf -> BookForToolkitDevelopers-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/BackupVersions/V10.6/fo/Geant4InstallationGuide.pdf -> Geant4InstallationGuide-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/IntroductionToGeant4/BackupVersions/V10.6/fo/IntroductionToGeant4.pdf -> IntroductionToGeant4-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsListGuide/BackupVersions/V10.6/fo/PhysicsListGuide.pdf -> PhysicsListGuide-4.10.6.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsReferenceManual/BackupVersions/V10.6/fo/PhysicsReferenceManual.pdf -> PhysicsReferenceManual-4.10.6.pdf -_md5_=059f5dbfe93f2dc6498d2051c5d04e38 +_md5_=37a6ee60957b70e0e3df16ac9b78c07a diff --git a/metadata/md5-cache/app-doc/geant-docs-4.10.6c b/metadata/md5-cache/app-doc/geant-docs-4.10.6c new file mode 100644 index 000000000000..9a044b5fe1c3 --- /dev/null +++ b/metadata/md5-cache/app-doc/geant-docs-4.10.6c @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=User documentation for Geant4 physics simulation toolkit +EAPI=7 +HOMEPAGE=https://geant4.web.cern.ch/support/user_documentation +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux +LICENSE=geant4 +SLOT=4 +SRC_URI=https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/FAQ/BackupVersions/V10.6/fo/BookFAQ.pdf -> BookFAQ-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForApplicationDeveloper/BackupVersions/V10.6/fo/BookForApplicationDevelopers.pdf -> BookForApplicationDevelopers-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/ForToolkitDeveloper/BackupVersions/V10.6/fo/BookForToolkitDevelopers.pdf -> BookForToolkitDevelopers-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/InstallationGuide/BackupVersions/V10.6/fo/Geant4InstallationGuide.pdf -> Geant4InstallationGuide-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/IntroductionToGeant4/BackupVersions/V10.6/fo/IntroductionToGeant4.pdf -> IntroductionToGeant4-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsListGuide/BackupVersions/V10.6/fo/PhysicsListGuide.pdf -> PhysicsListGuide-4.10.6c.pdf https://geant4-userdoc.web.cern.ch/geant4-userdoc/UsersGuides/PhysicsReferenceManual/BackupVersions/V10.6/fo/PhysicsReferenceManual.pdf -> PhysicsReferenceManual-4.10.6c.pdf +_md5_=37a6ee60957b70e0e3df16ac9b78c07a diff --git a/metadata/md5-cache/app-doc/kicad-doc-5.1.8 b/metadata/md5-cache/app-doc/kicad-doc-5.1.8 new file mode 100644 index 000000000000..a84c225ce817 --- /dev/null +++ b/metadata/md5-cache/app-doc/kicad-doc-5.1.8 @@ -0,0 +1,13 @@ +BDEPEND=>=app-text/asciidoc-8.6.9 >=app-text/dblatex-0.3.10 >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-perl/Unicode-LineBreak dev-util/source-highlight l10n_ca? ( dev-texlive/texlive-langspanish ) l10n_de? ( dev-texlive/texlive-langgerman ) l10n_en? ( dev-texlive/texlive-langenglish ) l10n_es? ( dev-texlive/texlive-langspanish ) l10n_fr? ( dev-texlive/texlive-langfrench ) l10n_it? ( dev-texlive/texlive-langitalian ) l10n_ja? ( dev-texlive/texlive-langjapanese media-fonts/vlgothic ) l10n_pl? ( dev-texlive/texlive-langpolish ) l10n_ru? ( dev-texlive/texlive-langcyrillic ) l10n_zh? ( dev-texlive/texlive-langchinese ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Electronic Schematic and PCB design tools manuals +EAPI=7 +HOMEPAGE=https://docs.kicad.org/ +IUSE=html +pdf l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja l10n_pl l10n_ru l10n_zh +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 +REQUIRED_USE=|| ( html pdf ) ^^ ( l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja l10n_pl l10n_ru l10n_zh ) +SLOT=0 +SRC_URI=https://gitlab.com/kicad/services/kicad-doc/-/archive/5.1.8/kicad-doc-5.1.8.tar.bz2 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=3698dadab8b8fc2a6a25a9d742d564f9 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 21d824f88ffd..04540ea4807d 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/xen-tools-4.14.0-r3 b/metadata/md5-cache/app-emulation/xen-tools-4.14.0-r4 similarity index 68% rename from metadata/md5-cache/app-emulation/xen-tools-4.14.0-r3 rename to metadata/md5-cache/app-emulation/xen-tools-4.14.0-r4 index c92b6ef38103..d8607f39916a 100644 --- a/metadata/md5-cache/app-emulation/xen-tools-4.14.0-r3 +++ b/metadata/md5-cache/app-emulation/xen-tools-4.14.0-r4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_6? ( dev-lang/python:3.6[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=sys-kernel/linux-headers-4.11 python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] pam? ( dev-python/pypam[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] pam? ( dev-python/pypam[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) dev-lang/perl app-misc/pax-utils doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_6? ( dev-python/markdown[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/markdown[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= x11-libs/pixman sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib >=dev-lang/ocaml-4 ) python? ( >=dev-lang/swig-4.0.0 ) +DEPEND=sys-apps/pciutils dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib python_single_target_python3_6? ( dev-lang/python:3.6[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[ncurses,xml,threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-misc/pax-utils dev-lang/perl >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] pam? ( dev-python/pypam[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] pam? ( dev-python/pypam[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] pam? ( dev-python/pypam[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] pam? ( dev-python/pypam[python_targets_python3_9(-)] ) ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( sys-firmware/seabios ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_6? ( dev-python/markdown[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/markdown[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/markdown[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib >=dev-lang/ocaml-4 ) python? ( >=dev-lang/swig-4.0.0 ) DESCRIPTION=Xen tools including QEMU and xl EAPI=7 HOMEPAGE=https://www.xenproject.org @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0/4.14 SRC_URI=https://downloads.xenproject.org/release/xen/4.14.0/xen-4.14.0.tar.gz https://github.com/qemu/seabios/archive/rel-1.13.0.tar.gz -> seabios-1.13.0.tar.gz ipxe? ( http://xenbits.xen.org/xen-extfiles/ipxe-git-1dd56dbd11082fb622c2ed21cfaced4f47d798a6.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/06dc822d045c2bb42e497487935485302486e151.tar.gz -> edk2-06dc822d045c2bb42e497487935485302486e151.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1g.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.14.0-upstream-patches-4.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-4.14.0-upstream-patches-4.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-security-patches-28.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-security-patches-28.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-22.tar.xz https://github.com/hydrapolic/gentoo-dist/raw/master/xen/xen-gentoo-patches-22.tar.xz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8e07b3a20979093f1296b3739d65a67e +_md5_=897a8ab28f7e5384e78033645e7219ea diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 46a59c4a1368..bd94dff93542 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.3-r3 b/metadata/md5-cache/app-misc/OpenRGB-0.3-r3 deleted file mode 100644 index 6c93188050d5..000000000000 --- a/metadata/md5-cache/app-misc/OpenRGB-0.3-r3 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig 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 -DESCRIPTION=Open source RGB lighting control that doesn't depend on manufacturer software -EAPI=7 -HOMEPAGE=https://gitlab.com/CalcProgrammer1/OpenRGB/ -IUSE=udev -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.3/OpenRGB-release_0.3.tar.bz2 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=c67af8c6452da3869403196d8168ee60 diff --git a/metadata/md5-cache/app-misc/OpenRGB-9999 b/metadata/md5-cache/app-misc/OpenRGB-9999 index 624aaa6c4099..09ce747fbee3 100644 --- a/metadata/md5-cache/app-misc/OpenRGB-9999 +++ b/metadata/md5-cache/app-misc/OpenRGB-9999 @@ -1,13 +1,13 @@ BDEPEND=virtual/pkgconfig 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 +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 +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 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=bae2c65fda2cf571f563485d7ab892b0 +_md5_=cc4a66f62c218d92db9361ffccd21622 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 6ad8d8935bb9..d43814c1f96d 100644 --- a/metadata/md5-cache/app-misc/lirc-0.10.1-r4 +++ b/metadata/md5-cache/app-misc/lirc-0.10.1-r4 @@ -1,15 +1,15 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=configure install postinst preinst setup -DEPEND=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] ) 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(-)] ) ftdi? ( dev-embedded/libftdi:0 ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 ) dev-libs/libxslt python_single_target_python3_6? ( dev-python/setuptools[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/setuptools[python_targets_python3_7(-)] ) doc? ( app-doc/doxygen ) sys-apps/kmod sys-kernel/linux-headers +DEPEND=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 ) dev-libs/libxslt python_single_target_python3_6? ( dev-python/setuptools[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/setuptools[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/setuptools[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/setuptools[python_targets_python3_9(-)] ) doc? ( app-doc/doxygen ) sys-apps/kmod sys-kernel/linux-headers DESCRIPTION=decode and send infra-red signals of many commonly used remote controls 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 +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 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] ) 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(-)] ) 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(-)] ) ) inputlirc? ( app-misc/inputlircd ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 ) gtk? ( X ) +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 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=37205728baf211686ffc976da93617dd +_md5_=11718fdf245548a6b4d5c23cf7011637 diff --git a/metadata/md5-cache/app-misc/livecd-tools-2.6 b/metadata/md5-cache/app-misc/livecd-tools-2.6 deleted file mode 100644 index 75a716e98604..000000000000 --- a/metadata/md5-cache/app-misc/livecd-tools-2.6 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install setup -DESCRIPTION=Gentoo LiveCD tools for autoconfiguration of hardware -EAPI=6 -HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage -KEYWORDS=~alpha amd64 hppa ~ia64 ~mips ppc ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=dev-util/dialog net-dialup/mingetty >=sys-apps/baselayout-2 >=sys-apps/openrc-0.8.2-r1 sys-apps/pciutils sys-apps/gawk sys-apps/sed -SLOT=0 -SRC_URI=https://gitweb.gentoo.org/proj/livecd-tools.git/snapshot/livecd-tools-2.6.tar.bz2 -_md5_=2cf91ce7c9eac01bf84fa126bcf4d5e2 diff --git a/metadata/md5-cache/app-misc/nnn-3.5 b/metadata/md5-cache/app-misc/nnn-3.5 new file mode 100644 index 000000000000..d755755db7ba --- /dev/null +++ b/metadata/md5-cache/app-misc/nnn-3.5 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare +DEPEND=sys-libs/ncurses:0= sys-libs/readline:0= +DESCRIPTION=The missing terminal file browser for X +EAPI=7 +HOMEPAGE=https://github.com/jarun/nnn +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=BSD-2 +RDEPEND=sys-libs/ncurses:0= sys-libs/readline:0= +SLOT=0 +SRC_URI=https://github.com/jarun/nnn/archive/v3.5.tar.gz -> nnn-3.5.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4d7dcf6468a65837f757c8c321780b82 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index 5454317ad7f4..6995379f2c1e 100644 Binary files a/metadata/md5-cache/app-office/Manifest.gz and b/metadata/md5-cache/app-office/Manifest.gz differ diff --git a/metadata/md5-cache/app-office/ledger-3.2.1 b/metadata/md5-cache/app-office/ledger-3.2.1 new file mode 100644 index 000000000000..08616dd972bd --- /dev/null +++ b/metadata/md5-cache/app-office/ledger-3.2.1 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst prepare pretend setup test +DEPEND=dev-libs/boost:=[python?] dev-libs/gmp:0= dev-libs/mpfr:0= python? ( python_single_target_python3_6? ( dev-libs/boost:=[python_targets_python3_6(-)] dev-python/cheetah3:=[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-libs/boost:=[python_targets_python3_7(-)] dev-python/cheetah3:=[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-libs/boost:=[python_targets_python3_8(-)] dev-python/cheetah3:=[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-libs/boost:=[python_targets_python3_9(-)] dev-python/cheetah3:=[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] ) ) dev-libs/utfcpp doc? ( dev-texlive/texlive-fontsrecommended sys-apps/texinfo virtual/texi2dvi ) +DESCRIPTION=Double-entry accounting system with a command-line reporting interface +EAPI=7 +HOMEPAGE=https://www.ledger-cli.org/ +IUSE=debug doc python python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-libs/boost:=[python?] dev-libs/gmp:0= dev-libs/mpfr:0= python? ( python_single_target_python3_6? ( dev-libs/boost:=[python_targets_python3_6(-)] dev-python/cheetah3:=[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-libs/boost:=[python_targets_python3_7(-)] dev-python/cheetah3:=[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-libs/boost:=[python_targets_python3_8(-)] dev-python/cheetah3:=[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-libs/boost:=[python_targets_python3_9(-)] dev-python/cheetah3:=[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? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/ledger/ledger/archive/v3.2.1.tar.gz -> ledger-3.2.1.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=268426f6600146e8e848e0f6d39097d9 diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 257ba2c249b6..b9dcb7d7c4ae 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/eix-0.34.4 b/metadata/md5-cache/app-portage/eix-0.34.4 deleted file mode 100644 index 6e5c85e7a620..000000000000 --- a/metadata/md5-cache/app-portage/eix-0.34.4 +++ /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 -DEFINED_PHASES=configure install postinst postrm prepare setup -DEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) app-arch/xz-utils nls? ( sys-devel/gettext ) -DESCRIPTION=Search and query ebuilds -EAPI=7 -HOMEPAGE=https://github.com/vaeth/eix/ -IUSE=debug doc nls sqlite -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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) >=app-shells/push-2.0-r1 >=app-shells/quoter-3.0_p2-r1 virtual/tmpfiles -SLOT=0 -SRC_URI=https://github.com/vaeth/eix/releases/download/v0.34.4/eix-0.34.4.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3708b3063e4ba6d3f8d104d1d8073bba diff --git a/metadata/md5-cache/app-portage/euses-2.6.0 b/metadata/md5-cache/app-portage/euses-2.6.0 index fe886351b1df..4769a2466c4f 100644 --- a/metadata/md5-cache/app-portage/euses-2.6.0 +++ b/metadata/md5-cache/app-portage/euses-2.6.0 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=look up USE flag descriptions fast EAPI=7 HOMEPAGE=https://www.xs4all.nl/~rooversj/gentoo -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://www.xs4all.nl/~rooversj/gentoo/euses-2.6.0.tar.bz2 -_md5_=3ae18ff96e94a09f680af2fec535d979 +_md5_=77cde8e674aedae5f25d7dd510d4131b diff --git a/metadata/md5-cache/app-portage/gpyutils-0.4.3 b/metadata/md5-cache/app-portage/gpyutils-0.4.3 deleted file mode 100644 index 7be99bfbca46..000000000000 --- a/metadata/md5-cache/app-portage/gpyutils-0.4.3 +++ /dev/null @@ -1,14 +0,0 @@ -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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Utitilies for maintaining Python packages -EAPI=7 -HOMEPAGE=https://github.com/mgorny/gpyutils/ -IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=>=app-portage/gentoopm-0.3.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 ) -SLOT=0 -SRC_URI=https://github.com/mgorny/gpyutils/archive/v0.4.3.tar.gz -> gpyutils-0.4.3.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f16379fac493b05fa6e75c59367a2af0 diff --git a/metadata/md5-cache/app-portage/gpyutils-0.4.5 b/metadata/md5-cache/app-portage/gpyutils-0.4.5 index 8ab462c792ab..db0818c94232 100644 --- a/metadata/md5-cache/app-portage/gpyutils-0.4.5 +++ b/metadata/md5-cache/app-portage/gpyutils-0.4.5 @@ -4,11 +4,11 @@ DESCRIPTION=Utitilies for maintaining Python packages EAPI=7 HOMEPAGE=https://github.com/mgorny/gpyutils/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=>=app-portage/gentoopm-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(-)] 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/mgorny/gpyutils/archive/v0.4.5.tar.gz -> gpyutils-0.4.5.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c27a30813e079a1e59159f725706460a +_md5_=071adf92b6c67422c7b22a938238c6e1 diff --git a/metadata/md5-cache/app-portage/pfl-3.1 b/metadata/md5-cache/app-portage/pfl-3.1 deleted file mode 100644 index d08a88a34c4f..000000000000 --- a/metadata/md5-cache/app-portage/pfl-3.1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[xml] ) python_targets_python3_7? ( dev-lang/python:3.7[xml] ) python_targets_python3_8? ( dev-lang/python:3.8[xml] ) >=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(-)] virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=Searchable online file/package database for Gentoo -EAPI=7 -HOMEPAGE=http://www.portagefilelist.de https://github.com/portagefilelist/client -IUSE=+network-cron python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos -LICENSE=GPL-2 -RDEPEND=dev-python/requests[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(-)] net-misc/curl sys-apps/portage[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(-)] network-cron? ( sys-apps/util-linux[caps] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) python_targets_python3_7? ( dev-lang/python:3.7[xml] ) python_targets_python3_8? ( dev-lang/python:3.8[xml] ) >=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/portagefilelist/client/archive/3.1.tar.gz -> pfl-3.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=bea7952b0c44205d23282f975a4984c7 diff --git a/metadata/md5-cache/app-portage/pfl-3.1-r1 b/metadata/md5-cache/app-portage/pfl-3.1-r1 index fa9194d77ea8..84b14b81076b 100644 --- a/metadata/md5-cache/app-portage/pfl-3.1-r1 +++ b/metadata/md5-cache/app-portage/pfl-3.1-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Searchable online file/package database for Gentoo EAPI=7 HOMEPAGE=http://www.portagefilelist.de https://github.com/portagefilelist/client IUSE=+network-cron python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=amd64 arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=GPL-2 RDEPEND=dev-python/requests[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(-)] net-misc/curl sys-apps/portage[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(-)] network-cron? ( sys-apps/util-linux[caps] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) python_targets_python3_7? ( dev-lang/python:3.7[xml] ) python_targets_python3_8? ( dev-lang/python:3.8[xml] ) python_targets_python3_9? ( dev-lang/python:3.9[xml] ) >=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/portagefilelist/client/archive/3.1.tar.gz -> pfl-3.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=91e89b7b80c194b93b1c219918185960 +_md5_=984f2fbc14a6f2635a9020114d5f0713 diff --git a/metadata/md5-cache/app-portage/portage-utils-0.90.1 b/metadata/md5-cache/app-portage/portage-utils-0.90.1 index dd9c192369ab..79f55a5c8bb9 100644 --- a/metadata/md5-cache/app-portage/portage-utils-0.90.1 +++ b/metadata/md5-cache/app-portage/portage-utils-0.90.1 @@ -4,9 +4,9 @@ DESCRIPTION=Small and fast Portage helper tools written in C EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/Portage-utils IUSE=nls static openmp +qmanifest +qtegrity libressl -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 +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=GPL-2 RDEPEND=qmanifest? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( app-crypt/libb2:=[static-libs] !libressl? ( dev-libs/openssl:0=[static-libs] ) libressl? ( dev-libs/libressl:0=[static-libs] ) sys-libs/zlib:=[static-libs] app-crypt/gpgme:=[static-libs] ) !static? ( app-crypt/libb2:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-libs/zlib:= app-crypt/gpgme:= ) ) qtegrity? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( !libressl? ( dev-libs/openssl:0=[static-libs] ) libressl? ( dev-libs/libressl:0=[static-libs] ) ) !static? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) ) SLOT=0 SRC_URI=https://dev.gentoo.org/~grobian/distfiles/portage-utils-0.90.1.tar.xz -_md5_=1c649d49f6172e7c05cd09faf60ddff0 +_md5_=2494de8420b8d67077166c30c862de35 diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index 70e74ef7b9e2..260db11780a8 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/bash-5.1_rc2 b/metadata/md5-cache/app-shells/bash-5.1_rc3 similarity index 80% rename from metadata/md5-cache/app-shells/bash-5.1_rc2 rename to metadata/md5-cache/app-shells/bash-5.1_rc3 index fe75862a2c39..47de6f8fecdf 100644 --- a/metadata/md5-cache/app-shells/bash-5.1_rc2 +++ b/metadata/md5-cache/app-shells/bash-5.1_rc3 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=>=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) readline? ( >=sys-libs/readline-8.1_rc2:0= ) +DEPEND=>=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) readline? ( >=sys-libs/readline-8.1_rc3:0= ) DESCRIPTION=The standard GNU Bourne again shell EAPI=7 HOMEPAGE=http://tiswww.case.edu/php/chet/bash/bashtop.html IUSE=afs bashlogger examples mem-scramble +net nls plugins +readline LICENSE=GPL-3 -RDEPEND=>=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) readline? ( >=sys-libs/readline-8.1_rc2:0= ) +RDEPEND=>=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) readline? ( >=sys-libs/readline-8.1_rc3:0= ) SLOT=0 -SRC_URI=ftp://ftp.cwru.edu/pub/bash/bash-5.1-rc2.tar.gz +SRC_URI=ftp://ftp.cwru.edu/pub/bash/bash-5.1-rc3.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=548fe10ce10509494be404935aaa844d +_md5_=0f2542494f02d5c806272f71d5135d7c diff --git a/metadata/md5-cache/app-shells/yash-2.50 b/metadata/md5-cache/app-shells/yash-2.50 index 94a247ed60e1..44365f43a040 100644 --- a/metadata/md5-cache/app-shells/yash-2.50 +++ b/metadata/md5-cache/app-shells/yash-2.50 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge.jp/yash/73097/yash-2.50.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=9f017059e5202caa7dff6c8bcde2b6d0 +_md5_=80674b659f04621aabfe865832bf501c diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index f996c8bbe866..fcff9f933192 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 066c82bc1d3f..4322261bfe61 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 x86 +KEYWORDS=amd64 ~arm ~arm64 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 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e68e9dc71f380d698c27d7bdceef9938 +_md5_=9c3e7e303f9831e0e12e6dcaec51656e diff --git a/metadata/md5-cache/app-text/nuspell-4.1.0 b/metadata/md5-cache/app-text/nuspell-4.1.0 new file mode 100644 index 000000000000..e9760f98a722 --- /dev/null +++ b/metadata/md5-cache/app-text/nuspell-4.1.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-libs/icu doc? ( app-text/pandoc ) test? ( >=dev-cpp/catch-2.3.0:0 ) >=dev-libs/boost-1.62[icu,nls] +DESCRIPTION=Spell checker library and CLI for complex natural languages +EAPI=7 +HOMEPAGE=https://nuspell.github.io/ https://github.com/nuspell/nuspell +IUSE=doc test +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3+ +RDEPEND=dev-libs/icu +RESTRICT=!test? ( test ) +SLOT=0/4 +SRC_URI=https://github.com/nuspell/nuspell/archive/v4.1.0.tar.gz -> nuspell-4.1.0.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=6e6f50fc524038ca24d8e66a27fa2f14 diff --git a/metadata/md5-cache/app-vim/Manifest.gz b/metadata/md5-cache/app-vim/Manifest.gz index 2e55d6306657..02400ca262fd 100644 Binary files a/metadata/md5-cache/app-vim/Manifest.gz and b/metadata/md5-cache/app-vim/Manifest.gz differ diff --git a/metadata/md5-cache/app-vim/omnicppcomplete-0.41 b/metadata/md5-cache/app-vim/omnicppcomplete-0.41 index 04904a92279a..98fefdce2758 100644 --- a/metadata/md5-cache/app-vim/omnicppcomplete-0.41 +++ b/metadata/md5-cache/app-vim/omnicppcomplete-0.41 @@ -3,10 +3,10 @@ DEPEND=app-arch/unzip || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) DESCRIPTION=vim plugin: C/C++ omni-completion with ctags database EAPI=6 HOMEPAGE=https://www.vim.org/scripts/script.php?script_id=1520 -KEYWORDS=amd64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 ppc ppc64 x86 LICENSE=vim.org RDEPEND=>=dev-util/ctags-5.7 || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) SLOT=0 SRC_URI=https://www.vim.org/scripts/download_script.php?src_id=7722 -> omnicppcomplete-0.41.zip _eclasses_=estack 686eaab303305a908fd57b2fd7617800 vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 3160d9cb05ef44497be1485db0fe7590 -_md5_=758238e581a1c3fd98bfbd422c878a59 +_md5_=eb5325b68a5ae8037270e79ee4959cbe diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index 570441364796..2d6c9fe360b5 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/catch-2.13.3 b/metadata/md5-cache/dev-cpp/catch-2.13.3 new file mode 100644 index 000000000000..5bb91335f58a --- /dev/null +++ b/metadata/md5-cache/dev-cpp/catch-2.13.3 @@ -0,0 +1,13 @@ +BDEPEND=test? ( || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare setup test +DESCRIPTION=Modern C++ header-only framework for unit-tests +EAPI=7 +HOMEPAGE=https://github.com/catchorg/Catch2 +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=Boost-1.0 +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/catchorg/Catch2/archive/v2.13.3.tar.gz -> Catch2-2.13.3.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e6ff500a3df89aa54f365fdd52811ad8 diff --git a/metadata/md5-cache/dev-cpp/catch-2.7.0 b/metadata/md5-cache/dev-cpp/catch-2.7.0 deleted file mode 100644 index 912a32ffc872..000000000000 --- a/metadata/md5-cache/dev-cpp/catch-2.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=test? ( || ( dev-lang/python:3.7 dev-lang/python:3.6 ) ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare setup test -DESCRIPTION=Modern C++ header-only framework for unit-tests -EAPI=7 -HOMEPAGE=https://github.com/catchorg/Catch2 -IUSE=test -KEYWORDS=~amd64 ~x86 -LICENSE=Boost-1.0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/catchorg/Catch2/archive/v2.7.0.tar.gz -> Catch2-2.7.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2a9fef618942ea755be052197b369874 diff --git a/metadata/md5-cache/dev-cpp/catch-2.9.1 b/metadata/md5-cache/dev-cpp/catch-2.9.1 deleted file mode 100644 index 026b769ea334..000000000000 --- a/metadata/md5-cache/dev-cpp/catch-2.9.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=test? ( || ( dev-lang/python:3.7 dev-lang/python:3.6 ) ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare setup test -DESCRIPTION=Modern C++ header-only framework for unit-tests -EAPI=7 -HOMEPAGE=https://github.com/catchorg/Catch2 -IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 -LICENSE=Boost-1.0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/catchorg/Catch2/archive/v2.9.1.tar.gz -> Catch2-2.9.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=006757fd2b5299c6e746440b1387682c diff --git a/metadata/md5-cache/dev-cpp/catch-9999 b/metadata/md5-cache/dev-cpp/catch-9999 index f26545db9ae8..b4e691456e69 100644 --- a/metadata/md5-cache/dev-cpp/catch-9999 +++ b/metadata/md5-cache/dev-cpp/catch-9999 @@ -1,4 +1,4 @@ -BDEPEND=test? ( || ( dev-lang/python:3.7 dev-lang/python:3.6 ) ) dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=test? ( || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) ) dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare setup test unpack DESCRIPTION=Modern C++ header-only framework for unit-tests EAPI=7 @@ -8,5 +8,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=56ee55fd45be2f084b2d21cb3d758079 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=038515d1188dca3a7184b782b7300faf diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index 423f34048ac6..ce3e201cf4e4 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/phpmyadmin-4.9.5 b/metadata/md5-cache/dev-db/phpmyadmin-4.9.5 deleted file mode 100644 index d288ee0b98d1..000000000000 --- a/metadata/md5-cache/dev-db/phpmyadmin-4.9.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Web-based administration for MySQL database in PHP -EAPI=7 -HOMEPAGE=https://www.phpmyadmin.net/ -IUSE=setup vhosts -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos -LICENSE=GPL-2 -RDEPEND=dev-lang/php[ctype,filter,json(+),session,unicode] || ( dev-lang/php[mysqli] dev-lang/php[mysql] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 -SLOT=4.9.5 -SRC_URI=https://files.phpmyadmin.net/phpMyAdmin/4.9.5/phpMyAdmin-4.9.5-all-languages.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e webapp 16783e418aca3ffa461d68310bf7ab12 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2259b74516c0d0354252ad3359d3d35d diff --git a/metadata/md5-cache/dev-db/phpmyadmin-4.9.6 b/metadata/md5-cache/dev-db/phpmyadmin-4.9.6 index b089c24f226d..23c9f19ecec7 100644 --- a/metadata/md5-cache/dev-db/phpmyadmin-4.9.6 +++ b/metadata/md5-cache/dev-db/phpmyadmin-4.9.6 @@ -4,10 +4,10 @@ DESCRIPTION=Web-based administration for MySQL database in PHP EAPI=7 HOMEPAGE=https://www.phpmyadmin.net/ IUSE=setup vhosts -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86 ~ppc-macos ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=dev-lang/php[ctype,filter,json(+),session,unicode] || ( dev-lang/php[mysqli] dev-lang/php[mysql] ) virtual/httpd-php:* >=app-admin/webapp-config-1.50.15 SLOT=4.9.6 SRC_URI=https://files.phpmyadmin.net/phpMyAdmin/4.9.6/phpMyAdmin-4.9.6-all-languages.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e webapp 16783e418aca3ffa461d68310bf7ab12 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b09b245a1825af20e600a4be7c02664b +_md5_=2259b74516c0d0354252ad3359d3d35d diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz index 49894f186b8b..fd5289bca24d 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/stlink-1.6.0 b/metadata/md5-cache/dev-embedded/stlink-1.6.0 index 82fae5378a09..2e3b3f2cb4df 100644 --- a/metadata/md5-cache/dev-embedded/stlink-1.6.0 +++ b/metadata/md5-cache/dev-embedded/stlink-1.6.0 @@ -1,6 +1,6 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 virtual/pkgconfig +BDEPEND=virtual/pkgconfig virtual/pkgconfig dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=stm32 discovery line linux programmer EAPI=7 HOMEPAGE=https://github.com/texane/stlink @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 SLOT=0 SRC_URI=https://github.com/texane/stlink/archive/v1.6.0.tar.gz -> stlink-1.6.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9ecfb910bcb597e4d0cb7e4759a017c6 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=d000dd7db808407b635e54a1f16af1f2 diff --git a/metadata/md5-cache/dev-embedded/stlink-9999 b/metadata/md5-cache/dev-embedded/stlink-9999 index 862127908b95..d8e4d31d3708 100644 --- a/metadata/md5-cache/dev-embedded/stlink-9999 +++ b/metadata/md5-cache/dev-embedded/stlink-9999 @@ -1,11 +1,12 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=virtual/pkgconfig virtual/pkgconfig dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack +DEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=stm32 discovery line linux programmer -EAPI=6 +EAPI=7 HOMEPAGE=https://github.com/texane/stlink LICENSE=BSD PROPERTIES=live RDEPEND=virtual/libusb:1 >=dev-libs/glib-2.32.0:2 x11-libs/gtk+:3 SLOT=0 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=18eec9f8ed5a90d8681372962fdf52e2 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=d000dd7db808407b635e54a1f16af1f2 diff --git a/metadata/md5-cache/dev-haskell/Manifest.gz b/metadata/md5-cache/dev-haskell/Manifest.gz index 4041cd03c98f..a6ed96592281 100644 Binary files a/metadata/md5-cache/dev-haskell/Manifest.gz and b/metadata/md5-cache/dev-haskell/Manifest.gz differ diff --git a/metadata/md5-cache/dev-haskell/yesod-core-1.6.18.5 b/metadata/md5-cache/dev-haskell/yesod-core-1.6.18.7 similarity index 95% rename from metadata/md5-cache/dev-haskell/yesod-core-1.6.18.5 rename to metadata/md5-cache/dev-haskell/yesod-core-1.6.18.7 index 0815672ca3dc..d60654250648 100644 --- a/metadata/md5-cache/dev-haskell/yesod-core-1.6.18.5 +++ b/metadata/md5-cache/dev-haskell/yesod-core-1.6.18.7 @@ -2,13 +2,13 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND=>=dev-haskell/aeson-1.0:=[profile?] dev-haskell/auto-update:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.7.1:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] >=dev-haskell/cereal-0.3:=[profile?] >=dev-haskell/clientsession-0.9.1:=[profile?] =dev-haskell/conduit-1.3:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cookie-0.4.3:=[profile?] =dev-haskell/fast-logger-2.2:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] dev-haskell/memory:=[profile?] >=dev-haskell/monad-logger-0.3.10:=[profile?] =dev-haskell/parsec-2:=[profile?] =dev-haskell/path-pieces-0.1.2:=[profile?] =dev-haskell/primitive-0.6:=[profile?] >=dev-haskell/random-1.0.0.2:=[profile?] =dev-haskell/resourcet-1.2:=[profile?] >=dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.7:=[profile?] dev-haskell/unix-compat:=[profile?] dev-haskell/unliftio:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/vector-0.9:=[profile?] =dev-haskell/wai-3.2:=[profile?] >=dev-haskell/wai-extra-3.0.7:=[profile?] >=dev-haskell/wai-logger-0.2:=[profile?] >=dev-haskell/warp-3.0.2:=[profile?] dev-haskell/word8:=[profile?] >=dev-lang/ghc-8.2.1:= >=dev-haskell/cabal-2.0.0.2 test? ( dev-haskell/async >=dev-haskell/hspec-1.3 dev-haskell/hspec-expectations dev-haskell/hunit dev-haskell/network dev-haskell/streaming-commons ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) DESCRIPTION=Creation of type-safe, RESTful web applications EAPI=7 -HOMEPAGE=http://www.yesodweb.com/ +HOMEPAGE=https://www.yesodweb.com/ IUSE=doc hscolour profile test KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=>=dev-haskell/aeson-1.0:=[profile?] dev-haskell/auto-update:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.7.1:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] >=dev-haskell/cereal-0.3:=[profile?] >=dev-haskell/clientsession-0.9.1:=[profile?] =dev-haskell/conduit-1.3:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cookie-0.4.3:=[profile?] =dev-haskell/fast-logger-2.2:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] dev-haskell/memory:=[profile?] >=dev-haskell/monad-logger-0.3.10:=[profile?] =dev-haskell/parsec-2:=[profile?] =dev-haskell/path-pieces-0.1.2:=[profile?] =dev-haskell/primitive-0.6:=[profile?] >=dev-haskell/random-1.0.0.2:=[profile?] =dev-haskell/resourcet-1.2:=[profile?] >=dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.7:=[profile?] dev-haskell/unix-compat:=[profile?] dev-haskell/unliftio:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/vector-0.9:=[profile?] =dev-haskell/wai-3.2:=[profile?] >=dev-haskell/wai-extra-3.0.7:=[profile?] >=dev-haskell/wai-logger-0.2:=[profile?] >=dev-haskell/warp-3.0.2:=[profile?] dev-haskell/word8:=[profile?] >=dev-lang/ghc-8.2.1:= RESTRICT=test -SLOT=0/1.6.18.5 -SRC_URI=https://hackage.haskell.org/package/yesod-core-1.6.18.5/yesod-core-1.6.18.5.tar.gz +SLOT=0/1.6.18.7 +SRC_URI=https://hackage.haskell.org/package/yesod-core-1.6.18.7/yesod-core-1.6.18.7.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e ghc-package e3a4a688accbd5f1226e46b379cc1c3e haskell-cabal 433b5153bec6b0ffe21c7be2210e8396 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=51ddc9bcc765d8dec983b5a318d472c9 +_md5_=a89d8d965729f50a3e2fa9fc9d2b0e29 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index ef1c2f846405..36ca24efc9d3 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/erlang-23.0.4 b/metadata/md5-cache/dev-lang/erlang-23.0.4 index 2ac1624e9681..cb189c3165de 100644 --- a/metadata/md5-cache/dev-lang/erlang-23.0.4 +++ b/metadata/md5-cache/dev-lang/erlang-23.0.4 @@ -5,10 +5,10 @@ DESCRIPTION=Erlang programming language, runtime environment and libraries (OTP) EAPI=7 HOMEPAGE=https://www.erlang.org/ IUSE=doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets elibc_FreeBSD java -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.7d:0= ) libressl? ( dev-libs/libressl:0= ) ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/23.0.4 SRC_URI=https://github.com/erlang/otp/archive/OTP-23.0.4.tar.gz -> erlang-23.0.4.tar.gz http://erlang.org/download/otp_doc_man_23.0.tar.gz -> erlang_doc_man_23.0.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.0.tar.gz -> erlang_doc_html_23.0.tar.gz ) _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets e1e6e1eb5b3d911b3abd712f611e2312 -_md5_=8499078eecfdaa6167aff77402d0c9ef +_md5_=f9ed637583f845dd9eec29a3386e83ce diff --git a/metadata/md5-cache/dev-lang/erlang-23.1.3 b/metadata/md5-cache/dev-lang/erlang-23.1.3 new file mode 100644 index 000000000000..5672623a152d --- /dev/null +++ b/metadata/md5-cache/dev-lang/erlang-23.1.3 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup +DEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.7d:0= ) libressl? ( dev-libs/libressl:0= ) ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) dev-lang/perl java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=Erlang programming language, runtime environment and libraries (OTP) +EAPI=7 +HOMEPAGE=https://www.erlang.org/ +IUSE=doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets elibc_FreeBSD java +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +LICENSE=Apache-2.0 +RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.7d:0= ) libressl? ( dev-libs/libressl:0= ) ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) +SLOT=0/23.1.3 +SRC_URI=https://github.com/erlang/otp/archive/OTP-23.1.3.tar.gz -> erlang-23.1.3.tar.gz http://erlang.org/download/otp_doc_man_23.1.tar.gz -> erlang_doc_man_23.1.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.1.tar.gz -> erlang_doc_html_23.1.tar.gz ) +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets e1e6e1eb5b3d911b3abd712f611e2312 +_md5_=ec3ca69ef421261925723ecb688d37bd diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index afe195597df6..01d025f71dbe 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/leatherman-1.12.3 b/metadata/md5-cache/dev-libs/leatherman-1.12.3 index 346d55c2df3a..90538a77536e 100644 --- a/metadata/md5-cache/dev-libs/leatherman-1.12.3 +++ b/metadata/md5-cache/dev-libs/leatherman-1.12.3 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0/1.12.3 SRC_URI=https://github.com/puppetlabs/leatherman/archive/1.12.3.tar.gz -> leatherman-1.12.3.tar.gz _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ea098845ee8e70935ecd8dad6c1cca82 +_md5_=08a4f38990ebf288dd7e3a8f297b2b35 diff --git a/metadata/md5-cache/dev-libs/libksba-1.5.0 b/metadata/md5-cache/dev-libs/libksba-1.5.0 new file mode 100644 index 000000000000..eaffed6c1757 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libksba-1.5.0 @@ -0,0 +1,13 @@ +BDEPEND=sys-devel/bison +DEFINED_PHASES=configure install +DEPEND=>=dev-libs/libgpg-error-1.8 +DESCRIPTION=X.509 and CMS (PKCS#7) library +EAPI=7 +HOMEPAGE=http://www.gnupg.org/related_software/libksba +IUSE=static-libs +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-3+ GPL-2+ GPL-3 +RDEPEND=>=dev-libs/libgpg-error-1.8 +SLOT=0 +SRC_URI=mirror://gnupg/libksba/libksba-1.5.0.tar.bz2 +_md5_=ee72fd5d44b9f0650a82b4dcf2335386 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 b499288dfd4f..25fe807eb655 100644 --- a/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 +++ b/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Userspace access to USB devices 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 ~riscv ~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.23/libusb-1.0.23.tar.bz2 _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=141b330168c7ab5bba9806a96aba422d +_md5_=b87ffb0a05afb7aa965027846f9eff0d diff --git a/metadata/md5-cache/dev-libs/libzia-4.23 b/metadata/md5-cache/dev-libs/libzia-4.23 index 506ecf47f1d1..260f97c60071 100644 --- a/metadata/md5-cache/dev-libs/libzia-4.23 +++ b/metadata/md5-cache/dev-libs/libzia-4.23 @@ -5,10 +5,10 @@ DESCRIPTION=platform abstraction code for tucnak package EAPI=7 HOMEPAGE=http://tucnak.nagano.cz IUSE=ftdi -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 x11-libs/gtk+:2 media-libs/libsdl media-libs/libpng:0 ftdi? ( dev-embedded/libftdi:0 ) SLOT=0 SRC_URI=http://tucnak.nagano.cz/libzia-4.23.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4f5ed2e89405e4f635c6e4f07ffb3298 +_md5_=e8e5df6ccecfd6491da633d7605a49c0 diff --git a/metadata/md5-cache/dev-libs/popt-1.18 b/metadata/md5-cache/dev-libs/popt-1.18 index 2ba8bed9926b..b740bd8db583 100644 --- a/metadata/md5-cache/dev-libs/popt-1.18 +++ b/metadata/md5-cache/dev-libs/popt-1.18 @@ -5,10 +5,10 @@ DESCRIPTION=Parse Options - Command line parser EAPI=7 HOMEPAGE=https://github.com/rpm-software-management/popt IUSE=nls 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 -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=MIT RDEPEND=nls? ( >=virtual/libintl-0-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(-)?] ) SLOT=0 SRC_URI=http://ftp.rpm.org/popt/releases/popt-1.x/popt-1.18.tar.gz _eclasses_=libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6521a87a230ad8f18d649ea782a8fa58 +_md5_=39626e2ee1a8d14dc0d8e39594e9f314 diff --git a/metadata/md5-cache/dev-libs/re2-0.2020.11.01 b/metadata/md5-cache/dev-libs/re2-0.2020.11.01 index a34566facf4d..827abfb12c5d 100644 --- a/metadata/md5-cache/dev-libs/re2-0.2020.11.01 +++ b/metadata/md5-cache/dev-libs/re2-0.2020.11.01 @@ -5,10 +5,10 @@ DESCRIPTION=An efficient, principled regular expression library EAPI=7 HOMEPAGE=https://github.com/google/re2 IUSE=icu 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 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 LICENSE=BSD RDEPEND=icu? ( dev-libs/icu: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(-)?] ) SLOT=0/9 SRC_URI=https://github.com/google/re2/archive/2020-11-01.tar.gz -> re2-2020-11-01.tar.gz _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1e1b4a311fad820bd282b3cd06951d6d +_md5_=48229965cbe6692a3400373698d30a75 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.14.5 b/metadata/md5-cache/dev-libs/rocksdb-6.14.5 new file mode 100644 index 000000000000..d1750cc62aae --- /dev/null +++ b/metadata/md5-cache/dev-libs/rocksdb-6.14.5 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= dev-python/zstandard:= sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) dev-cpp/gflags +DESCRIPTION=Embeddable, persistent key-value store for fast storage +EAPI=7 +HOMEPAGE=http://rocksdb.org https://github.com/facebook/rocksdb/ +IUSE=cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc static-libs +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= dev-python/zstandard:= sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) +SLOT=0 +SRC_URI=https://github.com/facebook/rocksdb/archive/v6.14.5.tar.gz -> rocksdb-6.14.5.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=c38596b7b43842ef306a7032593e1bff diff --git a/metadata/md5-cache/dev-libs/xxhash-0.8.0 b/metadata/md5-cache/dev-libs/xxhash-0.8.0 index 2c66f289103c..47a1f097226f 100644 --- a/metadata/md5-cache/dev-libs/xxhash-0.8.0 +++ b/metadata/md5-cache/dev-libs/xxhash-0.8.0 @@ -3,9 +3,9 @@ DESCRIPTION=Extremely fast non-cryptographic hash algorithm EAPI=7 HOMEPAGE=http://www.xxhash.net IUSE=static-libs -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos LICENSE=BSD-2 GPL-2+ SLOT=0 SRC_URI=https://github.com/Cyan4973/xxHash/archive/v0.8.0.tar.gz -> xxhash-0.8.0.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7ea3b2f133c39e223cd30337fca9e24c +_md5_=a3dfa2c223cdf3d9d782b6b4dbbdec4e diff --git a/metadata/md5-cache/dev-perl/DBD-SQLite-1.660.0 b/metadata/md5-cache/dev-perl/DBD-SQLite-1.660.0 index 05994684554a..333924295b54 100644 --- a/metadata/md5-cache/dev-perl/DBD-SQLite-1.660.0 +++ b/metadata/md5-cache/dev-perl/DBD-SQLite-1.660.0 @@ -5,11 +5,11 @@ DESCRIPTION=Self Contained RDBMS in a DBI Driver EAPI=7 HOMEPAGE=https://metacpan.org/release/DBD-SQLite IUSE=test system-sqlite -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=system-sqlite? ( >=dev-db/sqlite-3.32.3[extensions(+)] ) >=dev-perl/DBI-1.570.0 !=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python3_6 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fantix/aiocontextvars/archive/v0.2.2.tar.gz -> aiocontextvars-0.2.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=26cdc8a7ebb422865ecc5b2e41edc00a +_md5_=2566dbd6c341753b8a29e37b6ba0428e diff --git a/metadata/md5-cache/dev-python/ansi2html-1.6.0 b/metadata/md5-cache/dev-python/ansi2html-1.6.0 new file mode 100644 index 000000000000..d5f175cac211 --- /dev/null +++ b/metadata/md5-cache/dev-python/ansi2html-1.6.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[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_scm_git_archive[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[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? ( app-text/asciidoc ) 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(-)] dev-python/nose[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(-)] ) test? ( >=dev-python/six-1.7.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/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=Convert text with ANSI color codes to HTML +EAPI=7 +HOMEPAGE=https://pypi.org/project/ansi2html/ https://github.com/pycontribs/ansi2html +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=LGPL-3+ +RDEPEND=>=dev-python/six-1.7.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-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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/ansi2html/ansi2html-1.6.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=cdc121b979f23d608c4fc4d08ae196a8 diff --git a/metadata/md5-cache/dev-python/asgiref-3.3.1 b/metadata/md5-cache/dev-python/asgiref-3.3.1 new file mode 100644 index 000000000000..b72c08b6b500 --- /dev/null +++ b/metadata/md5-cache/dev-python/asgiref-3.3.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-asyncio[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(-)] ) 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=ASGI utilities (successor to WSGI) +EAPI=7 +HOMEPAGE=https://asgi.readthedocs.io/en/latest/ https://github.com/django/asgiref/ https://pypi.org/project/asgiref/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/a/asgiref/asgiref-3.3.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=7f7eedf2ad627edd9d7af25cb3eb0c91 diff --git a/metadata/md5-cache/dev-python/asttokens-2.0.4 b/metadata/md5-cache/dev-python/asttokens-2.0.4 index ebb05abafcad..f4428e5a979e 100644 --- a/metadata/md5-cache/dev-python/asttokens-2.0.4 +++ b/metadata/md5-cache/dev-python/asttokens-2.0.4 @@ -4,7 +4,7 @@ DESCRIPTION=Annotate Python AST trees with source text and token information EAPI=7 HOMEPAGE=https://github.com/gristlabs/asttokens/ https://pypi.org/project/asttokens/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=Apache-2.0 RDEPEND=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(-)] 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/gristlabs/asttokens/archive/v2.0.4.tar.gz -> asttokens-2.0.4.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=01fdcd2c0cd300abca691024672628a2 +_md5_=f9a86efaf7c5f8ee78e3c1adf9f2a133 diff --git a/metadata/md5-cache/dev-python/aws-sam-translator-1.30.0 b/metadata/md5-cache/dev-python/aws-sam-translator-1.30.0 new file mode 100644 index 000000000000..803198022d2e --- /dev/null +++ b/metadata/md5-cache/dev-python/aws-sam-translator-1.30.0 @@ -0,0 +1,15 @@ +BDEPEND=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(-)] dev-python/parameterized[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(-)] ) test? ( >=dev-python/boto3-1.5[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/jsonschema-2.6[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.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/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 library that transform SAM templates into AWS CloudFormation templates +EAPI=7 +HOMEPAGE=https://github.com/awslabs/serverless-application-model https://pypi.org/project/aws-sam-translator/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/boto3-1.5[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/jsonschema-2.6[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.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(-)] 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=https://github.com/awslabs/serverless-application-model/archive/v1.30.0.tar.gz -> aws-sam-translator-1.30.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=0650f7a652ac0f96752cd1afceebefb9 diff --git a/metadata/md5-cache/dev-python/aws-sam-translator-1.30.1 b/metadata/md5-cache/dev-python/aws-sam-translator-1.30.1 new file mode 100644 index 000000000000..5800c400a682 --- /dev/null +++ b/metadata/md5-cache/dev-python/aws-sam-translator-1.30.1 @@ -0,0 +1,15 @@ +BDEPEND=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(-)] dev-python/parameterized[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(-)] ) test? ( >=dev-python/boto3-1.5[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/jsonschema-2.6[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.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/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 library that transform SAM templates into AWS CloudFormation templates +EAPI=7 +HOMEPAGE=https://github.com/awslabs/serverless-application-model https://pypi.org/project/aws-sam-translator/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/boto3-1.5[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/jsonschema-2.6[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.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(-)] 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=https://github.com/awslabs/serverless-application-model/archive/v1.30.1.tar.gz -> aws-sam-translator-1.30.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=0650f7a652ac0f96752cd1afceebefb9 diff --git a/metadata/md5-cache/dev-python/bandit-1.5.1-r1 b/metadata/md5-cache/dev-python/bandit-1.5.1-r1 deleted file mode 100644 index 040b31c51332..000000000000 --- a/metadata/md5-cache/dev-python/bandit-1.5.1-r1 +++ /dev/null @@ -1,15 +0,0 @@ -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/coverage-4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/coverage-4.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/fixtures-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/hacking-1.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/mock-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stestr-1.0.0 >=dev-python/testscenarios-0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testtools-2.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslotest-3.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/beautifulsoup-4.6.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pylint-1.4.5[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=A security linter from OpenStack Security -EAPI=6 -HOMEPAGE=https://openstack.org -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 ~s390 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/GitPython-1.0.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/b/bandit/bandit-1.5.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7ac9892e4dce08f232b7ad5fd9484b54 diff --git a/metadata/md5-cache/dev-python/bandit-1.6.2-r1 b/metadata/md5-cache/dev-python/bandit-1.6.2-r1 index 2aa8fd892bd8..bcfcbd4df33a 100644 --- a/metadata/md5-cache/dev-python/bandit-1.6.2-r1 +++ b/metadata/md5-cache/dev-python/bandit-1.6.2-r1 @@ -5,7 +5,7 @@ DESCRIPTION=A security linter from OpenStack Security EAPI=7 HOMEPAGE=https://github.com/PyCQA/bandit IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~s390 x86 +KEYWORDS=amd64 ~arm64 ~s390 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] >=dev-python/GitPython-1.0.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(-)] >=dev-python/pyyaml-5.3.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(-)] >=dev-python/six-1.10.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(-)] >=dev-python/stevedore-1.20.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/b/bandit/bandit-1.6.2.tar.gz https://github.com/PyCQA/bandit/commit/45494c94d59eea5ddbe0204f3781b90108cbde30.patch -> bandit-1.6.2_py38-1.patch https://github.com/PyCQA/bandit/commit/3d0824676974e7e2e9635c10bc4f12e261f1dbdf.patch -> bandit-1.6.2_py38-2.patch _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e7c4720c8fe6851df44fede96ae8a31c +_md5_=97c532d36823b3defb5ce149d5a73eb1 diff --git a/metadata/md5-cache/dev-python/boto3-1.15.1 b/metadata/md5-cache/dev-python/boto3-1.15.1 deleted file mode 100644 index 6996f77d0f3e..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.15.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.18.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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.18.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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.15.1.tar.gz -> boto3-1.15.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7fe2402bd1ee789893cb4bb3b4de36f1 diff --git a/metadata/md5-cache/dev-python/boto3-1.15.10 b/metadata/md5-cache/dev-python/boto3-1.15.10 deleted file mode 100644 index f77d9456ff8a..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.15.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.18.10[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.18.10[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.15.10.tar.gz -> boto3-1.15.10.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8b3ab8e401bb9315b6d228030fc24ae5 diff --git a/metadata/md5-cache/dev-python/boto3-1.15.18 b/metadata/md5-cache/dev-python/boto3-1.15.18 index d636125e0871..934f771cbcf8 100644 --- a/metadata/md5-cache/dev-python/boto3-1.15.18 +++ b/metadata/md5-cache/dev-python/boto3-1.15.18 @@ -4,7 +4,7 @@ DESCRIPTION=The AWS SDK for Python EAPI=7 HOMEPAGE=https://github.com/boto/boto3 IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/botocore-1.18.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/jmespath-0.7.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/s3transfer-0.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(-)] 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/boto/boto3/archive/1.15.18.tar.gz -> boto3-1.15.18.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc +_md5_=7fe2402bd1ee789893cb4bb3b4de36f1 diff --git a/metadata/md5-cache/dev-python/boto3-1.16.10 b/metadata/md5-cache/dev-python/boto3-1.16.10 deleted file mode 100644 index 85c9021b4bd0..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.10[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.10[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.10.tar.gz -> boto3-1.16.10.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.12 b/metadata/md5-cache/dev-python/boto3-1.16.12 deleted file mode 100644 index f8c7e936a80c..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.12 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.12[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.12[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.12.tar.gz -> boto3-1.16.12.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.14 b/metadata/md5-cache/dev-python/boto3-1.16.14 deleted file mode 100644 index 246c96c281a8..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.14 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.14[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.14[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.14.tar.gz -> boto3-1.16.14.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.15 b/metadata/md5-cache/dev-python/boto3-1.16.15 deleted file mode 100644 index b9630d7700db..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.15 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.15[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.15[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.15.tar.gz -> boto3-1.16.15.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.17 b/metadata/md5-cache/dev-python/boto3-1.16.17 deleted file mode 100644 index 8cbc95ba31be..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.17 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.17[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.17[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.17.tar.gz -> boto3-1.16.17.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.18 b/metadata/md5-cache/dev-python/boto3-1.16.18 deleted file mode 100644 index b42369495a81..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.18 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.18.tar.gz -> boto3-1.16.18.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.19 b/metadata/md5-cache/dev-python/boto3-1.16.19 deleted file mode 100644 index cbe465e014d1..000000000000 --- a/metadata/md5-cache/dev-python/boto3-1.16.19 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.19[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python -EAPI=7 -HOMEPAGE=https://github.com/boto/boto3 -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.19[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.19.tar.gz -> boto3-1.16.19.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.13 b/metadata/md5-cache/dev-python/boto3-1.16.20 similarity index 95% rename from metadata/md5-cache/dev-python/boto3-1.16.13 rename to metadata/md5-cache/dev-python/boto3-1.16.20 index 107e5621ece2..7c343130227b 100644 --- a/metadata/md5-cache/dev-python/boto3-1.16.13 +++ b/metadata/md5-cache/dev-python/boto3-1.16.20 @@ -1,4 +1,4 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.13[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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(-)] +BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.20[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python EAPI=7 @@ -6,10 +6,10 @@ HOMEPAGE=https://github.com/boto/boto3 IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.13[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/jmespath-0.7.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/s3transfer-0.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(-)] 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(-)] +RDEPEND=>=dev-python/botocore-1.19.20[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.13.tar.gz -> boto3-1.16.13.tar.gz +SRC_URI=https://github.com/boto/boto3/archive/1.16.20.tar.gz -> boto3-1.16.20.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.11 b/metadata/md5-cache/dev-python/boto3-1.16.21 similarity index 95% rename from metadata/md5-cache/dev-python/boto3-1.16.11 rename to metadata/md5-cache/dev-python/boto3-1.16.21 index 5d4ff50acf38..67b1c0ace1d6 100644 --- a/metadata/md5-cache/dev-python/boto3-1.16.11 +++ b/metadata/md5-cache/dev-python/boto3-1.16.21 @@ -1,4 +1,4 @@ -BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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(-)] +BDEPEND=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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.21[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/jmespath-0.7.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/s3transfer-0.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/nose-1.3.7-r4[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=The AWS SDK for Python EAPI=7 @@ -6,10 +6,10 @@ HOMEPAGE=https://github.com/boto/boto3 IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 -RDEPEND=>=dev-python/botocore-1.19.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/jmespath-0.7.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/s3transfer-0.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(-)] 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(-)] +RDEPEND=>=dev-python/botocore-1.19.21[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/jmespath-0.7.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/s3transfer-0.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(-)] 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=https://github.com/boto/boto3/archive/1.16.11.tar.gz -> boto3-1.16.11.tar.gz +SRC_URI=https://github.com/boto/boto3/archive/1.16.21.tar.gz -> boto3-1.16.21.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/botocore-1.18.1 b/metadata/md5-cache/dev-python/botocore-1.18.1 deleted file mode 100644 index 8077718f9306..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.18.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3[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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/b/botocore/botocore-1.18.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e93fbacf75af38c4b23e57bc3d57937e diff --git a/metadata/md5-cache/dev-python/botocore-1.18.10 b/metadata/md5-cache/dev-python/botocore-1.18.10 deleted file mode 100644 index c6db78c43553..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.18.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3[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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/b/botocore/botocore-1.18.10.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e93fbacf75af38c4b23e57bc3d57937e diff --git a/metadata/md5-cache/dev-python/botocore-1.18.18 b/metadata/md5-cache/dev-python/botocore-1.18.18 index b0b23cd7d314..dc2350c9e579 100644 --- a/metadata/md5-cache/dev-python/botocore-1.18.18 +++ b/metadata/md5-cache/dev-python/botocore-1.18.18 @@ -4,7 +4,7 @@ DESCRIPTION=Low-level, data-driven core of boto 3 EAPI=7 HOMEPAGE=https://github.com/boto/botocore IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3[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/b/botocore/botocore-1.18.18.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7c010df9f0c2d3dee1cc97a947987974 +_md5_=e93fbacf75af38c4b23e57bc3d57937e diff --git a/metadata/md5-cache/dev-python/botocore-1.19.10 b/metadata/md5-cache/dev-python/botocore-1.19.10 deleted file mode 100644 index 94ec69dcc6d0..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.10.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.11 b/metadata/md5-cache/dev-python/botocore-1.19.11 deleted file mode 100644 index 4350e47aec6d..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.11 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.11.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.14 b/metadata/md5-cache/dev-python/botocore-1.19.14 deleted file mode 100644 index c9d1421a8a68..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.14 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.14.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.15 b/metadata/md5-cache/dev-python/botocore-1.19.15 deleted file mode 100644 index 207d0a069259..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.15 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.15.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.17 b/metadata/md5-cache/dev-python/botocore-1.19.17 deleted file mode 100644 index fe1b3dccab29..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.17 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.17.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.18 b/metadata/md5-cache/dev-python/botocore-1.19.18 deleted file mode 100644 index 9f429c2e3582..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.18 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.18.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.19 b/metadata/md5-cache/dev-python/botocore-1.19.19 deleted file mode 100644 index 4a2ca9d74f0c..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.19 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.19.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.12 b/metadata/md5-cache/dev-python/botocore-1.19.20 similarity index 99% rename from metadata/md5-cache/dev-python/botocore-1.19.12 rename to metadata/md5-cache/dev-python/botocore-1.19.20 index 4b221cd68d68..f18dce9db21c 100644 --- a/metadata/md5-cache/dev-python/botocore-1.19.12 +++ b/metadata/md5-cache/dev-python/botocore-1.19.20 @@ -10,6 +10,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 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/b/botocore/botocore-1.19.12.tar.gz +SRC_URI=mirror://pypi/b/botocore/botocore-1.19.20.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.13 b/metadata/md5-cache/dev-python/botocore-1.19.21 similarity index 99% rename from metadata/md5-cache/dev-python/botocore-1.19.13 rename to metadata/md5-cache/dev-python/botocore-1.19.21 index f07f7a76ae74..0ab2b1ef732b 100644 --- a/metadata/md5-cache/dev-python/botocore-1.19.13 +++ b/metadata/md5-cache/dev-python/botocore-1.19.21 @@ -10,6 +10,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 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/b/botocore/botocore-1.19.13.tar.gz +SRC_URI=mirror://pypi/b/botocore/botocore-1.19.21.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.8 b/metadata/md5-cache/dev-python/botocore-1.19.8 deleted file mode 100644 index 2a4ccea084b1..000000000000 --- a/metadata/md5-cache/dev-python/botocore-1.19.8 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] dev-python/jsonschema[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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-python/guzzle_sphinx_theme[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(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( 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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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/nose-1.3.7-r4[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=Low-level, data-driven core of boto 3 -EAPI=7 -HOMEPAGE=https://github.com/boto/botocore -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=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-python/jmespath[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/python-dateutil[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/urllib3-1.25.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(-)] 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/b/botocore/botocore-1.19.8.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/cov-core-1.15.0-r2 b/metadata/md5-cache/dev-python/cov-core-1.15.0-r2 index 8f9c65ebe94b..aa7c63fef215 100644 --- a/metadata/md5-cache/dev-python/cov-core-1.15.0-r2 +++ b/metadata/md5-cache/dev-python/cov-core-1.15.0-r2 @@ -5,11 +5,11 @@ DESCRIPTION=plugin core for use by pytest-cov, nose-cov and nose2-cov EAPI=7 HOMEPAGE=https://github.com/schlamar/cov-core 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 ~s390 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=>=dev-python/coverage-3.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(-)] 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 ) SLOT=0 SRC_URI=mirror://pypi/c/cov-core/cov-core-1.15.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d0bfa3730818af50ea94387250aca47d +_md5_=02035f85f47b396becf15676ce6ee1e7 diff --git a/metadata/md5-cache/dev-python/coverage-4.5.4 b/metadata/md5-cache/dev-python/coverage-4.5.4 index ab5ecce279e5..8d8eef72284c 100644 --- a/metadata/md5-cache/dev-python/coverage-4.5.4 +++ b/metadata/md5-cache/dev-python/coverage-4.5.4 @@ -4,7 +4,7 @@ DESCRIPTION=Code coverage measurement for Python EAPI=7 HOMEPAGE=https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/ IUSE=python_targets_pypy3 python_targets_python2_7 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 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~s390 sparc x86 LICENSE=BSD RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-4.5.4.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fcb6ced77c640a3fa0584b95a95a6b0e +_md5_=858a838576efc6f2a8589365f7092e98 diff --git a/metadata/md5-cache/dev-python/coverage-5.2.1 b/metadata/md5-cache/dev-python/coverage-5.2.1 deleted file mode 100644 index 0c6133267049..000000000000 --- a/metadata/md5-cache/dev-python/coverage-5.2.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Code coverage measurement for Python -EAPI=7 -HOMEPAGE=https://coverage.readthedocs.io/en/latest/ https://pypi.org/project/coverage/ -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 ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 -LICENSE=BSD -RDEPEND=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 -SLOT=0 -SRC_URI=mirror://pypi/c/coverage/coverage-5.2.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=62b92ae6dc1069011804e54621367964 diff --git a/metadata/md5-cache/dev-python/dask-2.30.0 b/metadata/md5-cache/dev-python/dask-2.30.0 index 172be1906279..9415b1ef3f3e 100644 --- a/metadata/md5-cache/dev-python/dask-2.30.0 +++ b/metadata/md5-cache/dev-python/dask-2.30.0 @@ -1,4 +1,4 @@ -BDEPEND=dev-python/toolz[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(-)] test? ( dev-python/moto[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/numexpr[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-xdist[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/s3fs-0.0.8[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/scipy[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(-)] ) test? ( >=dev-python/cloudpickle-0.2.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/fsspec-0.6.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/numpy-1.13.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/pandas-0.23.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/partd-0.3.10[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/psutil[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/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(-)] >=dev-python/toolz-0.8.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/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(-)] +BDEPEND=dev-python/toolz[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(-)] test? ( dev-python/moto[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/numexpr[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-xdist[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/scipy[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(-)] ) test? ( >=dev-python/cloudpickle-0.2.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/fsspec-0.6.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/numpy-1.13.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/pandas-0.23.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/partd-0.3.10[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/psutil[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/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(-)] >=dev-python/toolz-0.8.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/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=Task scheduling and blocked algorithms for parallel processing EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/d/dask/dask-2.30.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b9dd22858ffc870ebe6590600381c10f +_md5_=e92b1a3975dcad84eb7e2965fc43b8aa diff --git a/metadata/md5-cache/dev-python/denonavr-0.9.6 b/metadata/md5-cache/dev-python/denonavr-0.9.6 new file mode 100644 index 000000000000..594a6a0d307d --- /dev/null +++ b/metadata/md5-cache/dev-python/denonavr-0.9.6 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/requests-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/testtools[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/netifaces[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/requests[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-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=[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[xml(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[xml(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[xml(+)] ) >=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=Automation Library for Denon AVR receivers +EAPI=7 +HOMEPAGE=https://github.com/scarface-4711/denonavr +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-python/netifaces[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/requests[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=[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[xml(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[xml(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[xml(+)] ) >=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/d/denonavr/denonavr-0.9.6.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f7c368e56b3fb14fcf1a2ecbda92a511 diff --git a/metadata/md5-cache/dev-python/distlib-0.3.1-r1 b/metadata/md5-cache/dev-python/distlib-0.3.1-r1 index 1772de207397..4dda3f2745bf 100644 --- a/metadata/md5-cache/dev-python/distlib-0.3.1-r1 +++ b/metadata/md5-cache/dev-python/distlib-0.3.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Low-level components of distutils2/packaging EAPI=7 HOMEPAGE=https://pypi.org/project/distlib/ https://bitbucket.org/pypa/distlib/ 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 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=PSF-2 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 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://bitbucket.org/pypa/distlib/get/0.3.1.tar.bz2 -> distlib-0.3.1.tar.bz2 _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd -_md5_=f538d96bb8472415adde9182b19c4c88 +_md5_=b45ffc33e5d312fc82ceb6ae848f29a8 diff --git a/metadata/md5-cache/dev-python/executing-0.5.3 b/metadata/md5-cache/dev-python/executing-0.5.3 index 923d053a864c..73fa376e97d6 100644 --- a/metadata/md5-cache/dev-python/executing-0.5.3 +++ b/metadata/md5-cache/dev-python/executing-0.5.3 @@ -4,7 +4,7 @@ DESCRIPTION=Get information about what a Python frame is currently doing EAPI=7 HOMEPAGE=https://github.com/alexmojaki/executing/ https://pypi.org/project/executing/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 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 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/alexmojaki/executing/archive/v0.5.3.tar.gz -> executing-0.5.3.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1319d8f292ff0cfb5af8ad0df5a33b8b +_md5_=1614f65e3e818d38771ac1e5d1ea05a4 diff --git a/metadata/md5-cache/dev-python/fakeredis-1.4.3 b/metadata/md5-cache/dev-python/fakeredis-1.4.3 index e50f1a00daff..8cc5ae00a7aa 100644 --- a/metadata/md5-cache/dev-python/fakeredis-1.4.3 +++ b/metadata/md5-cache/dev-python/fakeredis-1.4.3 @@ -4,7 +4,7 @@ DESCRIPTION=Fake implementation of redis API for testing purposes EAPI=7 HOMEPAGE=https://github.com/jamesls/fakeredis/ https://pypi.org/project/fakeredis/ IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=BSD RDEPEND=dev-python/redis-py[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/six[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[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=https://github.com/jamesls/fakeredis/archive/1.4.3.tar.gz -> fakeredis-1.4.3.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7b7ba58ebb20b6472239b371e2776b08 +_md5_=955252013aa57d67204fd0192b195177 diff --git a/metadata/md5-cache/dev-python/fastjsonschema-2.14.5 b/metadata/md5-cache/dev-python/fastjsonschema-2.14.5 index 96d7f82b381e..59653fdae567 100644 --- a/metadata/md5-cache/dev-python/fastjsonschema-2.14.5 +++ b/metadata/md5-cache/dev-python/fastjsonschema-2.14.5 @@ -4,7 +4,7 @@ DESCRIPTION=Fast JSON schema validator for Python EAPI=7 HOMEPAGE=https://github.com/horejsek/python-fastjsonschema/ IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm64 x86 +KEYWORDS=amd64 arm64 x86 LICENSE=BSD RDEPEND=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_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( 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/horejsek/python-fastjsonschema/archive/v2.14.5.tar.gz -> python-fastjsonschema-2.14.5.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1c79edebd61dc33cf7027bbe1ed99ef3 +_md5_=9fa21c437ed1bf7482c5da626261dfdd diff --git a/metadata/md5-cache/dev-python/flask-compress-1.5.0 b/metadata/md5-cache/dev-python/flask-compress-1.5.0 deleted file mode 100644 index 9f80fd103569..000000000000 --- a/metadata/md5-cache/dev-python/flask-compress-1.5.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( app-arch/brotli[python,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/flask[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(-)] >=dev-python/pytest-4.5.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(-)] >=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(-)] -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 -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=app-arch/brotli[python,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/flask[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(-)] 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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-Compress/Flask-Compress-1.5.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e74aa2f8c45549bee816de2cc4ff7699 diff --git a/metadata/md5-cache/dev-python/gevent-20.9.0 b/metadata/md5-cache/dev-python/gevent-20.9.0 index 9a2c825d4493..9eeeb8a1510c 100644 --- a/metadata/md5-cache/dev-python/gevent-20.9.0 +++ b/metadata/md5-cache/dev-python/gevent-20.9.0 @@ -5,7 +5,7 @@ DESCRIPTION=Coroutine-based network library EAPI=7 HOMEPAGE=https://www.gevent.org/ https://pypi.org/project/gevent/ IUSE=doc examples test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 arm arm64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=>=dev-libs/libev-4.23:= dev-libs/libuv:= >=net-dns/c-ares-1.12:= >=dev-python/greenlet-0.4.17 dev-python/zope-event[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-interface[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(-)] virtual/python-greenlet[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[ssl(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+),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(-)] 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/g/gevent/gevent-20.9.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=79a4c0beaaffe383b52aa180bc90d8a5 +_md5_=17884579ba7036cc9778d90adcdded31 diff --git a/metadata/md5-cache/dev-python/greenlet-0.4.16-r1 b/metadata/md5-cache/dev-python/greenlet-0.4.16-r1 deleted file mode 100644 index 3e25b1f329fb..000000000000 --- a/metadata/md5-cache/dev-python/greenlet-0.4.16-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=doc? ( dev-python/sphinx ) 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=Lightweight in-process concurrent programming -EAPI=7 -HOMEPAGE=https://pypi.org/project/greenlet/ -IUSE=doc doc 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 ~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 ) -SLOT=0 -SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.16.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ea6e1b9cb624c293bcd38b6f18629ea0 diff --git a/metadata/md5-cache/dev-python/hypothesis-5.36.2 b/metadata/md5-cache/dev-python/hypothesis-5.36.2 index b2e17ebca935..919ebb75b291 100644 --- a/metadata/md5-cache/dev-python/hypothesis-5.36.2 +++ b/metadata/md5-cache/dev-python/hypothesis-5.36.2 @@ -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 ~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.36.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=86947594f6cd3764c5a4fb23dea5b8e0 +_md5_=180c0f37c5d826f3a38c90cbd38e67e9 diff --git a/metadata/md5-cache/dev-python/hypothesis-5.41.3 b/metadata/md5-cache/dev-python/hypothesis-5.41.3 new file mode 100644 index 000000000000..257d6263f6b0 --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-5.41.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 ~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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-5.41.3.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=86947594f6cd3764c5a4fb23dea5b8e0 diff --git a/metadata/md5-cache/dev-python/imageio-2.6.1 b/metadata/md5-cache/dev-python/imageio-2.6.1 index 618e4a5f1912..a4d334d1ff45 100644 --- a/metadata/md5-cache/dev-python/imageio-2.6.1 +++ b/metadata/md5-cache/dev-python/imageio-2.6.1 @@ -1,15 +1,15 @@ -BDEPEND=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(-)] 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(-)] +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 -DEPEND=dev-python/numpy[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(-)] media-libs/freeimage +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(-)] media-libs/freeimage DESCRIPTION=Python library for reading and writing image data EAPI=7 HOMEPAGE=https://imageio.github.io/ -IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-python/numpy[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(-)] media-libs/freeimage 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 ) +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(-)] media-libs/freeimage 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/imageio/imageio/archive/v2.6.1.tar.gz -> imageio-2.6.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=935b45fa17c2343ebf8493c2bccf5f5a +_md5_=6f4aea1dc3ac8c6756b3b393015033ce diff --git a/metadata/md5-cache/dev-python/immutables-0.14 b/metadata/md5-cache/dev-python/immutables-0.14 index 07d0a80926a8..fe8c940ad9e2 100644 --- a/metadata/md5-cache/dev-python/immutables-0.14 +++ b/metadata/md5-cache/dev-python/immutables-0.14 @@ -4,7 +4,7 @@ DESCRIPTION=A high-performance immutable mapping type for Python EAPI=7 HOMEPAGE=https://github.com/MagicStack/immutables IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 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 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/MagicStack/immutables/archive/v0.14.tar.gz -> immutables-0.14.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4004eac1b6d14fc1373c28c2768ae525 +_md5_=e2e27800963f34b310001f07ee33f93c diff --git a/metadata/md5-cache/dev-python/joblib-0.14.1 b/metadata/md5-cache/dev-python/joblib-0.14.1 deleted file mode 100644 index 833466cccb48..000000000000 --- a/metadata/md5-cache/dev-python/joblib-0.14.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/threadpoolctl[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-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpy[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/matplotlib[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pillow[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx-gallery[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpydoc[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pandas[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/lz4[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/distributed[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-python/numpy[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/matplotlib[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pillow[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx-gallery[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/numpydoc[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pandas[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/lz4[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/distributed[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(+)] dev-python/numpy[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/matplotlib[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pillow[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx-gallery[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/numpydoc[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pandas[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/lz4[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/distributed[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_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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Tools to provide lightweight pipelining in Python -EAPI=7 -HOMEPAGE=https://joblib.readthedocs.io/en/latest/ https://github.com/joblib/joblib -IUSE=test doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 ~ppc64 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 ) >=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 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/joblib/joblib/archive/0.14.1.tar.gz -> joblib-0.14.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c0c70bfcff986248778d9da4c5165500 diff --git a/metadata/md5-cache/dev-python/joblib-0.15.1 b/metadata/md5-cache/dev-python/joblib-0.15.1 deleted file mode 100644 index ed831e2a9604..000000000000 --- a/metadata/md5-cache/dev-python/joblib-0.15.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/threadpoolctl[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-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpy[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/matplotlib[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pillow[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx-gallery[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpydoc[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pandas[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/lz4[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/distributed[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-python/numpy[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/matplotlib[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pillow[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx-gallery[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/numpydoc[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pandas[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/lz4[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/distributed[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(+)] dev-python/numpy[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/matplotlib[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pillow[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx-gallery[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/numpydoc[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pandas[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/lz4[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/distributed[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_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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Tools to provide lightweight pipelining in Python -EAPI=7 -HOMEPAGE=https://joblib.readthedocs.io/en/latest/ https://github.com/joblib/joblib -IUSE=test doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~ppc64 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 ) >=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 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/joblib/joblib/archive/0.15.1.tar.gz -> joblib-0.15.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0fd87246eb2a5e0f8b8c1cd867745614 diff --git a/metadata/md5-cache/dev-python/joblib-0.16.0 b/metadata/md5-cache/dev-python/joblib-0.16.0 deleted file mode 100644 index ed01952e3e32..000000000000 --- a/metadata/md5-cache/dev-python/joblib-0.16.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/threadpoolctl[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-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpy[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/matplotlib[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pillow[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx-gallery[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpydoc[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/pandas[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/lz4[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/distributed[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-python/numpy[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/matplotlib[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pillow[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx-gallery[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/numpydoc[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/pandas[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/lz4[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/distributed[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(+)] dev-python/numpy[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/matplotlib[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pillow[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx-gallery[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/numpydoc[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/pandas[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/lz4[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/distributed[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( dev-python/cloudpickle[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/loky[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/pytest-4.5.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(-)] >=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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Tools to provide lightweight pipelining in Python -EAPI=7 -HOMEPAGE=https://joblib.readthedocs.io/en/latest/ https://github.com/joblib/joblib -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/cloudpickle[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/loky[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/joblib/joblib/archive/0.16.0.tar.gz -> joblib-0.16.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4660692076e2a8b1de45d2d35c622e18 diff --git a/metadata/md5-cache/dev-python/joblib-0.17.0 b/metadata/md5-cache/dev-python/joblib-0.17.0 index e2d0c5bfc221..89b2c7b01f39 100644 --- a/metadata/md5-cache/dev-python/joblib-0.17.0 +++ b/metadata/md5-cache/dev-python/joblib-0.17.0 @@ -4,7 +4,7 @@ DESCRIPTION=Tools to provide lightweight pipelining in Python EAPI=7 HOMEPAGE=https://joblib.readthedocs.io/en/latest/ https://github.com/joblib/joblib IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 LICENSE=BSD RDEPEND=dev-python/cloudpickle[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/loky[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/joblib/joblib/archive/0.17.0.tar.gz -> joblib-0.17.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fa0a46e8ebf43e75140fefc31407a14b +_md5_=f59cc81a64d5628c6b05fed4e95c91a3 diff --git a/metadata/md5-cache/dev-python/line_profiler-3.0.2 b/metadata/md5-cache/dev-python/line_profiler-3.0.2 index acb80412acbf..4e155906e537 100644 --- a/metadata/md5-cache/dev-python/line_profiler-3.0.2 +++ b/metadata/md5-cache/dev-python/line_profiler-3.0.2 @@ -1,16 +1,16 @@ -BDEPEND=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/scikit-build[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/ipython[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/pytest-4.5.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(-)] >=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(-)] +BDEPEND=dev-python/cython[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/scikit-build[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(-)] test? ( dev-python/ipython[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-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 -DEPEND=test? ( 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/ubelt[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(-)] ) +DEPEND=test? ( dev-python/coverage[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/ubelt[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=Line-by-line profiler EAPI=7 HOMEPAGE=https://github.com/pyutils/line_profiler -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=dev-python/ipython[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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=dev-python/ipython[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(-)] +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/l/line_profiler/line_profiler-3.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ada0507649673291da20a3d698ea3cd1 +_md5_=61d979e676f2c89e7296b39b5060d6bc diff --git a/metadata/md5-cache/dev-python/lmdb-0.92 b/metadata/md5-cache/dev-python/lmdb-0.92 deleted file mode 100644 index 5c22882a2c6b..000000000000 --- a/metadata/md5-cache/dev-python/lmdb-0.92 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-db/lmdb:= dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=Python bindings for the Lightning Database -EAPI=7 -HOMEPAGE=https://github.com/dw/py-lmdb/ -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=OPENLDAP -RDEPEND=dev-db/lmdb:= 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=mirror://pypi/l/lmdb/lmdb-0.92.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a910376f1ea76849e606bfa9afcb0472 diff --git a/metadata/md5-cache/dev-python/loky-2.9.0 b/metadata/md5-cache/dev-python/loky-2.9.0 index c69349c9c94f..428056f657cc 100644 --- a/metadata/md5-cache/dev-python/loky-2.9.0 +++ b/metadata/md5-cache/dev-python/loky-2.9.0 @@ -4,7 +4,7 @@ DESCRIPTION=Robust and reusable Executor for joblib EAPI=7 HOMEPAGE=https://github.com/joblib/loky IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 LICENSE=BSD RDEPEND=dev-python/cloudpickle[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/psutil[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/joblib/loky/archive/2.9.0.tar.gz -> loky-2.9.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0da5bc19444d4acfbe910c3575ea8064 +_md5_=b9aa31ec4628365cd04aa636db20743d diff --git a/metadata/md5-cache/dev-python/miniupnpc-2.1.20201016 b/metadata/md5-cache/dev-python/miniupnpc-2.1.20201016 index 30d7ae73945a..dd2d973c94a8 100644 --- a/metadata/md5-cache/dev-python/miniupnpc-2.1.20201016 +++ b/metadata/md5-cache/dev-python/miniupnpc-2.1.20201016 @@ -5,11 +5,11 @@ DESCRIPTION=Python bindings for UPnP client library EAPI=7 HOMEPAGE=http://miniupnp.free.fr/ IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 verify-sig -KEYWORDS=~amd64 ppc ppc64 x86 +KEYWORDS=amd64 ppc ppc64 x86 LICENSE=BSD RDEPEND=>=net-libs/miniupnpc-2.1.20201016:0= 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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz verify-sig? ( http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz.sig ) _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=dc83ac1c53055f810c780917c3e411a2 +_md5_=6a2912e0ef3ff11f066cecabdce1d425 diff --git a/metadata/md5-cache/dev-python/mypy-0.781 b/metadata/md5-cache/dev-python/mypy-0.781 deleted file mode 100644 index 18482ef64feb..000000000000 --- a/metadata/md5-cache/dev-python/mypy-0.781 +++ /dev/null @@ -1,15 +0,0 @@ -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(-)] test? ( dev-python/flake8[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/pytest-3.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(-)] >=dev-python/pytest-xdist-1.18[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/pytest-cov-2.4.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(-)] >=dev-python/psutil-5.4.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(-)] >=dev-python/lxml-4.1.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(-)] >=dev-python/py-1.5.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/virtualenv-16.0.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(-)] ) 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(-)] dev-python/sphinx_rtd_theme[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=Optional static typing for Python -EAPI=6 -HOMEPAGE=http://www.mypy-lang.org/ -IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=MIT -RDEPEND=!dev-util/stubgen >=dev-python/psutil-4[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/typed-ast-1.4.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(-)] =dev-python/typing-extensions-3.7.4[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/mypy_extensions-0.4.3[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-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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/python/mypy/archive/v0.781.tar.gz -> mypy-0.781.tar.gz https://api.github.com/repos/python/typeshed/tarball/e199c2e -> mypy-typeshed-0.781-e199c2e.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b2adc797a32aa230509b26f3f98b5563 diff --git a/metadata/md5-cache/dev-python/mypy-0.782 b/metadata/md5-cache/dev-python/mypy-0.782 index 827d296b6cdc..abbc5ca9110c 100644 --- a/metadata/md5-cache/dev-python/mypy-0.782 +++ b/metadata/md5-cache/dev-python/mypy-0.782 @@ -4,7 +4,7 @@ DESCRIPTION=Optional static typing for Python EAPI=7 HOMEPAGE=http://www.mypy-lang.org/ IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm64 ~ia64 ~x86 +KEYWORDS=amd64 arm64 ~ia64 x86 LICENSE=MIT RDEPEND=!dev-util/stubgen >=dev-python/psutil-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/typed-ast-1.4.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/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(-)] =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 ) SLOT=0 SRC_URI=mirror://pypi/m/mypy/mypy-0.782.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=03d7267bc13071a122334b9e20daaf5d +_md5_=45a9551fce7c13f560b28b2985d5cb5d diff --git a/metadata/md5-cache/dev-python/mypy-0.790 b/metadata/md5-cache/dev-python/mypy-0.790 new file mode 100644 index 000000000000..8037218f519c --- /dev/null +++ b/metadata/md5-cache/dev-python/mypy-0.790 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/attrs-18.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/lxml-4.4.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/pytest-6.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/pytest-xdist-1.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/py-1.5.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/virtualenv-16.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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( !dev-util/stubgen >=dev-python/psutil-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/typed-ast-1.4.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/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(-)] =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 unpack +DESCRIPTION=Optional static typing for Python +EAPI=7 +HOMEPAGE=http://www.mypy-lang.org/ +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm64 ~ia64 ~x86 +LICENSE=MIT +RDEPEND=!dev-util/stubgen >=dev-python/psutil-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/typed-ast-1.4.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/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(-)] =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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/python/mypy/archive/v0.790.tar.gz -> mypy-0.790.tar.gz https://api.github.com/repos/python/typeshed/tarball/5be9c91 -> mypy-typeshed-5be9c91.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=68a3c326c00eb4a6e1dd896d997ec753 diff --git a/metadata/md5-cache/dev-python/nbformat-5.0.8 b/metadata/md5-cache/dev-python/nbformat-5.0.8 index 2fa08e3ff904..09e32b40f312 100644 --- a/metadata/md5-cache/dev-python/nbformat-5.0.8 +++ b/metadata/md5-cache/dev-python/nbformat-5.0.8 @@ -5,7 +5,7 @@ DESCRIPTION=Reference implementation of the Jupyter Notebook format EAPI=7 HOMEPAGE=https://jupyter.org IUSE=doc test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm64 x86 +KEYWORDS=amd64 arm64 x86 LICENSE=BSD RDEPEND=>=dev-python/jsonschema-2.4.0[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/ipython_genutils[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/traitlets-4.1[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/jupyter_core[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(-)] 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-lang/python-exec-2:=[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(-)] REQUIRED_USE=|| ( 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/jupyter/nbformat/archive/5.0.8.tar.gz -> nbformat-5.0.8.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=aaa6b9117cbebf050ac6d507a5268c4d +_md5_=101de32e97d3594bf71f40849a084a81 diff --git a/metadata/md5-cache/dev-python/nose-1.3.7-r6 b/metadata/md5-cache/dev-python/nose-1.3.7-r6 index b51858e9caf5..d3b784c4c19e 100644 --- a/metadata/md5-cache/dev-python/nose-1.3.7-r6 +++ b/metadata/md5-cache/dev-python/nose-1.3.7-r6 @@ -1,6 +1,6 @@ BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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=coverage? ( python_targets_pypy3? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_python2_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_8? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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(-)] ) ) test? ( python_targets_pypy3? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_python2_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_8? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/twisted[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_7? ( dev-python/twisted[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_8? ( dev-python/twisted[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(-)] ) ) +DEPEND=coverage? ( python_targets_pypy3? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_python2_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_8? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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(-)] ) ) test? ( !hppa? ( python_targets_pypy3? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_python2_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_7? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_8? ( dev-python/coverage[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),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_6? ( dev-python/twisted[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_7? ( dev-python/twisted[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_8? ( dev-python/twisted[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(-)] ) ) DESCRIPTION=Unittest extension with automatic test suite discovery and easy test authoring EAPI=7 HOMEPAGE=https://pypi.org/project/nose/ https://nose.readthedocs.io/en/latest/ https://github.com/nose-devs/nose @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.3.7.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=54018e29409561432e4b2314a90e849b +_md5_=4c0a38d1fa14d5c3d2d55b6c2ea1a2bc diff --git a/metadata/md5-cache/dev-python/nose-1.3.7-r7 b/metadata/md5-cache/dev-python/nose-1.3.7-r7 index 7c1d04c8d43a..e80d3eb55e9a 100644 --- a/metadata/md5-cache/dev-python/nose-1.3.7-r7 +++ b/metadata/md5-cache/dev-python/nose-1.3.7-r7 @@ -1,6 +1,6 @@ BDEPEND=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=coverage? ( dev-python/coverage[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/coverage[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/twisted[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/twisted[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/twisted[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/twisted[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(-)] ) ) +DEPEND=coverage? ( dev-python/coverage[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? ( !hppa? ( dev-python/coverage[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/twisted[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/twisted[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/twisted[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/twisted[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(-)] ) ) DESCRIPTION=Unittest extension with automatic test suite discovery and easy test authoring EAPI=7 HOMEPAGE=https://pypi.org/project/nose/ https://nose.readthedocs.io/en/latest/ https://github.com/nose-devs/nose @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.3.7.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ecec8bea352fee2500e64778f868d5d5 +_md5_=fc15d44f13231f295df814f8d033fcb0 diff --git a/metadata/md5-cache/dev-python/numpy-1.19.2 b/metadata/md5-cache/dev-python/numpy-1.19.2 index 220991946edf..54a6070a45a7 100644 --- a/metadata/md5-cache/dev-python/numpy-1.19.2 +++ b/metadata/md5-cache/dev-python/numpy-1.19.2 @@ -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.2.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 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=56e0f3ba49b69bb6d2ec9163fba6ab25 +_md5_=1b887adcd6da22fc20105639a6173010 diff --git a/metadata/md5-cache/dev-python/olefile-0.46 b/metadata/md5-cache/dev-python/olefile-0.46 deleted file mode 100644 index 6f9b319becf7..000000000000 --- a/metadata/md5-cache/dev-python/olefile-0.46 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=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(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7 dev-python/sphinx[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) 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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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 package to parse, read and write Microsoft OLE2 files -EAPI=7 -HOMEPAGE=https://www.decalage.info/olefile -IUSE=doc python_targets_pypy3 python_targets_python2_7 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 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD-2 -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) 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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-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_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -SLOT=0 -SRC_URI=https://github.com/decalage2/olefile/archive/v0.46.tar.gz -> olefile-0.46.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6f1944f63cef9a05ed1248ea293267df diff --git a/metadata/md5-cache/dev-python/openstacksdk-0.46.0 b/metadata/md5-cache/dev-python/openstacksdk-0.46.0 deleted file mode 100644 index e4859ce0f547..000000000000 --- a/metadata/md5-cache/dev-python/openstacksdk-0.46.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A collection of libraries for building applications to work with OpenStack. -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-openstacksdk -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/pyyaml-3.12[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/appdirs-1.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requestsexceptions-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/jsonpatch-1.16[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/jsonpatch-1.20[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-service-types-1.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/munch-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/decorator-4.4.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/jmespath-0.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/netifaces-0.10.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/dogpile-cache-0.6.5[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cryptography-2.1.0[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=mirror://pypi/o/openstacksdk/openstacksdk-0.46.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=abc5967a156e0cf5318063801dd31d49 diff --git a/metadata/md5-cache/dev-python/os-client-config-1.32.0 b/metadata/md5-cache/dev-python/os-client-config-1.32.0 deleted file mode 100644 index fe2fd42ada32..000000000000 --- a/metadata/md5-cache/dev-python/os-client-config-1.32.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=OpenStack Client Configuation Library -EAPI=7 -HOMEPAGE=https://www.openstack.org/ -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/openstacksdk-0.13.0[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=mirror://pypi/o/os-client-config/os-client-config-1.32.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8214d2fc282d0e6a80d8877f2adae4f3 diff --git a/metadata/md5-cache/dev-python/os-client-config-2.1.0 b/metadata/md5-cache/dev-python/os-client-config-2.1.0 index 8563f0528152..5a36c25f5dd4 100644 --- a/metadata/md5-cache/dev-python/os-client-config-2.1.0 +++ b/metadata/md5-cache/dev-python/os-client-config-2.1.0 @@ -5,11 +5,11 @@ DESCRIPTION=OpenStack Client Configuation Library EAPI=7 HOMEPAGE=https://www.openstack.org/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8.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(-)] >=dev-python/openstacksdk-0.13.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=mirror://pypi/o/os-client-config/os-client-config-2.1.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ea430a4c5396f8eb6f81a9edc9e456ad +_md5_=5a15e021a156f398ef50fc9b42b58923 diff --git a/metadata/md5-cache/dev-python/os-ken-0.3.1 b/metadata/md5-cache/dev-python/os-ken-0.3.1 deleted file mode 100644 index f8bfa1a75f83..000000000000 --- a/metadata/md5-cache/dev-python/os-ken-0.3.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=OpenStack Cinder brick library for managing local volume attaches -EAPI=7 -HOMEPAGE=https://github.com/openstack/os-ken -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/eventlet-0.18.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.18.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.20.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.21.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.23.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/msgpack-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/netaddr-0.7.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-config-2.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovs-2.6.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/routes-2.3.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/tinyrpc-0.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/webob-1.2[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=mirror://pypi/o/os-ken/os-ken-0.3.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=601dcf27fea06adbe5f962ba678163ea diff --git a/metadata/md5-cache/dev-python/os-ken-1.2.0 b/metadata/md5-cache/dev-python/os-ken-1.2.0 index 9b7841ab303a..adb7b1834018 100644 --- a/metadata/md5-cache/dev-python/os-ken-1.2.0 +++ b/metadata/md5-cache/dev-python/os-ken-1.2.0 @@ -5,11 +5,11 @@ DESCRIPTION=OpenStack Cinder brick library for managing local volume attaches EAPI=7 HOMEPAGE=https://github.com/openstack/os-ken IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] >=dev-python/eventlet-0.18.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/eventlet-0.18.3[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/eventlet-0.20.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(-)] !~dev-python/eventlet-0.21.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(-)] !~dev-python/eventlet-0.23.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(-)] >=dev-python/msgpack-0.3.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(-)] >=dev-python/netaddr-0.7.18[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/oslo-config-5.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(-)] >=dev-python/ovs-2.6.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(-)] >=dev-python/routes-2.3.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(-)] >=dev-python/six-1.4.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(-)] >=dev-python/tinyrpc-0.6[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/webob-1.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(-)] 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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/o/os-ken/os-ken-1.2.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3735f3a496f390be67cafab220ebd693 +_md5_=358c9260a5e539d1577e65ec4bb8e74b diff --git a/metadata/md5-cache/dev-python/os-testr-1.0.0 b/metadata/md5-cache/dev-python/os-testr-1.0.0 deleted file mode 100644 index 18cec65726c9..000000000000 --- a/metadata/md5-cache/dev-python/os-testr-1.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testrepository-0.0.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/subunit-0.0.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testtools-1.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/coverage-4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/coverage-4.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sphinx-1.6.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/openstackdocstheme-1.16.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslotest-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testscenarios-0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ddt-1.0.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) -DESCRIPTION=A testr wrapper to provide functionality for OpenStack projects -EAPI=7 -HOMEPAGE=https://pypi.org/project/os-testr/ https://github.com/openstack/os-testr -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testrepository-0.0.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/subunit-0.0.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testtools-1.4.0[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/o/os-testr/os-testr-1.0.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f893531ffe06183674305f21ac91e501 diff --git a/metadata/md5-cache/dev-python/osc-lib-2.0.0 b/metadata/md5-cache/dev-python/osc-lib-2.0.0 deleted file mode 100644 index b39cd9b7e0b7..000000000000 --- a/metadata/md5-cache/dev-python/osc-lib-2.0.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A package of common support modules for writing OSC plugins. -EAPI=7 -HOMEPAGE=https://github.com/openstack/osc-lib -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/Babel-2.3.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/Babel-2.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cliff-2.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/cliff-2.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/openstacksdk-0.15.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-client-config-1.29.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/simplejson-3.5.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[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=mirror://pypi/o/osc-lib/osc-lib-2.0.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0ee1ecfd608522d1ffd45917e47fb022 diff --git a/metadata/md5-cache/dev-python/osc-lib-2.2.1 b/metadata/md5-cache/dev-python/osc-lib-2.2.1 index 3ec061615a6b..c925ff7a0585 100644 --- a/metadata/md5-cache/dev-python/osc-lib-2.2.1 +++ b/metadata/md5-cache/dev-python/osc-lib-2.2.1 @@ -5,11 +5,11 @@ DESCRIPTION=A package of common support modules for writing OSC plugins. EAPI=7 HOMEPAGE=https://github.com/openstack/osc-lib IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/cliff-3.2.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(-)] >=dev-python/keystoneauth-3.14.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(-)] >=dev-python/openstacksdk-0.15.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(-)] >=dev-python/os-client-config-1.29.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-utils-3.33.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(-)] >=dev-python/simplejson-3.5.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(-)] >=dev-python/stevedore-1.20.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=mirror://pypi/o/osc-lib/osc-lib-2.2.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4131e5f54a835fb9ce5b66c14ef9d2df +_md5_=6dd13c57c688c43ba0101cd0a9a400c9 diff --git a/metadata/md5-cache/dev-python/oslo-concurrency-4.0.2 b/metadata/md5-cache/dev-python/oslo-concurrency-4.0.2 deleted file mode 100644 index ce0a6cb448d6..000000000000 --- a/metadata/md5-cache/dev-python/oslo-concurrency-4.0.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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=library for running multi-thread, multi-process applications -EAPI=7 -HOMEPAGE=https://pypi.org/project/oslo.concurrency/ -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/oslo-config-5.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/fasteners-0.7.0[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=mirror://pypi/o/oslo.concurrency/oslo.concurrency-4.0.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=771fc843f01d5279a45f9600018549bf diff --git a/metadata/md5-cache/dev-python/oslo-concurrency-4.3.1 b/metadata/md5-cache/dev-python/oslo-concurrency-4.3.1 index 2c682776af95..8bc99e05bdd0 100644 --- a/metadata/md5-cache/dev-python/oslo-concurrency-4.3.1 +++ b/metadata/md5-cache/dev-python/oslo-concurrency-4.3.1 @@ -5,11 +5,11 @@ DESCRIPTION=library for running multi-thread, multi-process applications EAPI=7 HOMEPAGE=https://pypi.org/project/oslo.concurrency/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.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(-)] >=dev-python/oslo-config-5.2.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-utils-3.33.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(-)] >=dev-python/fasteners-0.7.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=mirror://pypi/o/oslo.concurrency/oslo.concurrency-4.3.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6b396fba98f96c61bee62e405f8a3d4b +_md5_=a4932b17bf3bcd6714eae8836b0da2ff diff --git a/metadata/md5-cache/dev-python/oslo-config-8.0.3 b/metadata/md5-cache/dev-python/oslo-config-8.0.3 deleted file mode 100644 index cff3f8889df7..000000000000 --- a/metadata/md5-cache/dev-python/oslo-config-8.0.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=Oslo Configuration API -EAPI=7 -HOMEPAGE=https://launchpad.net/oslo -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/debtcollector-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/netaddr-0.7.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/rfc3986-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.18.0[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=mirror://pypi/o/oslo.config/oslo.config-8.0.3.tar.gz -> oslo-config-8.0.3.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dd4e449dae738b5df722dc199298f2a8 diff --git a/metadata/md5-cache/dev-python/oslo-config-8.3.3 b/metadata/md5-cache/dev-python/oslo-config-8.3.3 new file mode 100644 index 000000000000..76a34691c1eb --- /dev/null +++ b/metadata/md5-cache/dev-python/oslo-config-8.3.3 @@ -0,0 +1,15 @@ +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 ) >=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(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pbr-1.3[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=Oslo Configuration API +EAPI=7 +HOMEPAGE=https://launchpad.net/oslo +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pbr-1.3[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/debtcollector-1.2.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(-)] >=dev-python/netaddr-0.7.18[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/stevedore-1.20.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(-)] >=dev-python/oslo-i18n-3.15.3[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/rfc3986-1.2.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(-)] >=dev-python/pyyaml-3.12.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(-)] >=dev-python/requests-2.18.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(-)] dev-python/importlib_metadata[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(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +SLOT=0 +SRC_URI=mirror://pypi/o/oslo.config/oslo.config-8.3.3.tar.gz -> oslo-config-8.3.3.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a2f42acd80faacca74700eb5fbe70341 diff --git a/metadata/md5-cache/dev-python/oslo-context-2.22.1 b/metadata/md5-cache/dev-python/oslo-context-2.22.1 deleted file mode 100644 index 5c9f6d2dac53..000000000000 --- a/metadata/md5-cache/dev-python/oslo-context-2.22.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/fixtures-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslotest-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/coverage-4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/coverage-4.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stestr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/bandit-1.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) -DESCRIPTION=Helpers to maintain useful information about a request context -EAPI=7 -HOMEPAGE=https://pypi.org/project/oslo.context/ -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/debtcollector-1.2.0[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/o/oslo.context/oslo.context-2.22.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=216a00bbf9cf08590a47dc6f3b67040c diff --git a/metadata/md5-cache/dev-python/oslo-log-4.1.2 b/metadata/md5-cache/dev-python/oslo-log-4.1.2 deleted file mode 100644 index 24c1c0706f36..000000000000 --- a/metadata/md5-cache/dev-python/oslo-log-4.1.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/pbr-3.1.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=OpenStack logging config library, configuration for all openstack projects. -EAPI=7 -HOMEPAGE=https://pypi.org/project/oslo.log/ https://github.com/openstack/oslo.log -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-3.1.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-config-5.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-context-2.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.36.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-1.25.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/debtcollector-1.19.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyinotify-0.9.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-dateutil-2.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/monotonic-1.4[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/o/oslo.log/oslo.log-4.1.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=97a2509918e41174e913b91acd9d7405 diff --git a/metadata/md5-cache/dev-python/oslo-log-4.4.0 b/metadata/md5-cache/dev-python/oslo-log-4.4.0 index 3e97e69a73af..97c4d4ae6b33 100644 --- a/metadata/md5-cache/dev-python/oslo-log-4.4.0 +++ b/metadata/md5-cache/dev-python/oslo-log-4.4.0 @@ -5,11 +5,11 @@ DESCRIPTION=OpenStack logging config library, configuration for all openstack pr EAPI=7 HOMEPAGE=https://pypi.org/project/oslo.log/ https://github.com/openstack/oslo.log IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-3.1.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(-)] >=dev-python/oslo-config-5.2.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(-)] >=dev-python/oslo-context-2.20.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(-)] >=dev-python/oslo-i18n-3.20.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(-)] >=dev-python/oslo-utils-3.36.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(-)] >=dev-python/oslo-serialization-1.25.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(-)] >=dev-python/debtcollector-1.19.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(-)] >=dev-python/pyinotify-0.9.6[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-dateutil-2.7.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.log/oslo.log-4.4.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a850f5a93511dab36d431c64eb4541b1 +_md5_=289688ae4a9c2333591dbae12aa66b67 diff --git a/metadata/md5-cache/dev-python/oslo-serialization-3.1.1 b/metadata/md5-cache/dev-python/oslo-serialization-3.1.1 deleted file mode 100644 index e9f2e2b5cf00..000000000000 --- a/metadata/md5-cache/dev-python/oslo-serialization-3.1.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=Oslo Serialization library -EAPI=7 -HOMEPAGE=https://launchpad.net/oslo -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/msgpack-0.5.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pytz-2013.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.12[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/debtcollector-1.2.0[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=mirror://pypi/o/oslo.serialization/oslo.serialization-3.1.1.tar.gz -> oslo-serialization-3.1.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ca3d833d610d8a4c1848226f6fa6ec89 diff --git a/metadata/md5-cache/dev-python/oslo-serialization-4.0.1 b/metadata/md5-cache/dev-python/oslo-serialization-4.0.1 index b670306d6a71..e2c834d71487 100644 --- a/metadata/md5-cache/dev-python/oslo-serialization-4.0.1 +++ b/metadata/md5-cache/dev-python/oslo-serialization-4.0.1 @@ -5,11 +5,11 @@ DESCRIPTION=Oslo Serialization library EAPI=7 HOMEPAGE=https://launchpad.net/oslo IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.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(-)] >=dev-python/msgpack-0.5.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/oslo-utils-3.33.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(-)] >=dev-python/pytz-2013.6[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=mirror://pypi/o/oslo.serialization/oslo.serialization-4.0.1.tar.gz -> oslo-serialization-4.0.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=477963b4aa25a06e74e9216f9a2262aa +_md5_=cdfc9468c56d0d555af6041d847159be diff --git a/metadata/md5-cache/dev-python/oslo-utils-4.1.2 b/metadata/md5-cache/dev-python/oslo-utils-4.1.2 deleted file mode 100644 index 666c7a6becb3..000000000000 --- a/metadata/md5-cache/dev-python/oslo-utils-4.1.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/eventlet-0.18.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.18.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.20.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.21.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/eventlet-0.23.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/fixtures-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testscenarios-0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/testtools-2.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslotest-3.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ddt-1.0.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stestr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/coverage-4.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/coverage-4.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-config-5.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/bandit-1.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pytz-2013.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/netaddr-0.7.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/netifaces-0.10.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/debtcollector-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyparsing-2.1.0[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/o/oslo.utils/oslo.utils-4.1.2.tar.gz -> oslo-utils-4.1.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f4f2f491385be3f0549f37de9624b0c7 diff --git a/metadata/md5-cache/dev-python/osprofiler-2.6.0 b/metadata/md5-cache/dev-python/osprofiler-2.6.0 deleted file mode 100644 index 1df4790d84b5..000000000000 --- a/metadata/md5-cache/dev-python/osprofiler-2.6.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/pbr-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=OpenStack Profiler Library -EAPI=7 -HOMEPAGE=https://launchpad.net/osprofiler -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/netaddr-0.7.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-concurrency-3.26.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-2.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/prettytable-0.7.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/requests-2.14.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/webob-1.6.0[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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) -SLOT=0 -SRC_URI=mirror://pypi/o/osprofiler/osprofiler-2.6.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=623e7dd2c31570d6201f953d37b59ae9 diff --git a/metadata/md5-cache/dev-python/osprofiler-3.4.0 b/metadata/md5-cache/dev-python/osprofiler-3.4.0 index 37d067e1bdf8..de7a8f93d56c 100644 --- a/metadata/md5-cache/dev-python/osprofiler-3.4.0 +++ b/metadata/md5-cache/dev-python/osprofiler-3.4.0 @@ -5,11 +5,11 @@ DESCRIPTION=OpenStack Profiler Library EAPI=7 HOMEPAGE=https://launchpad.net/osprofiler IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/netaddr-0.7.18[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/oslo-concurrency-3.26.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(-)] >=dev-python/oslo-serialization-2.18.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(-)] >=dev-python/oslo-utils-3.16.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(-)] >=dev-python/prettytable-0.7.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/requests-2.14.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/six-1.10.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(-)] >=dev-python/webob-1.6.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(-)] >=dev-python/importlib_metadata-1.7.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/o/osprofiler/osprofiler-3.4.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=58f3d8dff65dbab0a1a8a9c5dbcb2166 +_md5_=8a9a44febd91cbfcae70568f2ba70da9 diff --git a/metadata/md5-cache/dev-python/owslib-0.17.1-r1 b/metadata/md5-cache/dev-python/owslib-0.17.1-r1 deleted file mode 100644 index 8c604c777eed..000000000000 --- a/metadata/md5-cache/dev-python/owslib-0.17.1-r1 +++ /dev/null @@ -1,16 +0,0 @@ -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 ) >=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(-)] -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(-)] test? ( dev-python/pillow[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/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(-)] ) -DESCRIPTION=Library for client programming with Open Geospatial Consortium web service -EAPI=7 -HOMEPAGE=https://geopython.github.io/OWSLib -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=dev-python/pyproj[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-dateutil[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/pytz[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/requests[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/lxml[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 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/geopython/owslib/archive/0.17.1.tar.gz -> owslib-0.17.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=695c8189e5b0134c4920d8c70bc3b2f7 diff --git a/metadata/md5-cache/dev-python/owslib-0.20.0 b/metadata/md5-cache/dev-python/owslib-0.20.0 index e4cf3b3b9604..3a0f15704c6c 100644 --- a/metadata/md5-cache/dev-python/owslib-0.20.0 +++ b/metadata/md5-cache/dev-python/owslib-0.20.0 @@ -5,7 +5,7 @@ DESCRIPTION=Library for client programming with Open Geospatial Consortium web s EAPI=7 HOMEPAGE=https://geopython.github.io/OWSLib IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=dev-python/lxml[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/pyproj[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/python-dateutil[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/pytz[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/pyyaml[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/requests[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(-)] 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_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -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 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=200865a6ca55c29bc0a952795164400a +_md5_=af201eac9666b2c6a30ec370ebd0564e diff --git a/metadata/md5-cache/dev-python/pandas-1.0.5 b/metadata/md5-cache/dev-python/pandas-1.0.5 deleted file mode 100644 index 27a0dc1fb491..000000000000 --- a/metadata/md5-cache/dev-python/pandas-1.0.5 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>dev-python/numpy-1.13.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/python-dateutil[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/pytz[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[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/cython-0.29.20-r1[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? ( x11-base/xorg-server[xvfb] x11-apps/xhost app-text/pandoc dev-python/beautifulsoup: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/html5lib[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/ipython[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/lxml[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/matplotlib[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/nbsphinx[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/numpydoc-0.9.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/openpyxl-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(-)] >=dev-python/pytables-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/pytz[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/rpy[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/xlrd[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/xlwt[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/scipy[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-misc/xclip ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost >=dev-python/bottleneck-1.2.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/numexpr-2.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/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) dev-python/beautifulsoup: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/hypothesis[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/nose[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/pymysql[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[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-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(-)] dev-python/psycopg: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-misc/xclip x11-misc/xsel ) -DESCRIPTION=Powerful data structures for data analysis and statistics -EAPI=7 -HOMEPAGE=https://pandas.pydata.org/ -IUSE=doc full-support minimal test X python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=>dev-python/numpy-1.13.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/python-dateutil[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/pytz[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(-)] !minimal? ( >=dev-python/bottleneck-1.2.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/numexpr-2.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(-)] ) full-support? ( dev-python/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) ) 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(-)] -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/p/pandas/pandas-1.0.5.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=21275bdbe5951d99ac3c0308ebd55328 diff --git a/metadata/md5-cache/dev-python/pandas-1.1.2 b/metadata/md5-cache/dev-python/pandas-1.1.2-r1 similarity index 70% rename from metadata/md5-cache/dev-python/pandas-1.1.2 rename to metadata/md5-cache/dev-python/pandas-1.1.2-r1 index 528ed21f5458..349e33d6fbcb 100644 --- a/metadata/md5-cache/dev-python/pandas-1.1.2 +++ b/metadata/md5-cache/dev-python/pandas-1.1.2-r1 @@ -1,16 +1,16 @@ BDEPEND=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(-)] DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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/cython-0.29.20-r1[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? ( x11-base/xorg-server[xvfb] x11-apps/xhost app-text/pandoc dev-python/beautifulsoup: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/html5lib[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/ipython[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/lxml[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/matplotlib[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/nbsphinx[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/numpydoc-0.9.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/openpyxl-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(-)] >=dev-python/pytables-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/pytz[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/rpy[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/xlrd[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/xlwt[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/scipy[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-misc/xclip ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost >=dev-python/bottleneck-1.2.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/numexpr-2.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/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) dev-python/beautifulsoup: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/hypothesis[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/nose[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/openpyxl[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/pymysql[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[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-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(-)] dev-python/pytest-xdist[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/psycopg: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/xlsxwriter[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-misc/xclip x11-misc/xsel ) +DEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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/cython-0.29.20-r1[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? ( x11-base/xorg-server[xvfb] x11-apps/xhost app-text/pandoc dev-python/beautifulsoup: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/html5lib[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/ipython[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/lxml[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/matplotlib[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/nbsphinx[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/numpydoc-0.9.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/openpyxl-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(-)] >=dev-python/pytables-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/pytz[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/rpy[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/xlrd[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/xlwt[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/scipy[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-misc/xclip ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost >=dev-python/bottleneck-1.2.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/numexpr-2.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/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) dev-python/beautifulsoup: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/hypothesis[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/nose[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/openpyxl[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/pymysql[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[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-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(-)] dev-python/pytest-xdist[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/psycopg: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/xlsxwriter[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-misc/xclip x11-misc/xsel ) DESCRIPTION=Powerful data structures for data analysis and statistics EAPI=7 HOMEPAGE=https://pandas.pydata.org/ IUSE=doc full-support minimal test X python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=BSD -RDEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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(-)] !minimal? ( >=dev-python/bottleneck-1.2.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/numexpr-2.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(-)] ) full-support? ( dev-python/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) ) 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(-)] +RDEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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(-)] !minimal? ( >=dev-python/bottleneck-1.2.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/numexpr-2.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(-)] ) full-support? ( dev-python/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) ) 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(-)] 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/p/pandas/pandas-1.1.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=78346f5387a86fc48182f1a992b3cb61 +_md5_=66230578c243f2817ac434360fc60664 diff --git a/metadata/md5-cache/dev-python/pandas-1.1.4 b/metadata/md5-cache/dev-python/pandas-1.1.4-r1 similarity index 69% rename from metadata/md5-cache/dev-python/pandas-1.1.4 rename to metadata/md5-cache/dev-python/pandas-1.1.4-r1 index addbd6731329..cc3cf7f044e0 100644 --- a/metadata/md5-cache/dev-python/pandas-1.1.4 +++ b/metadata/md5-cache/dev-python/pandas-1.1.4-r1 @@ -1,16 +1,16 @@ BDEPEND=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(-)] DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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/cython-0.29.21[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? ( x11-base/xorg-server[xvfb] x11-apps/xhost app-text/pandoc dev-python/beautifulsoup: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/html5lib[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/ipython[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/lxml[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/matplotlib[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/nbsphinx[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/numpydoc-0.9.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/openpyxl-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(-)] >=dev-python/pytables-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/pytz[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/rpy[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/xlrd[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/xlwt[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/scipy[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-misc/xclip ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost >=dev-python/bottleneck-1.2.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/numexpr-2.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/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) dev-python/beautifulsoup: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/hypothesis[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/nose[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/openpyxl[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/pymysql[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[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-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(-)] dev-python/pytest-xdist[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/psycopg: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/xlsxwriter[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-misc/xclip x11-misc/xsel ) +DEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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/cython-0.29.21[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? ( x11-base/xorg-server[xvfb] x11-apps/xhost app-text/pandoc dev-python/beautifulsoup: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/html5lib[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/ipython[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/lxml[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/matplotlib[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/nbsphinx[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/numpydoc-0.9.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/openpyxl-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(-)] >=dev-python/pytables-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/pytz[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/rpy[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/xlrd[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/xlwt[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/scipy[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-misc/xclip ) test? ( x11-base/xorg-server[xvfb] x11-apps/xhost >=dev-python/bottleneck-1.2.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/numexpr-2.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/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) dev-python/beautifulsoup: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/hypothesis[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/nose[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/openpyxl[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/pymysql[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[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-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(-)] dev-python/pytest-xdist[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/psycopg: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/xlsxwriter[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-misc/xclip x11-misc/xsel ) DESCRIPTION=Powerful data structures for data analysis and statistics EAPI=7 HOMEPAGE=https://pandas.pydata.org/ IUSE=doc full-support minimal test X python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=BSD -RDEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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(-)] !minimal? ( >=dev-python/bottleneck-1.2.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/numexpr-2.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(-)] ) full-support? ( dev-python/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/s3fs[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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) ) 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(-)] +RDEPEND=>dev-python/numpy-1.15.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/python-dateutil[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/pytz[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(-)] !minimal? ( >=dev-python/bottleneck-1.2.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/numexpr-2.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(-)] ) full-support? ( dev-python/beautifulsoup: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/blosc[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/html5lib[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/lxml[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/jinja[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/matplotlib[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/openpyxl[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/xlsxwriter[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/pytables-3.2.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/statsmodels[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/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/xarray-0.10.8[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/sqlalchemy-0.8.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/xlrd-1.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/xlwt[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/scipy-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(-)] X? ( || ( dev-python/PyQt5[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-misc/xclip x11-misc/xsel ) ) ) 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(-)] 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/p/pandas/pandas-1.1.4.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=58542788c0c4511643d874ab75a9d7ba +_md5_=102d8cd5b0d30538dec09d89dc4735cf diff --git a/metadata/md5-cache/dev-python/pbr-5.5.0-r1 b/metadata/md5-cache/dev-python/pbr-5.5.0-r1 index 3f76e1f293a8..4f36fb38797e 100644 --- a/metadata/md5-cache/dev-python/pbr-5.5.0-r1 +++ b/metadata/md5-cache/dev-python/pbr-5.5.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Inject some useful and sensible default behaviors into setuptools EAPI=7 HOMEPAGE=https://github.com/openstack-dev/pbr 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 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux LICENSE=Apache-2.0 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(-)] >=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=mirror://pypi/p/pbr/pbr-5.5.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f2d10a1bfe05e4f774b66df0f13dd83b +_md5_=7cb4ed25150f26b3a4abd71c5634bc49 diff --git a/metadata/md5-cache/dev-python/pillow-6.2.2 b/metadata/md5-cache/dev-python/pillow-6.2.2 deleted file mode 100644 index ea3ce814993f..000000000000 --- a/metadata/md5-cache/dev-python/pillow-6.2.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=doc? ( || ( ( dev-lang/python:3.9[tk?,threads(+)] dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8[tk?,threads(+)] dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7[tk?,threads(+)] dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6[tk?,threads(+)] dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7[tk?,threads(+)] dev-python/sphinx[python_targets_python2_7(-),python_single_target_python2_7(+)] dev-python/sphinx_rtd_theme[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[tk?,threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[tk?,threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[tk?,threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[tk?,threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[tk?,threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-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=dev-python/olefile[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] imagequant? ( media-gfx/libimagequant:0 ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) lcms? ( media-libs/lcms:2= ) tiff? ( media-libs/tiff:0=[jpeg,zlib] ) truetype? ( media-libs/freetype:2= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DESCRIPTION=Python Imaging Library (fork) -EAPI=7 -HOMEPAGE=https://python-pillow.org/ -IUSE=examples imagequant jpeg jpeg2k lcms tiff tk truetype webp zlib doc python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux -LICENSE=HPND -RDEPEND=dev-python/olefile[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] imagequant? ( media-gfx/libimagequant:0 ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) lcms? ( media-libs/lcms:2= ) tiff? ( media-libs/tiff:0=[jpeg,zlib] ) truetype? ( media-libs/freetype:2= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[tk?,threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[tk?,threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[tk?,threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[tk?,threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[tk?,threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/python-pillow/Pillow/archive/6.2.2.tar.gz -> pillow-6.2.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ed6301569a0e708c9f3ed17032f893a6 diff --git a/metadata/md5-cache/dev-python/prettytable-2.0.0 b/metadata/md5-cache/dev-python/prettytable-2.0.0 new file mode 100644 index 000000000000..8370df3e2b99 --- /dev/null +++ b/metadata/md5-cache/dev-python/prettytable-2.0.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[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? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[sqlite] ) 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] ) ) test? ( dev-python/wcwidth[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-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=Easily displaying tabular data in a visually appealing ASCII table format +EAPI=7 +HOMEPAGE=https://github.com/jazzband/prettytable https://pypi.org/project/prettytable +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=dev-python/wcwidth[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(-)] +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/p/prettytable/prettytable-2.0.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=cd596e2cc29ac341293c4d3cbb2bee0e diff --git a/metadata/md5-cache/dev-python/pyClamd-0.4.0-r2 b/metadata/md5-cache/dev-python/pyClamd-0.4.0-r2 index 27d306f33b29..a68471356f70 100644 --- a/metadata/md5-cache/dev-python/pyClamd-0.4.0-r2 +++ b/metadata/md5-cache/dev-python/pyClamd-0.4.0-r2 @@ -5,11 +5,11 @@ DESCRIPTION=python interface to Clamd (Clamav daemon) EAPI=7 HOMEPAGE=https://xael.org/pages/pyclamd-en.html IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=LGPL-3 RDEPEND=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(-)] 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/pyClamd/pyClamd-0.4.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7721542178a5c608b02d713c71e82e00 +_md5_=9d314dc8753671125ac47dc777aa0784 diff --git a/metadata/md5-cache/dev-python/pydispatcher-2.1.2 b/metadata/md5-cache/dev-python/pydispatcher-2.1.2 index 06fc7dc7ce33..a194ab9df5f9 100644 --- a/metadata/md5-cache/dev-python/pydispatcher-2.1.2 +++ b/metadata/md5-cache/dev-python/pydispatcher-2.1.2 @@ -1,14 +1,14 @@ 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(-)] 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(-)] +DEPEND=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(-)] DESCRIPTION=Multi-producer-multi-consumer signal dispatching mechanism EAPI=6 HOMEPAGE=https://github.com/scrapy/pypydispatcher https://pypi.org/project/PyPyDispatcher/ -IUSE=doc python_targets_python3_6 python_targets_python3_7 +IUSE=doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~ia64 ~ppc ~x86 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 ) +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/P/PyPyDispatcher/PyPyDispatcher-2.1.2.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1087e8842874547beaf1422a31e7947e +_md5_=6b420f3472261c7342f90b28150bcced diff --git a/metadata/md5-cache/dev-python/pyfakefs-4.3.0 b/metadata/md5-cache/dev-python/pyfakefs-4.3.0 new file mode 100644 index 000000000000..2344b8f70273 --- /dev/null +++ b/metadata/md5-cache/dev-python/pyfakefs-4.3.0 @@ -0,0 +1,15 @@ +BDEPEND=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 fake file system that mocks the Python file system modules +EAPI=7 +HOMEPAGE=https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/ +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 +LICENSE=Apache-2.0 +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 ) +SLOT=0 +SRC_URI=https://github.com/jmcgeheeiv/pyfakefs/archive/v4.3.0.tar.gz -> pyfakefs-4.3.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=d38052ba111a2ed277aa999a81850359 diff --git a/metadata/md5-cache/dev-python/pyglet-1.5.8 b/metadata/md5-cache/dev-python/pyglet-1.5.11 similarity index 97% rename from metadata/md5-cache/dev-python/pyglet-1.5.8 rename to metadata/md5-cache/dev-python/pyglet-1.5.11 index 439871e77c6b..eb90c8e9cc44 100644 --- a/metadata/md5-cache/dev-python/pyglet-1.5.8 +++ b/metadata/md5-cache/dev-python/pyglet-1.5.11 @@ -10,6 +10,6 @@ RDEPEND=virtual/glu virtual/opengl image? ( || ( dev-python/pillow[python_target REQUIRED_USE=|| ( 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/pyglet/pyglet/archive/v1.5.8.tar.gz -> pyglet-1.5.8.tar.gz +SRC_URI=https://github.com/pyglet/pyglet/archive/v1.5.11.tar.gz -> pyglet-1.5.11.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=d487805a80479b0c288f78904cb65e72 diff --git a/metadata/md5-cache/dev-python/pyglet-1.5.9 b/metadata/md5-cache/dev-python/pyglet-1.5.9 deleted file mode 100644 index b3c3b0e76305..000000000000 --- a/metadata/md5-cache/dev-python/pyglet-1.5.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( 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/gst-python[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(-)] ) test? ( virtual/glu virtual/opengl image? ( || ( 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(-)] x11-libs/gtk+:2 ) ) sound? ( || ( media-libs/openal media-sound/pulseaudio ) ) >=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(-)] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Cross-platform windowing and multimedia library for Python -EAPI=7 -HOMEPAGE=http://www.pyglet.org/ -IUSE=examples image +sound test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=virtual/glu virtual/opengl image? ( || ( 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(-)] x11-libs/gtk+:2 ) ) sound? ( || ( media-libs/openal media-sound/pulseaudio ) ) 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 ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pyglet/pyglet/archive/v1.5.9.tar.gz -> pyglet-1.5.9.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d487805a80479b0c288f78904cb65e72 diff --git a/metadata/md5-cache/dev-python/pykka-2.0.2 b/metadata/md5-cache/dev-python/pykka-2.0.2 index cd7917566d25..f562079e5694 100644 --- a/metadata/md5-cache/dev-python/pykka-2.0.2 +++ b/metadata/md5-cache/dev-python/pykka-2.0.2 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/eventlet[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/gevent[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pytest-mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( >=dev-python/pytest-4.5.0[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(-)] +BDEPEND=test? ( dev-python/eventlet[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/gevent[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-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(-)] ) 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 Python implementation of the actor model EAPI=7 HOMEPAGE=https://www.pykka.org/en/latest/ https://github.com/jodal/pykka -IUSE=test python_targets_python3_6 python_targets_python3_7 +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=Apache-2.0 -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 ) +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/P/Pykka/Pykka-2.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a16ec0caf3af498bc49e32fe70bc10a3 +_md5_=bc367478a765dc445dd907c0274fa64b diff --git a/metadata/md5-cache/dev-python/pykwalify-1.7.0 b/metadata/md5-cache/dev-python/pykwalify-1.7.0 index 5efbd694306b..1cd16c1a68cb 100644 --- a/metadata/md5-cache/dev-python/pykwalify-1.7.0 +++ b/metadata/md5-cache/dev-python/pykwalify-1.7.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( >=dev-python/docopt-0.6.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/pyyaml-3.11[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-dateutil-2.4.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/pytest-4.5.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(-)] >=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(-)] +BDEPEND=test? ( >=dev-python/docopt-0.6.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/pyyaml-3.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/python-dateutil-2.4.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/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 -DEPEND=test? ( dev-python/testfixtures[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(-)] ) +DEPEND=test? ( dev-python/testfixtures[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=Python lib/cli for JSON/YAML schema validation EAPI=7 HOMEPAGE=https://pypi.org/project/pykwalify/ https://github.com/Grokzen/pykwalify -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=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=>=dev-python/docopt-0.6.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/pyyaml-3.11[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-dateutil-2.4.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(-)] 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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=>=dev-python/docopt-0.6.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/pyyaml-3.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/python-dateutil-2.4.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(-)] 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 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pykwalify/pykwalify-1.7.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=32b10625c2b9124e1f19c4f5f5fe1645 +_md5_=e51b27fa5e95c553267efddeea5ce347 diff --git a/metadata/md5-cache/dev-python/pykwalify-9999 b/metadata/md5-cache/dev-python/pykwalify-9999 deleted file mode 100644 index 3184a0381719..000000000000 --- a/metadata/md5-cache/dev-python/pykwalify-9999 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/docopt-0.6.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-dateutil-2.4.2[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/pytest[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/testfixtures[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) -DESCRIPTION=Python lib/cli for JSON/YAML schema validation -EAPI=7 -HOMEPAGE=https://pypi.org/project/pykwalify/ https://github.com/Grokzen/pykwalify -IUSE=test python_targets_python3_6 python_targets_python3_7 -LICENSE=MIT -PROPERTIES=live -RDEPEND=>=dev-python/docopt-0.6.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-dateutil-2.4.2[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(-)] 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 ) -RESTRICT=!test? ( test ) -SLOT=0 -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4ba75d6d0d0ad03548eb47f36bb9abb9 diff --git a/metadata/md5-cache/dev-python/pymediainfo-4.2.1 b/metadata/md5-cache/dev-python/pymediainfo-5.0.2 similarity index 97% rename from metadata/md5-cache/dev-python/pymediainfo-4.2.1 rename to metadata/md5-cache/dev-python/pymediainfo-5.0.2 index 3fe17a729756..d3e614b5c707 100644 --- a/metadata/md5-cache/dev-python/pymediainfo-4.2.1 +++ b/metadata/md5-cache/dev-python/pymediainfo-5.0.2 @@ -10,6 +10,6 @@ RDEPEND=media-libs/libmediainfo python_targets_pypy3? ( >=dev-python/pypy3-7.3.0 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/p/pymediainfo/pymediainfo-4.2.1.tar.gz +SRC_URI=mirror://pypi/p/pymediainfo/pymediainfo-5.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0e218a32c09911258da1694ddc2e1876 +_md5_=f725db484c85a2686aa78b5b4161ff0f diff --git a/metadata/md5-cache/dev-python/pyproj-2.4.2-r1 b/metadata/md5-cache/dev-python/pyproj-2.4.2-r1 deleted file mode 100644 index 0ae01280f438..000000000000 --- a/metadata/md5-cache/dev-python/pyproj-2.4.2-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] dev-python/numpy[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(-)] sci-libs/shapely[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-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=sci-libs/proj-6.2.0:= >=dev-python/pytest-4.5.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(-)] >=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sci-libs/proj-6.2.0:= 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(-)] -DESCRIPTION=Python interface to the PROJ library -EAPI=7 -HOMEPAGE=https://github.com/pyproj4/pyproj -IUSE=doc doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 x86 ~amd64-linux -LICENSE=MIT -RDEPEND=>=sci-libs/proj-6.2.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 ) >=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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pyproj/pyproj-2.4.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1356986773a4c0855b5c30a2744db0a7 diff --git a/metadata/md5-cache/dev-python/pyproj-2.6.1_p1 b/metadata/md5-cache/dev-python/pyproj-2.6.1_p1 index ee1ece1f23f6..9daa07e783c1 100644 --- a/metadata/md5-cache/dev-python/pyproj-2.6.1_p1 +++ b/metadata/md5-cache/dev-python/pyproj-2.6.1_p1 @@ -5,7 +5,7 @@ DESCRIPTION=Python interface to the PROJ library EAPI=7 HOMEPAGE=https://github.com/pyproj4/pyproj IUSE=doc doc test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 x86 ~amd64-linux +KEYWORDS=amd64 x86 ~amd64-linux LICENSE=MIT RDEPEND=>=sci-libs/proj-6.2.0:= 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_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( 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/p/pyproj/pyproj-2.6.1.post1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ece2ba832a3013216f5e5969a8f4e946 +_md5_=c58714680ebc89e6884c49665da25065 diff --git a/metadata/md5-cache/dev-python/pytest-6.0.2 b/metadata/md5-cache/dev-python/pytest-6.0.2 index 11b76bc97cb3..a5d1caaebbc0 100644 --- a/metadata/md5-cache/dev-python/pytest-6.0.2 +++ b/metadata/md5-cache/dev-python/pytest-6.0.2 @@ -5,7 +5,7 @@ DESCRIPTION=Simple powerful testing with Python EAPI=7 HOMEPAGE=https://pytest.org/ 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 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=>=dev-python/attrs-17.4.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/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) dev-python/iniconfig[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/more-itertools-4.0.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/packaging[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/pluggy-0.12[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/py-1.8.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/toml[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(-)] 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=mirror://pypi/p/pytest/pytest-6.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d5022cf744bcd8bea94eab6338784c49 +_md5_=f0eeb6fa883a3dd9180ac26eae851cba diff --git a/metadata/md5-cache/dev-python/pytest-cov-2.8.1 b/metadata/md5-cache/dev-python/pytest-cov-2.8.1 index da6bbabcf37b..7ff8c1606304 100644 --- a/metadata/md5-cache/dev-python/pytest-cov-2.8.1 +++ b/metadata/md5-cache/dev-python/pytest-cov-2.8.1 @@ -5,7 +5,7 @@ DESCRIPTION=py.test plugin for coverage reporting EAPI=7 HOMEPAGE=https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/ IUSE=test 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 ~mips ppc ppc64 ~riscv s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 LICENSE=MIT RDEPEND=>=dev-python/py-1.4.22[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-3.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(-)] >=dev-python/coverage-4.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(-)] 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(-)] 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=mirror://pypi/p/pytest-cov/pytest-cov-2.8.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=accc5ef6a4afd173c0cbc2be15fdbc88 +_md5_=5d3d5c42e8c11656ed5574f634f3ab2a diff --git a/metadata/md5-cache/dev-python/pytest-rerunfailures-8.0 b/metadata/md5-cache/dev-python/pytest-rerunfailures-8.0 deleted file mode 100644 index 67ed5f784703..000000000000 --- a/metadata/md5-cache/dev-python/pytest-rerunfailures-8.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( =dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=pytest plugin to re-run tests to eliminate flaky failures -EAPI=7 -HOMEPAGE=https://pypi.org/project/pytest-rerunfailures/ -IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux -LICENSE=MPL-2.0 -RDEPEND==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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pytest-rerunfailures/pytest-rerunfailures-8.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=46fac74369dc899cfd8ee8bc8f74bb85 diff --git a/metadata/md5-cache/dev-python/pytest-timeout-1.4.2-r1 b/metadata/md5-cache/dev-python/pytest-timeout-1.4.2-r1 index 51af24e59923..982861a56470 100644 --- a/metadata/md5-cache/dev-python/pytest-timeout-1.4.2-r1 +++ b/metadata/md5-cache/dev-python/pytest-timeout-1.4.2-r1 @@ -1,4 +1,4 @@ -BDEPEND=test? ( 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(-)] python_targets_pypy3? ( dev-python/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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_6? ( dev-python/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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(-)] ) ) 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(-)] +BDEPEND=test? ( 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(-)] !hppa? ( python_targets_pypy3? ( dev-python/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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_6? ( dev-python/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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/pytest-cov[python_targets_pypy3(-)?,-python_single_target_pypy3(-),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(-)] ) ) ) 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=py.test plugin to abort hanging tests EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-timeout/pytest-timeout-1.4.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=14aac83fd53861e73a3779617c6b790b +_md5_=b6917a122e5d254bc829a64b67f59c4a diff --git a/metadata/md5-cache/dev-python/pytest-xvfb-2.0.0 b/metadata/md5-cache/dev-python/pytest-xvfb-2.0.0 index 89ac834c4ce6..5e07221fb4cf 100644 --- a/metadata/md5-cache/dev-python/pytest-xvfb-2.0.0 +++ b/metadata/md5-cache/dev-python/pytest-xvfb-2.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=A pytest plugin to run Xvfb for tests EAPI=7 HOMEPAGE=https://pypi.org/project/pytest-xvfb/ IUSE=test python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 x86 LICENSE=MIT RDEPEND=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(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/The-Compiler/pytest-xvfb/archive/v2.0.0.tar.gz -> pytest-xvfb-2.0.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3a8e323c0fc5a891646efef709e9328c +_md5_=2f1a2b91344186834bb0a3d914e59639 diff --git a/metadata/md5-cache/dev-python/python-blazarclient-2.1.0 b/metadata/md5-cache/dev-python/python-blazarclient-2.1.0 deleted file mode 100644 index 19e5eb1a2ec8..000000000000 --- a/metadata/md5-cache/dev-python/python-blazarclient-2.1.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=This is a client for the OpenStack Blazar API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-blazarclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/cliff-2.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/cliff-2.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/prettytable-0.7.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/Babel-2.3.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/Babel-2.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-log-3.36.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.4.0[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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-blazarclient/python-blazarclient-2.1.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=445e9197efe9f13c7114d80b608618b0 diff --git a/metadata/md5-cache/dev-python/python-blazarclient-3.1.1 b/metadata/md5-cache/dev-python/python-blazarclient-3.1.1 index 856b9d6464f6..40b8448b9c07 100644 --- a/metadata/md5-cache/dev-python/python-blazarclient-3.1.1 +++ b/metadata/md5-cache/dev-python/python-blazarclient-3.1.1 @@ -5,11 +5,11 @@ DESCRIPTION=This is a client for the OpenStack Blazar API EAPI=7 HOMEPAGE=https://github.com/openstack/python-blazarclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/cliff-2.8.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(-)] !~dev-python/cliff-2.9.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(-)] >=dev-python/prettytable-0.7.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/six-1.10.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(-)] >=dev-python/Babel-2.3.4[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/Babel-2.4.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-log-3.36.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(-)] >=dev-python/oslo-utils-3.33.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(-)] >=dev-python/keystoneauth-3.4.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-blazarclient/python-blazarclient-3.1.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=18ff0911970e5f7545664eeef75ff237 +_md5_=5a6d68602bc346161d92e539a74f2394 diff --git a/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.2-r2 b/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.2-r2 deleted file mode 100644 index 48a6b3101826..000000000000 --- a/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.2-r2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-1.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=This is a client library for Ceilometer built on the Ceilometer API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-ceilometerclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-2.1.0 >=dev-python/oslo-i18n-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/prettytable-0.7[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/requests-2.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.10.0[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=mirror://pypi/p/python-ceilometerclient/python-ceilometerclient-2.6.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=972a30e8ca64451801a65a3dfbf20568 diff --git a/metadata/md5-cache/dev-python/python-ceilometerclient-2.9.0 b/metadata/md5-cache/dev-python/python-ceilometerclient-2.9.0 index 31580564b562..d0009f18624f 100644 --- a/metadata/md5-cache/dev-python/python-ceilometerclient-2.9.0 +++ b/metadata/md5-cache/dev-python/python-ceilometerclient-2.9.0 @@ -5,11 +5,11 @@ DESCRIPTION=This is a client library for Ceilometer built on the Ceilometer API EAPI=7 HOMEPAGE=https://github.com/openstack/python-ceilometerclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[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/iso8601-0.1.11[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/keystoneauth-2.1.0 >=dev-python/oslo-i18n-2.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(-)] >=dev-python/oslo-serialization-1.10.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(-)] >=dev-python/oslo-utils-3.17.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(-)] >=dev-python/prettytable-0.7[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/requests-2.10.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(-)] >=dev-python/six-1.9.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(-)] >=dev-python/stevedore-1.10.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ceilometerclient/python-ceilometerclient-2.9.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=51830077f9bed6b11472ae893e495395 +_md5_=6be096e615a619ed25af0f40ee00e380 diff --git a/metadata/md5-cache/dev-python/python-cinderclient-4.2.2 b/metadata/md5-cache/dev-python/python-cinderclient-4.2.2 deleted file mode 100644 index 38d3d48c7ba2..000000000000 --- a/metadata/md5-cache/dev-python/python-cinderclient-4.2.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A client for the OpenStack Cinder API -EAPI=7 -HOMEPAGE=https://launchpad.net/python-cinderclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/prettytable-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/simplejson-3.5.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/Babel-2.3.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/Babel-2.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[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=mirror://pypi/p/python-cinderclient/python-cinderclient-4.2.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8e3b50fec941cc7d8a759820990bdc51 diff --git a/metadata/md5-cache/dev-python/python-cinderclient-7.2.0 b/metadata/md5-cache/dev-python/python-cinderclient-7.2.0 index 2068b3638ceb..043e69fdbdbd 100644 --- a/metadata/md5-cache/dev-python/python-cinderclient-7.2.0 +++ b/metadata/md5-cache/dev-python/python-cinderclient-7.2.0 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Cinder API EAPI=7 HOMEPAGE=https://launchpad.net/python-cinderclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/prettytable-0.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(-)] =dev-python/keystoneauth-3.4.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(-)] >=dev-python/simplejson-3.5.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(-)] >=dev-python/six-1.10.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-utils-3.33.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(-)] >=dev-python/requests-2.14.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/requests-2.20.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(-)] >=dev-python/stevedore-1.20.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-cinderclient/python-cinderclient-7.2.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=44882d80defbc1287c5a1080cac8c8e9 +_md5_=79cd84161b5dac6349e1a1d0eecc2e4b diff --git a/metadata/md5-cache/dev-python/python-glanceclient-2.17.1 b/metadata/md5-cache/dev-python/python-glanceclient-2.17.1 deleted file mode 100644 index fce27720241b..000000000000 --- a/metadata/md5-cache/dev-python/python-glanceclient-2.17.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A client for the OpenStack Glance API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-glanceclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/prettytable-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/keystoneauth-3.6.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.14.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/warlock-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/wrapt-1.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyopenssl-17.1.0[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=mirror://pypi/p/python-glanceclient/python-glanceclient-2.17.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ff333102939ad5212e4bbd420fab53f0 diff --git a/metadata/md5-cache/dev-python/python-glanceclient-3.2.2 b/metadata/md5-cache/dev-python/python-glanceclient-3.2.2 index 3d17a0b3f701..95fab0e6e2a0 100644 --- a/metadata/md5-cache/dev-python/python-glanceclient-3.2.2 +++ b/metadata/md5-cache/dev-python/python-glanceclient-3.2.2 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Glance API EAPI=7 HOMEPAGE=https://github.com/openstack/python-glanceclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/prettytable-0.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(-)] =dev-python/keystoneauth-3.6.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/requests-2.14.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/warlock-1.2.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(-)] =dev-python/oslo-utils-3.33.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(-)] >=dev-python/oslo-i18n-3.15.3[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/wrapt-1.7.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(-)] >=dev-python/pyopenssl-17.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-glanceclient/python-glanceclient-3.2.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=29698efa4904c1839609eb9500350af3 +_md5_=178661d792532c8f99bca772e6362524 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-4.0.0 b/metadata/md5-cache/dev-python/python-keystoneclient-4.0.0 deleted file mode 100644 index b05e35bf2904..000000000000 --- a/metadata/md5-cache/dev-python/python-keystoneclient-4.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=Client Library for OpenStack Identity -EAPI=7 -HOMEPAGE=https://www.openstack.org/ -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/debtcollector-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-config-5.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-1.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.14.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[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 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-4.0.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=5fe335a2682345565724981359d6c4e3 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-4.1.1 b/metadata/md5-cache/dev-python/python-keystoneclient-4.1.1 index ba1ce958e7ca..617b35306a2e 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-4.1.1 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-4.1.1 @@ -5,11 +5,11 @@ DESCRIPTION=Client Library for OpenStack Identity EAPI=7 HOMEPAGE=https://www.openstack.org/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/debtcollector-1.2.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(-)] >=dev-python/keystoneauth-3.4.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(-)] >=dev-python/oslo-config-5.2.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-serialization-1.18.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(-)] !~dev-python/oslo-serialization-2.19.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(-)] >=dev-python/oslo-utils-3.33.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(-)] >=dev-python/requests-2.14.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/six-1.10.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(-)] >=dev-python/stevedore-1.20.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-4.1.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=99458b8f752b9c025851455737a82266 +_md5_=b375fb9f575691caa9d73ba83afa9a95 diff --git a/metadata/md5-cache/dev-python/python-ldap-3.2.0 b/metadata/md5-cache/dev-python/python-ldap-3.2.0 deleted file mode 100644 index 1643b80fb27d..000000000000 --- a/metadata/md5-cache/dev-python/python-ldap-3.2.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>net-nds/openldap-2.4.11:=[sasl?,ssl?] sasl? ( >=dev-libs/cyrus-sasl-2.1 ) test? ( !dev-python/pyldap >=dev-python/pyasn1-0.3.7[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pyasn1-modules-0.1.5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >net-nds/openldap-2.4.11:=[sasl?,ssl?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) doc? ( || ( ( 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(+)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) 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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Various LDAP-related Python modules -EAPI=7 -HOMEPAGE=https://www.python-ldap.org/en/latest/ https://pypi.org/project/python-ldap/ https://github.com/python-ldap/python-ldap -IUSE=examples sasl ssl test doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-solaris -LICENSE=PSF-2 -RDEPEND=!dev-python/pyldap >=dev-python/pyasn1-0.3.7[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pyasn1-modules-0.1.5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >net-nds/openldap-2.4.11:=[sasl?,ssl?] 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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-ldap/python-ldap-3.2.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=297212d839ad369fef219d4b94482025 diff --git a/metadata/md5-cache/dev-python/python-magnumclient-2.12.0 b/metadata/md5-cache/dev-python/python-magnumclient-2.12.0 deleted file mode 100644 index cd223d0a8568..000000000000 --- a/metadata/md5-cache/dev-python/python-magnumclient-2.12.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=A client for the OpenStack Magnum API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-magnumclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/Babel-2.3.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/Babel-2.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.14.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-log-3.36.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-2.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-client-config-1.28.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osc-lib-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/prettytable-0.7.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/cryptography-2.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/decorator-3.4.0[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=mirror://pypi/p/python-magnumclient/python-magnumclient-2.12.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b217d7e9e3a075d73a98197221c7973f diff --git a/metadata/md5-cache/dev-python/python-magnumclient-3.2.1 b/metadata/md5-cache/dev-python/python-magnumclient-3.2.1 index 2793037fec70..bd4a436246ef 100644 --- a/metadata/md5-cache/dev-python/python-magnumclient-3.2.1 +++ b/metadata/md5-cache/dev-python/python-magnumclient-3.2.1 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Magnum API EAPI=7 HOMEPAGE=https://github.com/openstack/python-magnumclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.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(-)] >=dev-python/Babel-2.3.4[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/Babel-2.4.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(-)] >=dev-python/keystoneauth-3.4.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(-)] >=dev-python/stevedore-1.20.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(-)] >=dev-python/requests-2.14.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/oslo-i18n-3.15.3[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/oslo-log-3.36.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(-)] >=dev-python/oslo-serialization-2.18.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(-)] !~dev-python/oslo-serialization-2.19.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(-)] >=dev-python/oslo-utils-3.33.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(-)] >=dev-python/os-client-config-1.28.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(-)] >=dev-python/osc-lib-1.8.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(-)] >=dev-python/prettytable-0.7.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/cryptography-3.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(-)] >=dev-python/decorator-3.4.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-magnumclient/python-magnumclient-3.2.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=950f65499faf6322e45b459c6752ee98 +_md5_=25de28b51ec72ad459ed3b79ce9226ce diff --git a/metadata/md5-cache/dev-python/python-mistralclient-3.8.1 b/metadata/md5-cache/dev-python/python-mistralclient-3.8.1 deleted file mode 100644 index c65b2e0f8d1b..000000000000 --- a/metadata/md5-cache/dev-python/python-mistralclient-3.8.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A client for the OpenStack Mistral API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-mistralclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/cliff-2.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/cliff-2.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osc-lib-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-2.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyyaml-3.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.14.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/stevedore-1.20.0[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=mirror://pypi/p/python-mistralclient/python-mistralclient-3.8.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=33602fd712856030bec675c611963b9c diff --git a/metadata/md5-cache/dev-python/python-mistralclient-4.1.1 b/metadata/md5-cache/dev-python/python-mistralclient-4.1.1 index 278d8b40f8e9..8bbce5c9e41f 100644 --- a/metadata/md5-cache/dev-python/python-mistralclient-4.1.1 +++ b/metadata/md5-cache/dev-python/python-mistralclient-4.1.1 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Mistral API EAPI=7 HOMEPAGE=https://github.com/openstack/python-mistralclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/cliff-2.8.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(-)] !~dev-python/cliff-2.9.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(-)] >=dev-python/osc-lib-1.8.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(-)] >=dev-python/oslo-utils-3.33.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(-)] >=dev-python/oslo-i18n-3.15.3[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/oslo-serialization-2.18.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(-)] !~dev-python/oslo-serialization-2.19.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(-)] >=dev-python/keystoneauth-3.4.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(-)] >=dev-python/pyyaml-3.13.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(-)] >=dev-python/requests-2.14.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/stevedore-1.20.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-mistralclient/python-mistralclient-4.1.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=bd407bc0f2ddd94921703c77cd250e82 +_md5_=af11fdc7ff7ab9e5a706cd81176e3615 diff --git a/metadata/md5-cache/dev-python/python-monascaclient-1.15.0 b/metadata/md5-cache/dev-python/python-monascaclient-1.15.0 deleted file mode 100644 index 6a4540aa4c44..000000000000 --- a/metadata/md5-cache/dev-python/python-monascaclient-1.15.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -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(-)] >=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 -DESCRIPTION=A client for the OpenStack Monasca API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-monascaclient -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/osc-lib-1.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-serialization-1.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/Babel-2.3.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/Babel-2.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/prettytable-0.7.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/pyyaml-3.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.10.0[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=mirror://pypi/p/python-monascaclient/python-monascaclient-1.15.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=77b5cd42bc442acce12e1950e7a2c5ea diff --git a/metadata/md5-cache/dev-python/python-monascaclient-2.2.1 b/metadata/md5-cache/dev-python/python-monascaclient-2.2.1 index 88dd51cd4453..95bc279675a8 100644 --- a/metadata/md5-cache/dev-python/python-monascaclient-2.2.1 +++ b/metadata/md5-cache/dev-python/python-monascaclient-2.2.1 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Monasca API EAPI=7 HOMEPAGE=https://github.com/openstack/python-monascaclient IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-2.0.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(-)] !~dev-python/pbr-2.1.0 >=dev-python/osc-lib-1.8.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(-)] >=dev-python/oslo-serialization-1.18.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(-)] !~dev-python/oslo-serialization-2.19.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(-)] >=dev-python/oslo-utils-3.33.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(-)] >=dev-python/Babel-2.3.4[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/Babel-2.4.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(-)] >=dev-python/iso8601-0.1.11[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/prettytable-0.7.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/pyyaml-3.12.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(-)] >=dev-python/six-1.10.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(-)] >=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(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-monascaclient/python-monascaclient-2.2.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=5f100e23e98ab79ae0838d17f26f92ce +_md5_=9974ce7a4be12d0d7d164799c2220aeb diff --git a/metadata/md5-cache/dev-python/python-novaclient-17.2.1 b/metadata/md5-cache/dev-python/python-novaclient-17.2.1 index 31dd41652b00..94c425a9a413 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-17.2.1 +++ b/metadata/md5-cache/dev-python/python-novaclient-17.2.1 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Nova API EAPI=7 HOMEPAGE=https://github.com/openstack/python-novaclient IUSE=python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/keystoneauth-3.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-serialization-1.18.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/prettytable-0.7.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] =dev-python/requests-2.10.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/requests-2.12.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/simplejson-3.5.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/stevedore-2.0.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] 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(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-17.2.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e7f4d7cfeafede4122f92bca56f08c49 +_md5_=d0d6966af13b62a9a8477c20777c7d4f diff --git a/metadata/md5-cache/dev-python/python-vitrageclient-4.0.1 b/metadata/md5-cache/dev-python/python-vitrageclient-4.0.1 deleted file mode 100644 index 28c0c67e5a55..000000000000 --- a/metadata/md5-cache/dev-python/python-vitrageclient-4.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/pbr-3.1.1[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] -DESCRIPTION=A client for the OpenStack Vitrage API -EAPI=7 -HOMEPAGE=https://github.com/openstack/python-vitrageclient -IUSE=python_targets_python3_7 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/Babel-2.5.3[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/cliff-2.8.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] !~dev-python/cliff-2.9.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/osc-lib-1.8.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/networkx-2.3[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/pydot-1.4.1[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,-python_single_target_python3_7(-)] -REQUIRED_USE=|| ( python_targets_python3_7 ) -SLOT=0 -SRC_URI=mirror://pypi/p/python-vitrageclient/python-vitrageclient-4.0.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=57c10660a3f83269eb071c3cb7a85c79 diff --git a/metadata/md5-cache/dev-python/python-vitrageclient-4.1.1 b/metadata/md5-cache/dev-python/python-vitrageclient-4.1.1 index 18691477b5b3..1844d02ea1a6 100644 --- a/metadata/md5-cache/dev-python/python-vitrageclient-4.1.1 +++ b/metadata/md5-cache/dev-python/python-vitrageclient-4.1.1 @@ -5,11 +5,11 @@ DESCRIPTION=A client for the OpenStack Vitrage API EAPI=7 HOMEPAGE=https://github.com/openstack/python-vitrageclient IUSE=python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-3.1.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/cliff-2.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/cliff-2.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/osc-lib-1.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-utils-3.33.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/networkx-2.3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pydot-1.4.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] 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(-)] REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/p/python-vitrageclient/python-vitrageclient-4.1.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=97f320c5deaf63265de1706d8ec02c78 +_md5_=e51c171e570d9e9429bb38b25f94bf2d diff --git a/metadata/md5-cache/dev-python/python-zipstream-1.1.4 b/metadata/md5-cache/dev-python/python-zipstream-1.1.4 index 84193667880f..cafb032e5f57 100644 --- a/metadata/md5-cache/dev-python/python-zipstream-1.1.4 +++ b/metadata/md5-cache/dev-python/python-zipstream-1.1.4 @@ -1,15 +1,15 @@ 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(-)] test? ( dev-python/nose[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(-)] +DEPEND=test? ( >=dev-python/nose-1.3.7-r4[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(-)] DESCRIPTION=A zip archive generator EAPI=6 HOMEPAGE=https://github.com/allanlei/python-zipstream -IUSE=test python_targets_python3_6 python_targets_python3_7 +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ -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 ) +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=https://github.com/allanlei/python-zipstream/archive/v1.1.4.tar.gz -> python-zipstream-1.1.4.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=61e96ede13ead2ef22432a599f49a98b +_md5_=bd25470f72bee4dd1cd28eed0bf5e888 diff --git a/metadata/md5-cache/dev-python/pywavelets-1.1.1 b/metadata/md5-cache/dev-python/pywavelets-1.1.1 index 16aeb494adad..faba7fac7fe5 100644 --- a/metadata/md5-cache/dev-python/pywavelets-1.1.1 +++ b/metadata/md5-cache/dev-python/pywavelets-1.1.1 @@ -1,15 +1,15 @@ -BDEPEND=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(-)] dev-python/numpydoc[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/matplotlib[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/numpy[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/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(-)] test? ( 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(-)] dev-python/numpydoc[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/matplotlib[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/numpy[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/pytest-4.5.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(-)] >=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(-)] +BDEPEND=doc? ( 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/numpydoc[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/matplotlib[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/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/cython[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(-)] test? ( doc? ( 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/numpydoc[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/matplotlib[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/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/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=Discrete Wavelet Transforms in Python EAPI=7 HOMEPAGE=https://pywavelets.readthedocs.io/en/latest/ https://github.com/PyWavelets/pywt -IUSE=doc examples test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=doc examples 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=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(-)] dev-python/numpydoc[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/matplotlib[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/numpy[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 ) +RDEPEND=doc? ( 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/numpydoc[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/matplotlib[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/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(-)] 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/P/PyWavelets/PyWavelets-1.1.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=676eab2d1d5042fcd9f6e65389bf8eb4 +_md5_=b94bcbdc5076242d6ea6cf798ae243ca diff --git a/metadata/md5-cache/dev-python/pyzmq-19.0.1_p20200608 b/metadata/md5-cache/dev-python/pyzmq-19.0.1_p20200608 deleted file mode 100644 index f9199f447327..000000000000 --- a/metadata/md5-cache/dev-python/pyzmq-19.0.1_p20200608 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/cython[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(-)] test? ( >=www-servers/tornado-5.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(-)] ) test? ( >=net-libs/zeromq-4.2.2-r2:=[drafts] dev-python/py[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/cffi:=[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-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(-)] ) doc? ( || ( ( dev-lang/python:3.9[threads(+)] dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/numpydoc[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8[threads(+)] dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/numpydoc[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7[threads(+)] dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/numpydoc[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6[threads(+)] dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/numpydoc[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) 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(-)] -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/ -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 -RDEPEND=>=net-libs/zeromq-4.2.2-r2:=[drafts] dev-python/py[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/cffi:=[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[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(-)] -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/zeromq/pyzmq/archive/dd4dac055152d47c829034224cdecf594c7b3f12.tar.gz -> pyzmq-19.0.1_p20200608.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3a970ba11db786c2f1c1808514f35aee diff --git a/metadata/md5-cache/dev-python/pyzmq-19.0.2 b/metadata/md5-cache/dev-python/pyzmq-19.0.2 index 152713d30f26..ee3a3bfd0226 100644 --- a/metadata/md5-cache/dev-python/pyzmq-19.0.2 +++ b/metadata/md5-cache/dev-python/pyzmq-19.0.2 @@ -5,7 +5,7 @@ DESCRIPTION=Lightweight and super-fast messaging library built on top of the Zer EAPI=7 HOMEPAGE=https://www.zeromq.org/bindings: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 +KEYWORDS=amd64 arm arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=LGPL-3 RDEPEND=>=net-libs/zeromq-4.2.2-r2:=[drafts] dev-python/py[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/cffi:=[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[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(-)] 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=https://github.com/zeromq/pyzmq/archive/dd4dac055152d47c829034224cdecf594c7b3f12.tar.gz -> pyzmq-19.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e15ad76a10d8a7e5b104ab889baf6188 +_md5_=24d9b5d79f6c7b6a4fa5662569eb2881 diff --git a/metadata/md5-cache/dev-python/scandir-1.10.0-r2 b/metadata/md5-cache/dev-python/scandir-1.10.0-r2 index fef5f7869e56..0a54f2af0d75 100644 --- a/metadata/md5-cache/dev-python/scandir-1.10.0-r2 +++ b/metadata/md5-cache/dev-python/scandir-1.10.0-r2 @@ -1,16 +1,14 @@ -BDEPEND=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(-)] +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 -DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=A better directory iterator and faster os.walk() EAPI=7 HOMEPAGE=https://github.com/benhoyt/scandir -IUSE=test python_targets_python3_6 python_targets_python3_7 +IUSE=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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 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 ) -RESTRICT=!test? ( test ) +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/s/scandir/scandir-1.10.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2acac4941a9c530f79fc8941314b087b +_md5_=8eb0ec2d567877af028966690cd0432a diff --git a/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 b/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 index 42fa4c20e0e2..da3cb289a4d5 100644 --- a/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 +++ b/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 @@ -4,7 +4,7 @@ DESCRIPTION=Python client for Sentry EAPI=7 HOMEPAGE=https://getsentry.com https://pypi.org/project/sentry-sdk/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=PSF-2 RDEPEND=dev-python/urllib3[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/certifi[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/getsentry/sentry-python/archive/0.18.0.tar.gz -> sentry-sdk-0.18.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=33ba6c025d52bf84ee48f8333cc5b2eb +_md5_=4e6dc9714f60300b1e959f08e24d19e8 diff --git a/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 b/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 new file mode 100644 index 000000000000..2ab9b8355eee --- /dev/null +++ b/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/asttokens[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/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-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=Python client for Sentry +EAPI=7 +HOMEPAGE=https://getsentry.com https://pypi.org/project/sentry-sdk/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=PSF-2 +RDEPEND=dev-python/urllib3[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/certifi[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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/getsentry/sentry-python/archive/0.19.4.tar.gz -> sentry-sdk-0.19.4.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=7567337965235c94f5facfc4052eba3c diff --git a/metadata/md5-cache/dev-python/serpent-1.30.2 b/metadata/md5-cache/dev-python/serpent-1.30.2 new file mode 100644 index 000000000000..c2dc7e9df0bf --- /dev/null +++ b/metadata/md5-cache/dev-python/serpent-1.30.2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/attrs[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(-)] ) 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 simple serialization library based on ast.literal_eval +EAPI=7 +HOMEPAGE=https://pypi.org/project/serpent/ https://github.com/irmen/Serpent +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 +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 ) +SLOT=0 +SRC_URI=mirror://pypi/s/serpent/serpent-1.30.2.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=93b974b8243bec49b0c355f56352d7da diff --git a/metadata/md5-cache/dev-python/sphinx-gallery-0.8.1 b/metadata/md5-cache/dev-python/sphinx-gallery-0.8.1 index bd60f2338d04..3eb6ea30ed2d 100644 --- a/metadata/md5-cache/dev-python/sphinx-gallery-0.8.1 +++ b/metadata/md5-cache/dev-python/sphinx-gallery-0.8.1 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/joblib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/sphinx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pytest-4.5.0[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(-)] +BDEPEND=test? ( dev-python/joblib[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(-)] ) test? ( dev-python/matplotlib[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/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/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=Sphinx extension to automatically generate an examples gallery EAPI=7 HOMEPAGE=https://sphinx-gallery.github.io/ https://github.com/sphinx-gallery/sphinx-gallery -IUSE=test python_targets_python3_6 python_targets_python3_7 +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=BSD -RDEPEND=dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/sphinx[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 ) +RDEPEND=dev-python/matplotlib[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/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(-)] 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/s/sphinx-gallery/sphinx-gallery-0.8.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ec2ab76af03c958d0792f2b50f95464f +_md5_=7c8db1c298cae6c32722e8755bd7905f diff --git a/metadata/md5-cache/dev-python/sphinx-py3doc-enhanced-theme-2.3.2-r1 b/metadata/md5-cache/dev-python/sphinx-py3doc-enhanced-theme-2.3.2-r1 index e60723fb689f..c10e2f96a95a 100644 --- a/metadata/md5-cache/dev-python/sphinx-py3doc-enhanced-theme-2.3.2-r1 +++ b/metadata/md5-cache/dev-python/sphinx-py3doc-enhanced-theme-2.3.2-r1 @@ -1,14 +1,14 @@ -BDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +BDEPEND=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=Enhanced Sphinx theme (based on Python 3 docs) EAPI=7 HOMEPAGE=https://github.com/ionelmc/sphinx-py3doc-enhanced-theme https://pypi.org/project/sphinx_py3doc_enhanced_theme/ -IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 +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 LICENSE=BSD -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 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 ) +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 ) SLOT=0 SRC_URI=mirror://pypi/s/sphinx-py3doc-enhanced-theme/sphinx-py3doc-enhanced-theme-2.3.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=77af6e5ce21534e60d8c269b646b68ef +_md5_=f7c541ec0e42ab7fe257156d65a50e10 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 b/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 index 6a1af90802d9..89858bb01a29 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 +++ b/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 @@ -4,7 +4,7 @@ DESCRIPTION=Python SQL toolkit and Object Relational Mapper EAPI=7 HOMEPAGE=https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/ IUSE=examples +sqlite 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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[sqlite?] ) 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-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=test? ( sqlite ) || ( 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/S/SQLAlchemy/SQLAlchemy-1.3.20.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2578c127e5ac68e514b6150f69197f4a +_md5_=551929868637d3d68eb3ab01fd6bcd3b diff --git a/metadata/md5-cache/dev-python/sybil-2.0.0 b/metadata/md5-cache/dev-python/sybil-2.0.0 new file mode 100644 index 000000000000..8cd53f973444 --- /dev/null +++ b/metadata/md5-cache/dev-python/sybil-2.0.0 @@ -0,0 +1,15 @@ +BDEPEND=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=Automated testing for the examples in your documentation +EAPI=7 +HOMEPAGE=https://github.com/cjw296/sybil +IUSE=test 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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/s/sybil/sybil-2.0.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c794b61f76af10b7b926c7af441d4c44 diff --git a/metadata/md5-cache/dev-python/testfixtures-6.14.2 b/metadata/md5-cache/dev-python/testfixtures-6.14.2 deleted file mode 100644 index e5e1ac6297ca..000000000000 --- a/metadata/md5-cache/dev-python/testfixtures-6.14.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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? ( 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] ) dev-python/django[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/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/pytest-django[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/sybil[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/twisted-18[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/zope-component[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(-)] -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 -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 ) >=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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/t/testfixtures/testfixtures-6.14.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=da682916ae41d0507601083d9b1d1597 diff --git a/metadata/md5-cache/dev-python/traitlets-5.0.5 b/metadata/md5-cache/dev-python/traitlets-5.0.5 index 4db02c132113..fd3866129d23 100644 --- a/metadata/md5-cache/dev-python/traitlets-5.0.5 +++ b/metadata/md5-cache/dev-python/traitlets-5.0.5 @@ -1,4 +1,4 @@ -BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/ipython_genutils[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-python/ipython_genutils[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-python/ipython_genutils[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ) ) test? ( dev-python/ipython_genutils[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-4.5.0[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(-)] ) 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_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/setuptools-42.0.2[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(-)] +BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/ipython_genutils[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[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-python/ipython_genutils[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[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-python/ipython_genutils[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ) ) test? ( dev-python/ipython_genutils[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-4.5.0[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(-)] ) 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_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/setuptools-42.0.2[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(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A configuration system for Python applications EAPI=7 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/traitlets/traitlets-5.0.5.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0f271e0f4c2c302abba3a1a6c0d2a8e6 +_md5_=5e952846d42e72b8c3f335b629c77ad8 diff --git a/metadata/md5-cache/dev-python/ubelt-0.8.8 b/metadata/md5-cache/dev-python/ubelt-0.8.8 deleted file mode 100644 index d80793376dde..000000000000 --- a/metadata/md5-cache/dev-python/ubelt-0.8.8 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( 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/ordered-set[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/pytest-4.5.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(-)] >=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/xdoctest[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 stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress -EAPI=7 -HOMEPAGE=https://github.com/Erotemic/ubelt -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=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/ordered-set[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 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Erotemic/ubelt/archive/0.8.8.tar.gz -> ubelt-0.8.8.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ebe8e7618693c62f1e081dd9e5c95993 diff --git a/metadata/md5-cache/dev-python/ubelt-0.9.1 b/metadata/md5-cache/dev-python/ubelt-0.9.1 new file mode 100644 index 000000000000..18fbf03b92e8 --- /dev/null +++ b/metadata/md5-cache/dev-python/ubelt-0.9.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( 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-python/ordered-set[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-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 +DEPEND=test? ( dev-python/xdoctest[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 stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress +EAPI=7 +HOMEPAGE=https://github.com/Erotemic/ubelt +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=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-python/ordered-set[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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/Erotemic/ubelt/archive/0.9.1.tar.gz -> ubelt-0.9.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4c31f74b7fcf16a274448d44f3d0a331 diff --git a/metadata/md5-cache/dev-python/virtualenv-20.0.35 b/metadata/md5-cache/dev-python/virtualenv-20.0.35 index 018c28e701c1..bf84332ad4b0 100644 --- a/metadata/md5-cache/dev-python/virtualenv-20.0.35 +++ b/metadata/md5-cache/dev-python/virtualenv-20.0.35 @@ -4,7 +4,7 @@ DESCRIPTION=Virtual Python Environment builder EAPI=7 HOMEPAGE=https://virtualenv.pypa.io/en/stable/ https://pypi.org/project/virtualenv/ https://github.com/pypa/virtualenv/ IUSE=test 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 ppc ppc64 sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 LICENSE=MIT RDEPEND=>=dev-python/appdirs-1.4.3[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/distlib-0.3.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(-)] >=dev-python/filelock-3[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-41[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/six-1.9.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/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) 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/v/virtualenv/virtualenv-20.0.35.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ecd87c29350a2440e31fb083d5c4ed1c +_md5_=5598a8a8cbe46feb6e2684f08e9feadd diff --git a/metadata/md5-cache/dev-python/xdoctest-0.11.0 b/metadata/md5-cache/dev-python/xdoctest-0.11.0 deleted file mode 100644 index 393ab0bb2165..000000000000 --- a/metadata/md5-cache/dev-python/xdoctest-0.11.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( 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/pytest-4.5.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(-)] ) doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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(+)] dev-python/sphinx_rtd_theme[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 ) >=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(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A rewrite of Python's builtin doctest module but without all the weirdness -EAPI=7 -HOMEPAGE=https://github.com/Erotemic/ubelt -IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=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(-)] 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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/x/xdoctest/xdoctest-0.11.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1458d0b55c74df52a773bb28d1112b5c diff --git a/metadata/md5-cache/dev-python/xdoctest-0.15.0 b/metadata/md5-cache/dev-python/xdoctest-0.15.0 new file mode 100644 index 000000000000..1910dc6c0f30 --- /dev/null +++ b/metadata/md5-cache/dev-python/xdoctest-0.15.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( 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-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(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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-python/sphinx_rtd_theme[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(+)] dev-python/sphinx_rtd_theme[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(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A rewrite of Python's builtin doctest module but without all the weirdness +EAPI=7 +HOMEPAGE=https://github.com/Erotemic/xdoctest +IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=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(-)] 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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/x/xdoctest/xdoctest-0.15.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=aca4f3421fc610a5113ee45a9ecd7942 diff --git a/metadata/md5-cache/dev-python/zope-interface-5.1.0-r1 b/metadata/md5-cache/dev-python/zope-interface-5.1.0-r1 deleted file mode 100644 index 3778a3877862..000000000000 --- a/metadata/md5-cache/dev-python/zope-interface-5.1.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/zope-event[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/zope-testing[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/namespace-zope[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=Interfaces for Python -EAPI=7 -HOMEPAGE=https://pypi.org/project/zope.interface/ https://github.com/zopefoundation/zope.interface -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 ~m68k ~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=ZPL -RDEPEND=dev-python/namespace-zope[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(-)] -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/z/zope.interface/zope.interface-5.1.0.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=501bfd4dbdabd17cbe34a5cd872b9ab4 diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index b89f0cac475f..e59d74a6c151 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.15.1 b/metadata/md5-cache/dev-qt/qtnetwork-5.15.1-r1 similarity index 75% rename from metadata/md5-cache/dev-qt/qtnetwork-5.15.1 rename to metadata/md5-cache/dev-qt/qtnetwork-5.15.1-r1 index 2ad4305a903a..a05ba600d9ed 100644 --- a/metadata/md5-cache/dev-qt/qtnetwork-5.15.1 +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.15.1-r1 @@ -1,15 +1,15 @@ BDEPEND=dev-lang/perl virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.15.1:5= sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.15.1 ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.15.1 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) test? ( ~dev-qt/qttest-5.15.1 ) +DEPEND=~dev-qt/qtcore-5.15.1:5= sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.15.1 ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.15.1 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( !libressl? ( >=dev-libs/openssl-1.1.1:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) test? ( ~dev-qt/qttest-5.15.1 ) DESCRIPTION=Network abstraction library for the Qt5 framework EAPI=7 HOMEPAGE=https://www.qt.io/ IUSE=bindist connman gssapi libressl libproxy networkmanager sctp +ssl debug test KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.15.1:5= sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.15.1 ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.15.1 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.15.1:5= sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.15.1 ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.15.1 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( !libressl? ( >=dev-libs/openssl-1.1.1:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.15 SRC_URI=https://download.qt.io/official_releases/qt/5.15/5.15.1/submodules/qtbase-everywhere-src-5.15.1.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 qt5-build 61c8ea7c782273a0da7822040770b0e4 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=506503700e44185d85d6a50aa00fd1f7 +_md5_=0d0a5f92917c0ac13013f53cb989d2f9 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 36a922c86730..e0446addf0d2 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/pdf-core-0.9.0 b/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 new file mode 100644 index 000000000000..529de169507d --- /dev/null +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.9.0 @@ -0,0 +1,16 @@ +BDEPEND=ruby_targets_ruby25? ( test? ( =dev-ruby/pdf-inspector-1*[ruby_targets_ruby25(-)] >=dev-ruby/pdf-reader-1.2[ruby_targets_ruby25(-)] =dev-ruby/pdf-reader-1*[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( =dev-ruby/pdf-inspector-1*[ruby_targets_ruby26(-)] >=dev-ruby/pdf-reader-1.2[ruby_targets_ruby26(-)] =dev-ruby/pdf-reader-1*[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( =dev-ruby/pdf-inspector-1*[ruby_targets_ruby27(-)] >=dev-ruby/pdf-reader-1.2[ruby_targets_ruby27(-)] =dev-ruby/pdf-reader-1*[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? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[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=Implements low level PDF features for Prawn +EAPI=7 +HOMEPAGE=https://github.com/prawnpdf/pdf-core/ +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=|| ( Ruby GPL-2 GPL-3 ) +RDEPEND=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(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.9.0.tar.gz -> pdf-core-0.9.0.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c27f69939dfb64ddff1714f8c9f8c0dd diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index 4d7f4e439483..fc78e1d0e990 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/ccache-4.0 b/metadata/md5-cache/dev-util/ccache-4.0 index 3ed4de1b0e95..21c42396606d 100644 --- a/metadata/md5-cache/dev-util/ccache-4.0 +++ b/metadata/md5-cache/dev-util/ccache-4.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ccache/ccache/releases/download/v4.0/ccache-4.0.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5060e486c5f94da5f582996821b06ded +_md5_=35cb9a78cd0688673e90076777f7f816 diff --git a/metadata/md5-cache/dev-util/cmake-3.18.5 b/metadata/md5-cache/dev-util/cmake-3.18.5 new file mode 100644 index 000000000000..675a5768fcd6 --- /dev/null +++ b/metadata/md5-cache/dev-util/cmake-3.18.5 @@ -0,0 +1,15 @@ +BDEPEND=doc? ( dev-python/requests dev-python/sphinx ) sys-devel/make test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +DESCRIPTION=Cross platform Make +EAPI=7 +HOMEPAGE=https://cmake.org/ +IUSE=doc emacs ncurses qt5 test test +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 ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=CMake +RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://cmake.org/files/v3.18/cmake-3.18.5.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=7da4c97c573b73d8058558a8da8e15e7 diff --git a/metadata/md5-cache/dev-util/cmake-3.19.0_rc3 b/metadata/md5-cache/dev-util/cmake-3.19.0 similarity index 86% rename from metadata/md5-cache/dev-util/cmake-3.19.0_rc3 rename to metadata/md5-cache/dev-util/cmake-3.19.0 index 97730040902a..a0cc6f5776a7 100644 --- a/metadata/md5-cache/dev-util/cmake-3.19.0_rc3 +++ b/metadata/md5-cache/dev-util/cmake-3.19.0 @@ -5,10 +5,11 @@ DESCRIPTION=Cross platform Make EAPI=7 HOMEPAGE=https://cmake.org/ IUSE=doc emacs ncurses qt5 test test +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 ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=CMake RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://cmake.org/files/v3.19/cmake-3.19.0-rc3.tar.gz +SRC_URI=https://cmake.org/files/v3.19/cmake-3.19.0.tar.gz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=5d1763fd79aed7fde640897321c0b553 diff --git a/metadata/md5-cache/dev-util/jenkins-bin-2.267 b/metadata/md5-cache/dev-util/jenkins-bin-2.267 new file mode 100644 index 000000000000..d25377353b28 --- /dev/null +++ b/metadata/md5-cache/dev-util/jenkins-bin-2.267 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install setup +DESCRIPTION=Extensible continuous integration server +EAPI=7 +HOMEPAGE=https://jenkins.io/ +KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux +LICENSE=MIT +RDEPEND=media-fonts/dejavu media-libs/freetype !dev-util/jenkins-bin:lts >=virtual/jre-1.8.0 +RESTRICT=mirror +SLOT=0 +SRC_URI=http://mirrors.jenkins-ci.org/war/2.267/jenkins.war -> jenkins-bin-2.267.war +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_md5_=f9b8099d1ee40aac4985e6c9006bd6f9 diff --git a/metadata/md5-cache/dev-util/ninja-1.10.1 b/metadata/md5-cache/dev-util/ninja-1.10.1 index 0b17ab879bc0..4a40fbb38c8b 100644 --- a/metadata/md5-cache/dev-util/ninja-1.10.1 +++ b/metadata/md5-cache/dev-util/ninja-1.10.1 @@ -4,11 +4,11 @@ DESCRIPTION=A small build system similar to make EAPI=7 HOMEPAGE=https://ninja-build.org/ IUSE=doc emacs test vim-syntax -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 ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +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 ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ninja-build/ninja/archive/v1.10.1.tar.gz -> ninja-1.10.1.tar.gz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef elisp-common 34cc2b6f6d8914019a353fe39cff43ce multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0658ad70ef4fe51dd8776da9c9c5e3b4 +_md5_=6ee184bff4c224646f6d4be1fa2e2b81 diff --git a/metadata/md5-cache/dev-util/perf-5.9.9 b/metadata/md5-cache/dev-util/perf-5.9.9 new file mode 100644 index 000000000000..607257b10810 --- /dev/null +++ b/metadata/md5-cache/dev-util/perf-5.9.9 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/bison sys-devel/flex doc? ( app-text/asciidoc app-text/sgml-common app-text/xmlto sys-process/time ) +DEFINED_PHASES=compile install prepare pretend setup test unpack +DEPEND=audit? ( sys-process/audit ) crypt? ( dev-libs/openssl:0= ) clang? ( =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(-)] ) slang? ( sys-libs/slang ) systemtap? ( dev-util/systemtap ) unwind? ( sys-libs/libunwind ) zlib? ( sys-libs/zlib ) dev-libs/elfutils >=sys-kernel/linux-headers-4.19 dev-util/patchutils java? ( virtual/jdk ) !!sys-devel/llvm:0 +DESCRIPTION=Userland tools for Linux Performance Counters +EAPI=7 +HOMEPAGE=https://perf.wiki.kernel.org/ +IUSE=audit clang crypt debug +demangle +doc gtk java libpfm lzma numa perl python slang systemtap unwind zlib python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 kernel_linux +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=audit? ( sys-process/audit ) crypt? ( dev-libs/openssl:0= ) clang? ( =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(-)] ) slang? ( sys-libs/slang ) systemtap? ( dev-util/systemtap ) unwind? ( sys-libs/libunwind ) zlib? ( sys-libs/zlib ) dev-libs/elfutils +REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) +SLOT=0 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.9.9.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 llvm 21d8c0949a2693d7109cc6a25fabfcaf multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=59cf878d4bb5810b924d4b9e1acf2f61 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 1c7d80e9d856..43c51c9b5808 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/git-lfs-2.12.1 b/metadata/md5-cache/dev-vcs/git-lfs-2.12.1 new file mode 100644 index 000000000000..27e4b7e663fb --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-lfs-2.12.1 @@ -0,0 +1,14 @@ +BDEPEND=doc? ( app-text/ronn ) >=dev-lang/go-1.12 app-arch/unzip +DEFINED_PHASES=compile install postinst test unpack +DESCRIPTION=Command line extension and specification for managing large files with git +EAPI=7 +HOMEPAGE=https://git-lfs.github.com/ +IUSE=doc test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 BSD BSD-2 BSD-4 ISC MIT +RDEPEND=dev-vcs/git +RESTRICT=strip !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/git-lfs/git-lfs/archive/v2.12.1.tar.gz -> git-lfs-2.12.1.tar.gz +_eclasses_=go-module 92660621959e7fab813173772987588b +_md5_=f6c34eea9acd02b060fa22ef99de760c diff --git a/metadata/md5-cache/dev-vcs/git-lfs-9999 b/metadata/md5-cache/dev-vcs/git-lfs-9999 index 90eb78df1514..be949dc7391e 100644 --- a/metadata/md5-cache/dev-vcs/git-lfs-9999 +++ b/metadata/md5-cache/dev-vcs/git-lfs-9999 @@ -10,4 +10,4 @@ RDEPEND=dev-vcs/git RESTRICT=strip !test? ( test ) SLOT=0 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 go-module 92660621959e7fab813173772987588b -_md5_=bac75a6bebe2fd3bd0eb4b58ee4a5ec6 +_md5_=f6c34eea9acd02b060fa22ef99de760c diff --git a/metadata/md5-cache/games-server/Manifest.gz b/metadata/md5-cache/games-server/Manifest.gz index c9a5f5b969ba..318fbe730839 100644 Binary files a/metadata/md5-cache/games-server/Manifest.gz and b/metadata/md5-cache/games-server/Manifest.gz differ diff --git a/metadata/md5-cache/games-server/bedrock-server-1.16.100.04 b/metadata/md5-cache/games-server/bedrock-server-1.16.100.04 new file mode 100644 index 000000000000..e1445dd82b7f --- /dev/null +++ b/metadata/md5-cache/games-server/bedrock-server-1.16.100.04 @@ -0,0 +1,12 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install +DESCRIPTION=The official bedrock (non-java) based server for the sandbox video game +EAPI=7 +HOMEPAGE=https://www.minecraft.net/ +KEYWORDS=-* ~amd64 +LICENSE=Mojang +RDEPEND=acct-group/bedrock acct-user/bedrock app-misc/dtach dev-libs/openssl:0/1.1 net-misc/curl[ssl] +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=https://minecraft.azureedge.net/bin-linux/bedrock-server-1.16.100.04.zip +_md5_=98b7b87c8352e51e66b7ff8c793fc38e diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz index 568646a77145..e6c02b70ca76 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.29.0 b/metadata/md5-cache/games-util/pyfa-2.31.0 similarity index 98% rename from metadata/md5-cache/games-util/pyfa-2.29.0 rename to metadata/md5-cache/games-util/pyfa-2.31.0 index 3e8459837ea7..a3d717341cf7 100644 --- a/metadata/md5-cache/games-util/pyfa-2.29.0 +++ b/metadata/md5-cache/games-util/pyfa-2.31.0 @@ -11,6 +11,6 @@ RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_t 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.29.0.tar.gz -> pyfa-2.29.0.tar.gz +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 98584e405e2b0264d37e8f728327fed1 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-9999 b/metadata/md5-cache/games-util/pyfa-9999 index 5376fc26b2ac..dac3467e42ee 100644 --- a/metadata/md5-cache/games-util/pyfa-9999 +++ b/metadata/md5-cache/games-util/pyfa-9999 @@ -1,6 +1,6 @@ BDEPEND=app-arch/zip >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=install postinst postrm 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] ) +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 DESCRIPTION=Python Fitting Assistant - a ship fitting application for EVE Online EAPI=7 HOMEPAGE=https://github.com/pyfa-org/Pyfa @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_t REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) RESTRICT=mirror bindist SLOT=0 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d99cc57d014b7fd95ff3a644892fb0ce +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=a1d1b06f317ef08b591ff84cbcac5008 diff --git a/metadata/md5-cache/gui-apps/Manifest.gz b/metadata/md5-cache/gui-apps/Manifest.gz index 099517f9c918..4df2d2082bf6 100644 Binary files a/metadata/md5-cache/gui-apps/Manifest.gz and b/metadata/md5-cache/gui-apps/Manifest.gz differ diff --git a/metadata/md5-cache/gui-apps/wcm-0.5.0 b/metadata/md5-cache/gui-apps/wcm-0.5.0 index cf498c28bafb..8ba07534bb47 100644 --- a/metadata/md5-cache/gui-apps/wcm-0.5.0 +++ b/metadata/md5-cache/gui-apps/wcm-0.5.0 @@ -4,10 +4,10 @@ DEPEND=dev-libs/libevdev dev-libs/libxml2 dev-cpp/gtkmm:3.0[wayland] >=gui-wm/wa DESCRIPTION=Wayfire Config Manager EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wcm -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=MIT RDEPEND=dev-libs/libevdev dev-libs/libxml2 dev-cpp/gtkmm:3.0[wayland] >=gui-wm/wayfire-0.5.0 SLOT=0 SRC_URI=https://github.com/WayfireWM/wcm/archive/v0.5.0.tar.gz -> wcm-0.5.0.tar.gz _eclasses_=meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b04536492658a888267ec698ad062d95 +_md5_=a3d6a4b7f88d621a894882465aaa1757 diff --git a/metadata/md5-cache/gui-apps/wf-shell-0.5.0 b/metadata/md5-cache/gui-apps/wf-shell-0.5.0 index 27c7201743e0..42c56bd87247 100644 --- a/metadata/md5-cache/gui-apps/wf-shell-0.5.0 +++ b/metadata/md5-cache/gui-apps/wf-shell-0.5.0 @@ -5,10 +5,10 @@ DESCRIPTION=A compiz like 3D wayland compositor EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wf-shell IUSE=+pulseaudio -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=MIT RDEPEND=dev-cpp/gtkmm:3.0=[wayland] dev-libs/gobject-introspection >=gui-libs/gtk-layer-shell-0.1 >=gui-wm/wayfire-0.5.0 pulseaudio? ( media-sound/pulseaudio ) SLOT=0 SRC_URI=https://github.com/WayfireWM/wf-shell/releases/download/0.5.0/wf-shell-0.5.0.tar.xz _eclasses_=meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=cfcf8d96ede8a00eab457fc224d3ffce +_md5_=12ea5407dee608d122474df8b0c5c3f5 diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index 3219d1d740f4..cbcd47ff39c0 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/wf-config-0.5.0 b/metadata/md5-cache/gui-libs/wf-config-0.5.0 index e28d53ba1f9f..ed148441350b 100644 --- a/metadata/md5-cache/gui-libs/wf-config-0.5.0 +++ b/metadata/md5-cache/gui-libs/wf-config-0.5.0 @@ -4,10 +4,10 @@ DEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.11.0 media-libs/g DESCRIPTION=library for managing wayfire configuration files EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wf-config -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=MIT RDEPEND=dev-libs/libevdev dev-libs/libxml2 >=gui-libs/wlroots-0.11.0 media-libs/glm SLOT=0 SRC_URI=https://github.com/WayfireWM/wf-config/releases/download/0.5.0/wf-config-0.5.0.tar.xz _eclasses_=meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2e830307b5367cabd5b5ff976fb33396 +_md5_=508f7b914a241f1215b279f6b0f2879c diff --git a/metadata/md5-cache/gui-wm/Manifest.gz b/metadata/md5-cache/gui-wm/Manifest.gz index 88b7478e8f9b..6a6e9c1c5948 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/wayfire-0.5.0 b/metadata/md5-cache/gui-wm/wayfire-0.5.0 index ed9f44078067..78ee55a24ed2 100644 --- a/metadata/md5-cache/gui-wm/wayfire-0.5.0 +++ b/metadata/md5-cache/gui-wm/wayfire-0.5.0 @@ -5,11 +5,11 @@ DESCRIPTION=compiz like 3D wayland compositor EAPI=7 HOMEPAGE=https://github.com/WayfireWM/wayfire IUSE=+gles +system-wfconfig +system-wlroots elogind systemd X -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=MIT RDEPEND=dev-libs/libevdev dev-libs/libinput gui-libs/gtk-layer-shell media-libs/glm media-libs/mesa:=[gles2,wayland,X?] media-libs/libjpeg-turbo media-libs/libpng media-libs/freetype:=[X?] x11-libs/libdrm x11-libs/gtk+:3=[wayland,X?] x11-libs/cairo:=[X?,svg] X? ( x11-libs/libxkbcommon:=[X] ) x11-libs/pixman gles? ( media-libs/libglvnd[X?] ) system-wfconfig? ( >=gui-libs/wf-config-0.5.0 ) !system-wfconfig? ( !gui-libs/wf-config ) system-wlroots? ( >=gui-libs/wlroots-0.11.0[elogind=,systemd=,X?] ) !system-wlroots? ( !gui-libs/wlroots ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) x11-misc/xkeyboard-config REQUIRED_USE=?? ( elogind systemd ) SLOT=0 SRC_URI=https://github.com/WayfireWM/wayfire/releases/download/0.5.0/wayfire-0.5.0.tar.xz _eclasses_=meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c63c32bb239d95f9827058793380bc23 +_md5_=83113b6dbd026f2b6412e0f16b7d3f21 diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index 6d9aafbc9e0e..af1bf159a16a 100644 Binary files a/metadata/md5-cache/kde-apps/Manifest.gz and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/kdav-20.04.3 b/metadata/md5-cache/kde-apps/kdav-20.04.3 deleted file mode 100644 index 2ede18d2ec3e..000000000000 --- a/metadata/md5-cache/kde-apps/kdav-20.04.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=kde-frameworks/extra-cmake-modules-5.70.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtxml-5.14.2:5 >=dev-qt/qtxmlpatterns-5.14.2:5 >=kde-frameworks/kcoreaddons-5.70.0:5 >=kde-frameworks/kio-5.70.0:5 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 -DESCRIPTION=DAV protocol implemention with KJobs -EAPI=7 -HOMEPAGE=https://api.kde.org/kdepim/kdav/html/index.html -IUSE=test debug test -KEYWORDS=amd64 arm64 ~ppc64 x86 -LICENSE=LGPL-2+ -RDEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtxml-5.14.2:5 >=dev-qt/qtxmlpatterns-5.14.2:5 >=kde-frameworks/kcoreaddons-5.70.0:5 >=kde-frameworks/kio-5.70.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=5 -SRC_URI=mirror://kde/stable/release-service/20.04.3/src/kdav-20.04.3.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e6547f80d2e67954aff0f02b1785aace diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index e861974be442..d0d56ba87355 100644 Binary files a/metadata/md5-cache/kde-plasma/Manifest.gz and b/metadata/md5-cache/kde-plasma/Manifest.gz differ diff --git a/metadata/md5-cache/kde-plasma/discover-5.20.3 b/metadata/md5-cache/kde-plasma/discover-5.20.3 deleted file mode 100644 index 2c014edb4413..000000000000 --- a/metadata/md5-cache/kde-plasma/discover-5.20.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) >=kde-frameworks/extra-cmake-modules-5.74.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtdeclarative-5.15.1:5 >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtnetwork-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=dev-qt/qtxml-5.15.1:5 >=kde-frameworks/attica-5.74.0:5 >=kde-frameworks/kconfig-5.74.0:5 >=kde-frameworks/kconfigwidgets-5.74.0:5 >=kde-frameworks/kcoreaddons-5.74.0:5 >=kde-frameworks/kcrash-5.74.0:5 >=kde-frameworks/kdbusaddons-5.74.0:5 >=kde-frameworks/kdeclarative-5.74.0:5 >=kde-frameworks/ki18n-5.74.0:5 >=kde-frameworks/kio-5.74.0:5 >=kde-frameworks/kirigami-5.74.0:5 >=kde-frameworks/kitemmodels-5.74.0:5 >=kde-frameworks/knewstuff-5.74.0:5 >=kde-frameworks/knotifications-5.74.0:5 >=kde-frameworks/kwidgetsaddons-5.74.0:5 >=kde-frameworks/kxmlgui-5.74.0:5 firmware? ( sys-apps/fwupd ) telemetry? ( dev-libs/kuserfeedback:5 ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 -DESCRIPTION=KDE Plasma resources management GUI -EAPI=7 -HOMEPAGE=https://userbase.kde.org/Discover -IUSE=+firmware telemetry test debug test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtdbus-5.15.1:5 >=dev-qt/qtdeclarative-5.15.1:5 >=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtnetwork-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=dev-qt/qtxml-5.15.1:5 >=kde-frameworks/attica-5.74.0:5 >=kde-frameworks/kconfig-5.74.0:5 >=kde-frameworks/kconfigwidgets-5.74.0:5 >=kde-frameworks/kcoreaddons-5.74.0:5 >=kde-frameworks/kcrash-5.74.0:5 >=kde-frameworks/kdbusaddons-5.74.0:5 >=kde-frameworks/kdeclarative-5.74.0:5 >=kde-frameworks/ki18n-5.74.0:5 >=kde-frameworks/kio-5.74.0:5 >=kde-frameworks/kirigami-5.74.0:5 >=kde-frameworks/kitemmodels-5.74.0:5 >=kde-frameworks/knewstuff-5.74.0:5 >=kde-frameworks/knotifications-5.74.0:5 >=kde-frameworks/kwidgetsaddons-5.74.0:5 >=kde-frameworks/kxmlgui-5.74.0:5 firmware? ( sys-apps/fwupd ) telemetry? ( dev-libs/kuserfeedback:5 ) >=dev-qt/qtquickcontrols2-5.15.1:5 >=kde-frameworks/kirigami-5.74.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=5 -SRC_URI=mirror://kde/stable/plasma/5.20.3/discover-5.20.3.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4868da797751444cb01e55f14d155764 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index 141fee28c21d..3f5632c3f42e 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/claws-mail-3.17.6-r1 b/metadata/md5-cache/mail-client/claws-mail-3.17.6-r1 deleted file mode 100644 index 0bc9f3716b53..000000000000 --- a/metadata/md5-cache/mail-client/claws-mail-3.17.6-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/xz-utils virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install postinst postrm preinst prepare -DEPEND=dev-libs/nettle:= net-mail/ytnef sys-libs/zlib:= x11-libs/cairo x11-libs/gdk-pixbuf:2[jpeg] >=x11-libs/gtk+-2.24:2 x11-libs/libX11 x11-libs/pango archive? ( app-arch/libarchive >=net-misc/curl-7.9.7 ) bogofilter? ( mail-filter/bogofilter ) calendar? ( >=dev-libs/libical-2.0.0:= >=net-misc/curl-7.9.7 ) dbus? ( >=dev-libs/dbus-glib-0.60 sys-apps/dbus ) gdata? ( >=dev-libs/libgdata-0.17.2 ) dillo? ( www-client/dillo ) gnutls? ( >=net-libs/gnutls-3.0 ) imap? ( >=net-libs/libetpan-0.57 ) ldap? ( >=net-nds/openldap-2.0.7 ) litehtml? ( >=dev-libs/glib-2.36:2 >=dev-libs/gumbo-0.10 net-misc/curl media-libs/fontconfig ) nls? ( >=sys-devel/gettext-0.18 ) nntp? ( >=net-libs/libetpan-0.57 ) notification? ( dev-libs/glib:2 appindicator? ( dev-libs/libindicate:3[gtk] ) libcanberra? ( media-libs/libcanberra[gtk] ) libnotify? ( x11-libs/libnotify ) ) pdf? ( app-text/poppler[cairo] ) pgp? ( >=app-crypt/gpgme-1.0.0 ) session? ( x11-libs/libICE x11-libs/libSM ) smime? ( >=app-crypt/gpgme-1.0.0 ) spam-report? ( >=net-misc/curl-7.9.7 ) spell? ( >=app-text/enchant-2.0.0:2= ) startup-notification? ( x11-libs/startup-notification ) svg? ( >=gnome-base/librsvg-2.40.5 ) valgrind? ( dev-util/valgrind ) xface? ( >=media-libs/compface-1.4 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=An email client (and news reader) based on GTK+ -EAPI=7 -HOMEPAGE=https://www.claws-mail.org/ -IUSE=+appindicator archive bogofilter calendar clamav dbus debug dillo doc gdata +gnutls +imap ipv6 ldap +libcanberra +libnotify litehtml networkmanager nls nntp +notification pdf perl +pgp rss session sieve smime spamassassin spam-report spell startup-notification svg valgrind xface -KEYWORDS=~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/nettle:= net-mail/ytnef sys-libs/zlib:= x11-libs/cairo x11-libs/gdk-pixbuf:2[jpeg] >=x11-libs/gtk+-2.24:2 x11-libs/libX11 x11-libs/pango archive? ( app-arch/libarchive >=net-misc/curl-7.9.7 ) bogofilter? ( mail-filter/bogofilter ) calendar? ( >=dev-libs/libical-2.0.0:= >=net-misc/curl-7.9.7 ) dbus? ( >=dev-libs/dbus-glib-0.60 sys-apps/dbus ) gdata? ( >=dev-libs/libgdata-0.17.2 ) dillo? ( www-client/dillo ) gnutls? ( >=net-libs/gnutls-3.0 ) imap? ( >=net-libs/libetpan-0.57 ) ldap? ( >=net-nds/openldap-2.0.7 ) litehtml? ( >=dev-libs/glib-2.36:2 >=dev-libs/gumbo-0.10 net-misc/curl media-libs/fontconfig ) nls? ( >=sys-devel/gettext-0.18 ) nntp? ( >=net-libs/libetpan-0.57 ) notification? ( dev-libs/glib:2 appindicator? ( dev-libs/libindicate:3[gtk] ) libcanberra? ( media-libs/libcanberra[gtk] ) libnotify? ( x11-libs/libnotify ) ) pdf? ( app-text/poppler[cairo] ) pgp? ( >=app-crypt/gpgme-1.0.0 ) session? ( x11-libs/libICE x11-libs/libSM ) smime? ( >=app-crypt/gpgme-1.0.0 ) spam-report? ( >=net-misc/curl-7.9.7 ) spell? ( >=app-text/enchant-2.0.0:2= ) startup-notification? ( x11-libs/startup-notification ) svg? ( >=gnome-base/librsvg-2.40.5 ) valgrind? ( dev-util/valgrind ) app-misc/mime-types x11-misc/shared-mime-info clamav? ( app-antivirus/clamav ) networkmanager? ( net-misc/networkmanager ) pdf? ( app-text/ghostscript-gpl ) perl? ( dev-lang/perl:= ) rss? ( dev-libs/libxml2 net-misc/curl ) -REQUIRED_USE=appindicator? ( notification ) libcanberra? ( notification ) libnotify? ( notification ) networkmanager? ( dbus ) smime? ( pgp ) -SLOT=0 -SRC_URI=https://www.claws-mail.org/download.php?file=releases/claws-mail-3.17.6.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d4e0acb1e91b0e58856d5d036cd77688 diff --git a/metadata/md5-cache/mail-client/claws-mail-3.17.7 b/metadata/md5-cache/mail-client/claws-mail-3.17.7 index e8d850aa6f7b..2513304c4566 100644 --- a/metadata/md5-cache/mail-client/claws-mail-3.17.7 +++ b/metadata/md5-cache/mail-client/claws-mail-3.17.7 @@ -5,11 +5,11 @@ DESCRIPTION=An email client (and news reader) based on GTK+ EAPI=7 HOMEPAGE=https://www.claws-mail.org/ IUSE=+appindicator archive bogofilter calendar clamav dbus debug dillo doc gdata +gnutls +imap ipv6 ldap +libcanberra +libnotify litehtml networkmanager nls nntp +notification pdf perl +pgp rss session sieve smime spamassassin spam-report spell startup-notification svg valgrind xface -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-3 RDEPEND=dev-libs/nettle:= net-mail/ytnef sys-libs/zlib:= x11-libs/cairo x11-libs/gdk-pixbuf:2[jpeg] >=x11-libs/gtk+-2.24:2 x11-libs/libX11 x11-libs/pango archive? ( app-arch/libarchive >=net-misc/curl-7.9.7 ) bogofilter? ( mail-filter/bogofilter ) calendar? ( >=dev-libs/libical-2.0.0:= >=net-misc/curl-7.9.7 ) dbus? ( >=dev-libs/dbus-glib-0.60 sys-apps/dbus ) gdata? ( >=dev-libs/libgdata-0.17.2 ) dillo? ( www-client/dillo ) gnutls? ( >=net-libs/gnutls-3.0 ) imap? ( >=net-libs/libetpan-0.57 ) ldap? ( >=net-nds/openldap-2.0.7 ) litehtml? ( >=dev-libs/glib-2.36:2 >=dev-libs/gumbo-0.10 net-misc/curl media-libs/fontconfig ) nls? ( >=sys-devel/gettext-0.18 ) nntp? ( >=net-libs/libetpan-0.57 ) notification? ( dev-libs/glib:2 appindicator? ( dev-libs/libindicate:3[gtk] ) libcanberra? ( media-libs/libcanberra[gtk] ) libnotify? ( x11-libs/libnotify ) ) pdf? ( app-text/poppler[cairo] ) pgp? ( >=app-crypt/gpgme-1.0.0 ) session? ( x11-libs/libICE x11-libs/libSM ) smime? ( >=app-crypt/gpgme-1.0.0 ) spam-report? ( >=net-misc/curl-7.9.7 ) spell? ( >=app-text/enchant-2.0.0:2= ) startup-notification? ( x11-libs/startup-notification ) svg? ( >=gnome-base/librsvg-2.40.5 ) valgrind? ( dev-util/valgrind ) app-misc/mime-types x11-misc/shared-mime-info clamav? ( app-antivirus/clamav ) networkmanager? ( net-misc/networkmanager ) pdf? ( app-text/ghostscript-gpl ) perl? ( dev-lang/perl:= ) rss? ( dev-libs/libxml2 net-misc/curl ) REQUIRED_USE=appindicator? ( notification ) libcanberra? ( notification ) libnotify? ( notification ) networkmanager? ( dbus ) smime? ( pgp ) SLOT=0 SRC_URI=https://www.claws-mail.org/download.php?file=releases/claws-mail-3.17.7.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=45374989426518f7c229e3333eafc1a3 +_md5_=d4e0acb1e91b0e58856d5d036cd77688 diff --git a/metadata/md5-cache/mail-client/thunderbird-78.5.0 b/metadata/md5-cache/mail-client/thunderbird-78.5.0 new file mode 100644 index 000000000000..0f293ec21c29 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-78.5.0 @@ -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.14.3 >=net-libs/nodejs-10.19.0 virtual/pkgconfig >=virtual/rust-1.41.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.53.1 >=dev-libs/nspr-4.25 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 ) 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=Thunderbird Mail Client +EAPI=7 +HOMEPAGE=https://www.mozilla.org/thunderbird +IUSE=clang cpu_flags_arm_neon dbus debug eme-free hardened jack lto +openh264 pgo pulseaudio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_af l10n_ar l10n_ast l10n_be l10n_bg l10n_br l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_ko l10n_lt l10n_ms l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_th l10n_tr l10n_uz l10n_vi l10n_zh-CN l10n_zh-TW pgo +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.53.1 >=dev-libs/nspr-4.25 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 ) 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 ) ! thunderbird-78.5.0.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-78esr-patches-06.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-78esr-patches-06.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-78esr-patches-06.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/af.xpi -> thunderbird-78.5.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ar.xpi -> thunderbird-78.5.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ast.xpi -> thunderbird-78.5.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/be.xpi -> thunderbird-78.5.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/bg.xpi -> thunderbird-78.5.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/br.xpi -> thunderbird-78.5.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ca.xpi -> thunderbird-78.5.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cak.xpi -> thunderbird-78.5.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cs.xpi -> thunderbird-78.5.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cy.xpi -> thunderbird-78.5.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/da.xpi -> thunderbird-78.5.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/de.xpi -> thunderbird-78.5.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-78.5.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/el.xpi -> thunderbird-78.5.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-78.5.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-78.5.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-78.5.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-78.5.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/et.xpi -> thunderbird-78.5.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/eu.xpi -> thunderbird-78.5.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fa.xpi -> thunderbird-78.5.0-fa.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fi.xpi -> thunderbird-78.5.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fr.xpi -> thunderbird-78.5.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-78.5.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-78.5.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/gd.xpi -> thunderbird-78.5.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/gl.xpi -> thunderbird-78.5.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/he.xpi -> thunderbird-78.5.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hr.xpi -> thunderbird-78.5.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-78.5.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hu.xpi -> thunderbird-78.5.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hy-AM.xpi -> thunderbird-78.5.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/id.xpi -> thunderbird-78.5.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/is.xpi -> thunderbird-78.5.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/it.xpi -> thunderbird-78.5.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ja.xpi -> thunderbird-78.5.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ka.xpi -> thunderbird-78.5.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/kab.xpi -> thunderbird-78.5.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/kk.xpi -> thunderbird-78.5.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ko.xpi -> thunderbird-78.5.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/lt.xpi -> thunderbird-78.5.0-lt.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ms.xpi -> thunderbird-78.5.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-78.5.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nl.xpi -> thunderbird-78.5.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-78.5.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-78.5.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pl.xpi -> thunderbird-78.5.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-78.5.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-78.5.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/rm.xpi -> thunderbird-78.5.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ro.xpi -> thunderbird-78.5.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ru.xpi -> thunderbird-78.5.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/si.xpi -> thunderbird-78.5.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sk.xpi -> thunderbird-78.5.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sl.xpi -> thunderbird-78.5.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sq.xpi -> thunderbird-78.5.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sr.xpi -> thunderbird-78.5.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-78.5.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/th.xpi -> thunderbird-78.5.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/tr.xpi -> thunderbird-78.5.0-tr.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/uz.xpi -> thunderbird-78.5.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/vi.xpi -> thunderbird-78.5.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-78.5.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-78.5.0-zh-TW.xpi ) +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib 98584e405e2b0264d37e8f728327fed1 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_=00534787aa56b273c15ce0553aa170e1 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-78.5.0 b/metadata/md5-cache/mail-client/thunderbird-bin-78.5.0 new file mode 100644 index 000000000000..8e5706f53b82 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-bin-78.5.0 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) +DEFINED_PHASES=install postinst postrm preinst prepare unpack +DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Thunderbird Mail Client +EAPI=7 +HOMEPAGE=https://www.thunderbird.net/ +IUSE=+alsa +ffmpeg +pulseaudio selinux wayland l10n_af l10n_ar l10n_ast l10n_be l10n_bg l10n_br l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_ko l10n_lt l10n_ms l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_th l10n_tr l10n_uz l10n_vi l10n_zh-CN l10n_zh-TW +KEYWORDS=-* amd64 x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-libs/atk dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-sound/pulseaudio ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=strip +SLOT=0/78 +SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/en-US/thunderbird-78.5.0.tar.bz2 -> thunderbird-bin_x86_64-78.5.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-i686/en-US/thunderbird-78.5.0.tar.bz2 -> thunderbird-bin_i686-78.5.0.tar.bz2 ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/af.xpi -> thunderbird-78.5.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ar.xpi -> thunderbird-78.5.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ast.xpi -> thunderbird-78.5.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/be.xpi -> thunderbird-78.5.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/bg.xpi -> thunderbird-78.5.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/br.xpi -> thunderbird-78.5.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ca.xpi -> thunderbird-78.5.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cak.xpi -> thunderbird-78.5.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cs.xpi -> thunderbird-78.5.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/cy.xpi -> thunderbird-78.5.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/da.xpi -> thunderbird-78.5.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/de.xpi -> thunderbird-78.5.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-78.5.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/el.xpi -> thunderbird-78.5.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-78.5.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-78.5.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-78.5.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-78.5.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/et.xpi -> thunderbird-78.5.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/eu.xpi -> thunderbird-78.5.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fa.xpi -> thunderbird-78.5.0-fa.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fi.xpi -> thunderbird-78.5.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fr.xpi -> thunderbird-78.5.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-78.5.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-78.5.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/gd.xpi -> thunderbird-78.5.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/gl.xpi -> thunderbird-78.5.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/he.xpi -> thunderbird-78.5.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hr.xpi -> thunderbird-78.5.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-78.5.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hu.xpi -> thunderbird-78.5.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/hy-AM.xpi -> thunderbird-78.5.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/id.xpi -> thunderbird-78.5.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/is.xpi -> thunderbird-78.5.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/it.xpi -> thunderbird-78.5.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ja.xpi -> thunderbird-78.5.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ka.xpi -> thunderbird-78.5.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/kab.xpi -> thunderbird-78.5.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/kk.xpi -> thunderbird-78.5.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ko.xpi -> thunderbird-78.5.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/lt.xpi -> thunderbird-78.5.0-lt.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ms.xpi -> thunderbird-78.5.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-78.5.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nl.xpi -> thunderbird-78.5.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-78.5.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-78.5.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pl.xpi -> thunderbird-78.5.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-78.5.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-78.5.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/rm.xpi -> thunderbird-78.5.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ro.xpi -> thunderbird-78.5.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/ru.xpi -> thunderbird-78.5.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/si.xpi -> thunderbird-78.5.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sk.xpi -> thunderbird-78.5.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sl.xpi -> thunderbird-78.5.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sq.xpi -> thunderbird-78.5.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sr.xpi -> thunderbird-78.5.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-78.5.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/th.xpi -> thunderbird-78.5.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/tr.xpi -> thunderbird-78.5.0-tr.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/uz.xpi -> thunderbird-78.5.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/vi.xpi -> thunderbird-78.5.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-78.5.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/78.5.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-78.5.0-zh-TW.xpi ) +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 pax-utils a41d1fd1c111289ffa04490de6ee79d7 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=d364f51ee6af70a89e0b72cb2b71d2da diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index ccc22f9c53d4..7d5041b491e5 100644 Binary files a/metadata/md5-cache/mail-filter/Manifest.gz and b/metadata/md5-cache/mail-filter/Manifest.gz differ diff --git a/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2 b/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2 deleted file mode 100644 index 46a0a19739ea..000000000000 --- a/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=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(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=mail-mta/courier dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=Python filtering architecture for the Courier MTA -EAPI=7 -HOMEPAGE=https://pypi.org/project/courier-pythonfilter/ -IUSE=python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=mail-mta/courier 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=mirror://pypi/c/courier-pythonfilter/courier-pythonfilter-3.0.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d725da93d726ba94047cbb083a1ab6d5 diff --git a/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2-r1 b/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2-r1 index e3060503fc0d..18a3c41b8a04 100644 --- a/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2-r1 +++ b/metadata/md5-cache/mail-filter/courier-pythonfilter-3.0.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Python filtering architecture for the Courier MTA EAPI=7 HOMEPAGE=https://pypi.org/project/courier-pythonfilter/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=GPL-3 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/c/courier-pythonfilter/courier-pythonfilter-3.0.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9b7861b9c6ecc37f09fcdb33f8add7f0 +_md5_=45258a78e1b184003162cddd7dce7cbf diff --git a/metadata/md5-cache/mail-mta/Manifest.gz b/metadata/md5-cache/mail-mta/Manifest.gz index 8a4b3e8990ac..61fd50a0ba5a 100644 Binary files a/metadata/md5-cache/mail-mta/Manifest.gz and b/metadata/md5-cache/mail-mta/Manifest.gz differ diff --git a/metadata/md5-cache/mail-mta/courier-1.0.14 b/metadata/md5-cache/mail-mta/courier-1.0.14 index 1dd99bedf958..4dd1f3151ab0 100644 --- a/metadata/md5-cache/mail-mta/courier-1.0.14 +++ b/metadata/md5-cache/mail-mta/courier-1.0.14 @@ -4,11 +4,11 @@ DESCRIPTION=An MTA designed specifically for maildirs EAPI=7 HOMEPAGE=https://www.courier-mta.org/ IUSE=postgres ldap libressl mysql pam nls ipv6 spell fax crypt norewrite fam web webmail gnutls -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 s390 sparc x86 LICENSE=GPL-3 PDEPEND=pam? ( net-mail/mailbase ) crypt? ( >=app-crypt/gnupg-1.0.4 ) RDEPEND=>=net-libs/courier-authlib-0.70.0 >=net-libs/courier-unicode-2.1 net-dns/libidn:= gnutls? ( net-libs/gnutls:= ) !gnutls? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) >=sys-libs/gdbm-1.8.0 dev-libs/libpcre app-misc/mime-types fax? ( >=media-libs/netpbm-9.12 app-text/ghostscript-gpl >=net-dialup/mgetty-1.1.28 ) pam? ( sys-libs/pam ) mysql? ( dev-db/mysql-connector-c ) ldap? ( >=net-nds/openldap-1.2.11 ) postgres? ( dev-db/postgresql:= ) spell? ( app-text/aspell ) fam? ( virtual/fam ) !mail-filter/maildrop !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/postfix !mail-mta/qmail-ldap !mail-mta/sendmail !mail-mta/ssmtp[mta] !mail-mta/opensmtpd !net-mail/dot-forward !sys-apps/ucspi-tcp dev-lang/perl sys-process/procps !net-mail/bincimap !net-mail/courier-imap !net-mail/cyrus-imapd !net-mail/uw-imap SLOT=0 SRC_URI=mirror://sourceforge/courier/courier-1.0.14.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2f4e0fea8c3f52d800759d1f14fedddc +_md5_=63980bbcf548a71e8a19291cea276cf5 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 63029fe827dd..01dcbc9e9fe3 100644 Binary files a/metadata/md5-cache/media-gfx/Manifest.gz and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/fbida-2.14-r2 b/metadata/md5-cache/media-gfx/fbida-2.14-r2 index fba61d9a06ff..17a9d89f2ccf 100644 --- a/metadata/md5-cache/media-gfx/fbida-2.14-r2 +++ b/metadata/md5-cache/media-gfx/fbida-2.14-r2 @@ -4,11 +4,11 @@ DESCRIPTION=Image viewers for the framebuffer console (fbi) and X11 (ida) EAPI=7 HOMEPAGE=https://www.kraxel.org/blog/linux/fbida/ IUSE=curl fbcon ghostscript +gif lirc +png scanner +tiff X +webp -KEYWORDS=~alpha ~amd64 arm ~hppa ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm ~hppa ppc ppc64 sparc x86 LICENSE=GPL-2 IJG RDEPEND=!media-gfx/fbi >=media-libs/fontconfig-2.2 >=media-libs/freetype-2.0 app-text/poppler media-libs/libepoxy media-libs/libexif virtual/jpeg:* virtual/ttf-fonts x11-libs/cairo[opengl] curl? ( net-misc/curl ) fbcon? ( app-text/poppler[cairo] media-libs/mesa[X(+),gbm] x11-libs/libdrm x11-libs/pixman ) gif? ( media-libs/giflib:= ) lirc? ( app-misc/lirc ) png? ( media-libs/libpng:* ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff:* ) webp? ( media-libs/libwebp ) X? ( >=x11-libs/motif-2.3:0[xft] x11-libs/libX11 x11-libs/libXpm x11-libs/libXt ) ghostscript? ( app-text/ghostscript-gpl ) REQUIRED_USE=ghostscript? ( tiff ) SLOT=0 SRC_URI=https://www.kraxel.org/releases/fbida/fbida-2.14.tar.gz mirror://gentoo/ida.png.bz2 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e037f433609d25acf7f698c4e0ef1871 +_md5_=ba437fb2d51e43d098235e83383f27bd diff --git a/metadata/md5-cache/media-gfx/gmic-2.9.3 b/metadata/md5-cache/media-gfx/gmic-2.9.3 new file mode 100644 index 000000000000..b36a07035d4f --- /dev/null +++ b/metadata/md5-cache/media-gfx/gmic-2.9.3 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare pretend test +DEPEND=curl? ( net-misc/curl ) digikam? ( media-gfx/digikam >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) fftw? ( sci-libs/fftw:3.0=[threads] ) gimp? ( media-gfx/gimp:0/2 >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) graphicsmagick? ( media-gfx/graphicsmagick:0= ) jpeg? ( virtual/jpeg:0 ) krita? ( >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) opencv? ( >=media-libs/opencv-2.3.1a-r1:0= ) openexr? ( media-libs/ilmbase:0= media-libs/openexr:0= ) png? ( media-libs/libpng:0= ) qt5? ( >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) tiff? ( media-libs/tiff:0 ) X? ( x11-libs/libX11 x11-libs/libXext ) zlib? ( sys-libs/zlib:0= ) digikam? ( dev-qt/linguist-tools ) gimp? ( dev-qt/linguist-tools ) krita? ( dev-qt/linguist-tools ) qt5? ( dev-qt/linguist-tools ) +DESCRIPTION=GREYC's Magic Image Converter +EAPI=7 +HOMEPAGE=https://gmic.eu/ https://github.com/dtschump/gmic +IUSE=+cli curl digikam ffmpeg fftw gimp graphicsmagick jpeg krita opencv openexr openmp png qt5 static-libs tiff X zlib +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=CeCILL-2 GPL-3 +RDEPEND=curl? ( net-misc/curl ) digikam? ( media-gfx/digikam >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) fftw? ( sci-libs/fftw:3.0=[threads] ) gimp? ( media-gfx/gimp:0/2 >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) graphicsmagick? ( media-gfx/graphicsmagick:0= ) jpeg? ( virtual/jpeg:0 ) krita? ( >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) opencv? ( >=media-libs/opencv-2.3.1a-r1:0= ) openexr? ( media-libs/ilmbase:0= media-libs/openexr:0= ) png? ( media-libs/libpng:0= ) qt5? ( >=dev-qt/qtcore-5.2.0:5= >=dev-qt/qtgui-5.2.0:5= >=dev-qt/qtnetwork-5.2.0:5= >=dev-qt/qtwidgets-5.2.0:5= ) tiff? ( media-libs/tiff:0 ) X? ( x11-libs/libX11 x11-libs/libXext ) zlib? ( sys-libs/zlib:0= ) ffmpeg? ( media-video/ffmpeg:0= ) +REQUIRED_USE=|| ( cli digikam gimp krita qt5 ) digikam? ( png zlib fftw X ) gimp? ( png zlib fftw X ) krita? ( png zlib fftw X ) qt5? ( png zlib fftw X ) +SLOT=0 +SRC_URI=https://gmic.eu/files/source/gmic_2.9.3.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=326cbcb8cfb1d882b7d0835dd22d1d37 diff --git a/metadata/md5-cache/media-gfx/wings-2.2.6.1 b/metadata/md5-cache/media-gfx/wings-2.2.6.1 index 8e81068590cc..a1fb63098e0d 100644 --- a/metadata/md5-cache/media-gfx/wings-2.2.6.1 +++ b/metadata/md5-cache/media-gfx/wings-2.2.6.1 @@ -3,10 +3,10 @@ DEPEND=>dev-lang/erlang-21[wxwidgets] dev-libs/cl media-libs/glu media-libs/libs DESCRIPTION=Wings 3D is an advanced subdivision modeler EAPI=7 HOMEPAGE=http://www.wings3d.com/ -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=>dev-lang/erlang-21[wxwidgets] dev-libs/cl media-libs/glu media-libs/libsdl[opengl] virtual/opengl SLOT=0 SRC_URI=mirror://sourceforge/wings/wings-2.2.6.1.tar.bz2 _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9c66ebdb28e07bac4dcb310c7b9f7939 +_md5_=a5fa6670c7c664a567c0e6f5a929294d diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index ce4b65a05217..0e5780bbf0ab 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/fontconfig-2.13.1-r2 b/metadata/md5-cache/media-libs/fontconfig-2.13.1-r2 index 4f6acf34922f..abba00786c18 100644 --- a/metadata/md5-cache/media-libs/fontconfig-2.13.1-r2 +++ b/metadata/md5-cache/media-libs/fontconfig-2.13.1-r2 @@ -5,7 +5,7 @@ DESCRIPTION=A library for configuring and customizing font access EAPI=7 HOMEPAGE=https://fontconfig.org/ IUSE=doc 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 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 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 ~x86-winnt +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 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 ~x86-winnt LICENSE=MIT PDEPEND=!x86-winnt? ( app-eselect/eselect-fontconfig ) virtual/ttf-fonts RDEPEND=>=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(-)?] >=media-libs/freetype-2.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !elibc_Darwin? ( !elibc_SunOS? ( sys-apps/util-linux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) elibc_Darwin? ( sys-libs/native-uuid ) elibc_SunOS? ( sys-libs/libuuid ) virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] @@ -13,4 +13,4 @@ RESTRICT=test SLOT=1.0 SRC_URI=https://fontconfig.org/release/fontconfig-2.13.1.tar.bz2 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=19116a8473dff02f11714fe7830c179d +_md5_=6bf9df9484341d671c4e8ae24395100a diff --git a/metadata/md5-cache/media-libs/freetype-2.10.2-r1 b/metadata/md5-cache/media-libs/freetype-2.10.2-r1 deleted file mode 100644 index 441fcfec5fe6..000000000000 --- a/metadata/md5-cache/media-libs/freetype-2.10.2-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] brotli? ( app-arch/brotli[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.2.51: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(-)?] ) utils? ( X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXau-1.0.7-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(-)?] >=x11-libs/libXdmcp-1.1.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(-)?] ) ) -DESCRIPTION=A high-quality and portable font engine -EAPI=7 -HOMEPAGE=https://www.freetype.org/ -IUSE=X +adobe-cff bindist brotli bzip2 +cleartype_hinting debug fontforge harfbuzz infinality png static-libs utils doc 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 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt -LICENSE=|| ( FTL GPL-2+ ) -PDEPEND=infinality? ( media-libs/fontconfig-infinality ) -RDEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] brotli? ( app-arch/brotli[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.2.51: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(-)?] ) utils? ( X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXau-1.0.7-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(-)?] >=x11-libs/libXdmcp-1.1.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(-)?] ) ) -RESTRICT=!bindist? ( bindist ) -SLOT=2 -SRC_URI=mirror://sourceforge/freetype/freetype-2.10.2.tar.xz mirror://nongnu/freetype/freetype-2.10.2.tar.xz utils? ( mirror://sourceforge/freetype/ft2demos-2.10.2.tar.xz mirror://nongnu/freetype/ft2demos-2.10.2.tar.xz ) doc? ( mirror://sourceforge/freetype/freetype-doc-2.10.2.tar.xz mirror://nongnu/freetype/freetype-doc-2.10.2.tar.xz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a49b3384a30dc48aef55c932a4f764dd diff --git a/metadata/md5-cache/media-libs/freetype-2.10.3 b/metadata/md5-cache/media-libs/freetype-2.10.3 deleted file mode 100644 index 125e42153dff..000000000000 --- a/metadata/md5-cache/media-libs/freetype-2.10.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] brotli? ( app-arch/brotli[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.2.51: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(-)?] ) utils? ( X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXau-1.0.7-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(-)?] >=x11-libs/libXdmcp-1.1.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(-)?] ) ) -DESCRIPTION=A high-quality and portable font engine -EAPI=7 -HOMEPAGE=https://www.freetype.org/ -IUSE=X +adobe-cff bindist brotli bzip2 +cleartype_hinting debug fontforge harfbuzz infinality png static-libs utils doc 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 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt -LICENSE=|| ( FTL GPL-2+ ) -PDEPEND=infinality? ( media-libs/fontconfig-infinality ) -RDEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] brotli? ( app-arch/brotli[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) png? ( >=media-libs/libpng-1.2.51: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(-)?] ) utils? ( X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXau-1.0.7-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(-)?] >=x11-libs/libXdmcp-1.1.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(-)?] ) ) -RESTRICT=!bindist? ( bindist ) -SLOT=2 -SRC_URI=mirror://sourceforge/freetype/freetype-2.10.3.tar.xz mirror://nongnu/freetype/freetype-2.10.3.tar.xz utils? ( mirror://sourceforge/freetype/ft2demos-2.10.3.tar.xz mirror://nongnu/freetype/ft2demos-2.10.3.tar.xz ) doc? ( mirror://sourceforge/freetype/freetype-doc-2.10.3.tar.xz mirror://nongnu/freetype/freetype-doc-2.10.3.tar.xz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=83f9a4b118e763d40a61d0d388f57ff6 diff --git a/metadata/md5-cache/media-libs/hamlib-3.3-r1 b/metadata/md5-cache/media-libs/hamlib-3.3-r1 new file mode 100644 index 000000000000..bf2b7fd556e9 --- /dev/null +++ b/metadata/md5-cache/media-libs/hamlib-3.3-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND==virtual/libusb-0* dev-libs/libxml2 sys-libs/readline:0= perl? ( dev-lang/perl ) 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] ) ) tcl? ( dev-lang/tcl:0= ) virtual/pkgconfig dev-lang/swig >=sys-devel/libtool-2.2 doc? ( app-doc/doxygen ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Ham radio backend rig control libraries +EAPI=6 +HOMEPAGE=https://www.hamlib.org +IUSE=doc perl python tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2 GPL-2 +RDEPEND==virtual/libusb-0* dev-libs/libxml2 sys-libs/readline:0= perl? ( dev-lang/perl ) 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] ) ) tcl? ( dev-lang/tcl:0= ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://www.github.com/hamlib/hamlib/releases/download/3.3-r1/hamlib-3.3.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c599e7a32538b68843a5c67315b9eb07 diff --git a/metadata/md5-cache/media-libs/kodi-platform-18.0_pre20180301 b/metadata/md5-cache/media-libs/kodi-platform-18.0_pre20180301 deleted file mode 100644 index cfe3d083400a..000000000000 --- a/metadata/md5-cache/media-libs/kodi-platform-18.0_pre20180301 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =dev-libs/libplatform-2* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi platform support library -EAPI=6 -HOMEPAGE=https://kodi.tv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =dev-libs/libplatform-2* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/xbmc/kodi-platform/tarball/e8574b8 -> kodi-platform-18.0_pre20180301.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9780186b71a59b709523b0d336d4775d diff --git a/metadata/md5-cache/media-libs/libass-0.15.0 b/metadata/md5-cache/media-libs/libass-0.15.0 new file mode 100644 index 000000000000..11348246034a --- /dev/null +++ b/metadata/md5-cache/media-libs/libass-0.15.0 @@ -0,0 +1,14 @@ +BDEPEND=amd64? ( dev-lang/nasm ) x86? ( dev-lang/nasm ) virtual/pkgconfig +DEFINED_PHASES=compile configure install test +DEPEND=>=dev-libs/fribidi-0.19.5-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(-)?] >=media-libs/freetype-2.5.0.1: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(-)?] >=virtual/libiconv-0-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(-)?] >=media-libs/harfbuzz-0.9.12[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +DESCRIPTION=Library for SSA/ASS subtitles rendering +EAPI=7 +HOMEPAGE=https://github.com/libass/libass +IUSE=+fontconfig 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 ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=ISC +RDEPEND=>=dev-libs/fribidi-0.19.5-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(-)?] >=media-libs/freetype-2.5.0.1: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(-)?] >=virtual/libiconv-0-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(-)?] >=media-libs/harfbuzz-0.9.12[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +SLOT=0/9 +SRC_URI=https://github.com/libass/libass/releases/download/0.15.0/libass-0.15.0.tar.xz +_eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=45f12c145110c3f8053ce974da5d7ded diff --git a/metadata/md5-cache/media-libs/libplacebo-2.72.0 b/metadata/md5-cache/media-libs/libplacebo-2.72.2 similarity index 99% rename from metadata/md5-cache/media-libs/libplacebo-2.72.0 rename to metadata/md5-cache/media-libs/libplacebo-2.72.2 index c0ea07921493..645a3ce8e754 100644 --- a/metadata/md5-cache/media-libs/libplacebo-2.72.0 +++ b/metadata/md5-cache/media-libs/libplacebo-2.72.2 @@ -11,6 +11,6 @@ RDEPEND=glslang? ( dev-util/glslang[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-) REQUIRED_USE=vulkan? ( || ( glslang shaderc ) ) RESTRICT=!test? ( test ) SLOT=0/72 -SRC_URI=https://code.videolan.org/videolan/libplacebo/-/archive/v2.72.0/libplacebo-v2.72.0.tar.gz +SRC_URI=https://code.videolan.org/videolan/libplacebo/-/archive/v2.72.2/libplacebo-v2.72.2.tar.gz _eclasses_=meson 71d293a701d6362387e1214da368c848 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e7ebc86e2ef50f7d290fbec920318bcc diff --git a/metadata/md5-cache/media-libs/libpng-1.6.37-r2 b/metadata/md5-cache/media-libs/libpng-1.6.37-r2 index af4721e95f04..aa38b1f39cad 100644 --- a/metadata/md5-cache/media-libs/libpng-1.6.37-r2 +++ b/metadata/md5-cache/media-libs/libpng-1.6.37-r2 @@ -5,10 +5,10 @@ DESCRIPTION=Portable Network Graphics library EAPI=7 HOMEPAGE=http://www.libpng.org/ IUSE=apng cpu_flags_arm_neon cpu_flags_x86_sse 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 -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 ~x86-winnt +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 ~x86-winnt LICENSE=libpng2 RDEPEND=>=sys-libs/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0/16 SRC_URI=mirror://sourceforge/libpng/libpng-1.6.37.tar.xz apng? ( mirror://sourceforge/apng/libpng-1.6.37-apng.patch.gz ) _eclasses_=libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a30289d13bca0ef294a89dd095cc21b6 +_md5_=14b643dc21f69949936393ee193ad6a4 diff --git a/metadata/md5-cache/media-libs/lilv-0.24.10 b/metadata/md5-cache/media-libs/lilv-0.24.10 index c8f810c09068..33fae7d8cc61 100644 --- a/metadata/md5-cache/media-libs/lilv-0.24.10 +++ b/metadata/md5-cache/media-libs/lilv-0.24.10 @@ -4,11 +4,11 @@ DESCRIPTION=Library to make the use of LV2 plugins as simple as possible for app EAPI=6 HOMEPAGE=http://drobilla.net/software/lilv/ IUSE=doc +dyn-manifest 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 ppc ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 LICENSE=ISC RDEPEND=dev-libs/serd[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/sord[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/libsndfile media-libs/lv2[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/sratom[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://download.drobilla.net/lilv-0.24.10.tar.bz2 _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb waf-utils cf9742c01975dc707eb982114a9d70fa -_md5_=56d6fb8dcb889fc3dafeafb1ffce19f6 +_md5_=1e428d2b21b2398d31478b1b6f64c008 diff --git a/metadata/md5-cache/media-libs/lilv-0.24.8-r1 b/metadata/md5-cache/media-libs/lilv-0.24.8-r1 deleted file mode 100644 index 371f47a53f81..000000000000 --- a/metadata/md5-cache/media-libs/lilv-0.24.8-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-libs/serd-0.30.0-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(-)?] >=dev-libs/sord-0.16.0-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(-)?] media-libs/libsndfile >=media-libs/lv2-1.16.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(-)?] media-libs/sratom[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-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] dev-lang/python:3.6[threads(+)] ) virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-python/unittest2 ) -DESCRIPTION=Library to make the use of LV2 plugins as simple as possible for applications -EAPI=6 -HOMEPAGE=http://drobilla.net/software/lilv/ -IUSE=doc +dyn-manifest 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 ppc ppc64 ~sparc x86 -LICENSE=ISC -RDEPEND=>=dev-libs/serd-0.30.0-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(-)?] >=dev-libs/sord-0.16.0-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(-)?] media-libs/libsndfile >=media-libs/lv2-1.16.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(-)?] media-libs/sratom[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=http://download.drobilla.net/lilv-0.24.8.tar.bz2 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb waf-utils cf9742c01975dc707eb982114a9d70fa -_md5_=a3578f9faa041f1b873bacebe126d85e diff --git a/metadata/md5-cache/media-libs/mesa-20.3.0_rc2 b/metadata/md5-cache/media-libs/mesa-20.3.0_rc2 new file mode 100644 index 000000000000..85e743b3c29c --- /dev/null +++ b/metadata/md5-cache/media-libs/mesa-20.3.0_rc2 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) opencl? ( >=sys-devel/gcc-4.6 ) sys-devel/bison sys-devel/flex virtual/pkgconfig || ( ( dev-lang/python:3.9 >=dev-python/mako-0.8.0[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 >=dev-python/mako-0.8.0[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 >=dev-python/mako-0.8.0[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 >=dev-python/mako-0.8.0[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 +DEFINED_PHASES=compile configure install pretend setup test +DEPEND=>=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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =sys-devel/gcc-4.6 ) sys-devel/bison sys-devel/flex virtual/pkgconfig || ( ( dev-lang/python:3.9 >=dev-python/mako-0.8.0[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 >=dev-python/mako-0.8.0[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 >=dev-python/mako-0.8.0[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 >=dev-python/mako-0.8.0[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install pretend setup test unpack -DEPEND=!app-eselect/eselect-mesa >=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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =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(-)?] >=media-libs/libglvnd-1.3.2[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(-)?] >=sys-libs/zlib-1.2.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] gallium? ( unwind? ( sys-libs/libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) llvm? ( video_cards_radeonsi? ( virtual/libelf: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(-)?] ) video_cards_r600? ( virtual/libelf: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(-)?] ) video_cards_radeon? ( virtual/libelf: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(-)?] ) ) lm-sensors? ( sys-apps/lm-sensors:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opencl? ( >=virtual/opencl-3[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/libclc virtual/libelf: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(-)?] ) vaapi? ( >=x11-libs/libva-1.7.3:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) vdpau? ( >=x11-libs/libvdpau-1.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xvmc? ( >=x11-libs/libXvMC-1.0.8:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) selinux? ( sys-libs/libselinux[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) wayland? ( >=dev-libs/wayland-1.15.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(-)?] >=dev-libs/wayland-protocols-1.8 ) >=x11-libs/libdrm-2.4.100[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vivante?,video_cards_vmware?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] video_cards_intel? ( !video_cards_i965? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) ) video_cards_i915? ( >=x11-libs/libdrm-2.4.100[video_cards_intel] ) vulkan-overlay? ( dev-util/glslang: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(-)?] ) X? ( >=x11-libs/libX11-1.6.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxshmfence-1.1:=[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/libXdamage-1.1.4-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(-)?] >=x11-libs/libXext-1.3.2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXxf86vm-1.1.3:=[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/libxcb-1.13:=[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/libXfixes:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zink? ( media-libs/vulkan-loader:=[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:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) video_cards_r100? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r200? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r300? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_r600? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeon? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_radeon] ) video_cards_radeonsi? ( >=x11-libs/libdrm-2.4.100[video_cards_amdgpu] ) gallium? ( llvm? ( opencl? ( video_cards_r600? ( || ( sys-devel/clang:11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] sys-devel/clang:9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,llvm_targets_AMDGPU(-)] ) =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 ) SLOT=0 SRC_URI=https://github.com/quodlibet/mutagen/releases/download/release-1.45.1/mutagen-1.45.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ab7b8e8d620eb09c2e511095255c39ae +_md5_=e6dce502657fd24fa3128b1fb4025f4f diff --git a/metadata/md5-cache/media-libs/opencolorio-1.1.1 b/metadata/md5-cache/media-libs/opencolorio-1.1.1 index e641d256fa48..bd226c1e4752 100644 --- a/metadata/md5-cache/media-libs/opencolorio-1.1.1 +++ b/metadata/md5-cache/media-libs/opencolorio-1.1.1 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/imageworks/OpenColorIO/archive/v1.1.1.tar.gz -> opencolorio-1.1.1.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=18b375ec9c928e56965dd1499a0df443 +_md5_=ecdce930355ddf4a00afefb8628401a9 diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index 4690b060e75e..10dc377debd9 100644 Binary files a/metadata/md5-cache/media-plugins/Manifest.gz and b/metadata/md5-cache/media-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-2.0.3 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-2.0.3 deleted file mode 100644 index 490321d4c926..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-modplug-2.0.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-libs/libmodplug-0.8.9.0 -DESCRIPTION=Modplug decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.modplug -KEYWORDS=~amd64 ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-libs/libmodplug-0.8.9.0 -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.modplug/archive/2.0.3-Leia.tar.gz -> kodi-audiodecoder-modplug-2.0.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ca259e173211a41f08f1e8f62779d4ba diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.0 deleted file mode 100644 index 5522cf423289..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Nosefart decoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/audiodecoder.nosefart -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.nosefart/archive/2.0.0-Leia.tar.gz -> kodi-audiodecoder-nosefart-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c59c079bc0985e1e197c50f9253cc2f diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.1 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.1 deleted file mode 100644 index 58e3c4e1202c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=Nosefart decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.nosefart -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.nosefart/archive/2.0.1-Leia.tar.gz -> kodi-audiodecoder-nosefart-2.0.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=334528c99c1a263aec742f1ce7e46747 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-1.2.2 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-1.2.2 deleted file mode 100644 index 66c18a3a668c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-1.2.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* media-libs/libsidplay:2 -DESCRIPTION=SidPlay decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.sidplay -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* media-libs/libsidplay:2 -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.sidplay/archive/1.2.2-Leia.tar.gz -> kodi-audiodecoder-sidplay-1.2.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=370ce4b297531aec437aa166ce97fec1 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-2.1.3 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-2.1.3 deleted file mode 100644 index 8840b156a4dc..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-sidplay-2.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* media-libs/libsidplay:2 -DESCRIPTION=SidPlay decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.sidplay -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* media-libs/libsidplay:2 -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.sidplay/archive/2.1.3-Matrix.tar.gz -> kodi-audiodecoder-sidplay-2.1.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f7620a2b76cf36e8245c127fe869aa7a diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.0 deleted file mode 100644 index 18329564e28d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=SPC decoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/audiodecoder.snesapu -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.snesapu/archive/2.0.0-Leia.tar.gz -> kodi-audiodecoder-snesapu-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4a5d002ba5d767cbb7cbca6abb132792 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.1 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.1 deleted file mode 100644 index 214e94a1df7f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=SPC decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.snesapu -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.snesapu/archive/2.0.1-Leia.tar.gz -> kodi-audiodecoder-snesapu-2.0.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4ebccb2b3178585d06b99a3c5d761e66 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.2 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.2 deleted file mode 100644 index b837bbad2704..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=SPC decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.snesapu -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.snesapu/archive/2.0.2-Leia.tar.gz -> kodi-audiodecoder-snesapu-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4ebccb2b3178585d06b99a3c5d761e66 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.1.3 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.1.3 deleted file mode 100644 index dc081f9fcc2f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-snesapu-2.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=SPC decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.snesapu -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.snesapu/archive/2.1.3-Matrix.tar.gz -> kodi-audiodecoder-snesapu-2.1.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9035dbbc65f5b78eece52352876a9448 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.0 deleted file mode 100644 index 914c842f9aab..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=SPC decoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/audiodecoder.stsound -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.stsound/archive/2.0.0-Leia.tar.gz -> kodi-audiodecoder-stsound-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7923eb3d98f3dc787cd0f8fb2e356318 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.1 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.1 deleted file mode 100644 index f2f0af1b13bc..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=SPC decoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/audiodecoder.stsound -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.stsound/archive/2.0.1-Leia.tar.gz -> kodi-audiodecoder-stsound-2.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=467a271f2c4424d60225d59f53831cee diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.2 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.2 deleted file mode 100644 index bb6bbad279bd..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=SPC decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.stsound -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.stsound/archive/2.0.2-Leia.tar.gz -> kodi-audiodecoder-stsound-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=83075dbe3ec7fbc49da9cb5c67ec8d0d diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.1.3 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.1.3 deleted file mode 100644 index 6caad50b69de..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-stsound-2.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=SPC decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.stsound -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.stsound/archive/2.1.3-Matrix.tar.gz -> kodi-audiodecoder-stsound-2.1.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c8e476996b1ea9a66e79f924594884d3 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.0.5 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.0.5 deleted file mode 100644 index 1776df8d263b..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.0.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=Timidity decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.timidity -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.timidity/archive/2.0.5-Leia.tar.gz -> kodi-audiodecoder-timidity-2.0.5-Leia.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a797b695acd2e15df834e10785f3bcbf diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.3.0 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.3.0 deleted file mode 100644 index 87c4a21b43db..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-timidity-2.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Timidity decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.timidity -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.timidity/archive/2.3.0-Matrix.tar.gz -> kodi-audiodecoder-timidity-2.3.0-Matrix.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7621697c96ef468b0dce25668a56eecb diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.3 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.3 deleted file mode 100644 index ea1a81db34b5..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=vgmstream decoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/audiodecoder.vgmstream -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.vgmstream/archive/1.1.3-Leia.tar.gz -> kodi-audiodecoder-vgmstream-1.1.3.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a21239c2e71def27fe2c8a1c29609e83 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.4 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.4 deleted file mode 100644 index b9de88c6d3d4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=vgmstream decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.vgmstream -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.vgmstream/archive/1.1.4-Leia.tar.gz -> kodi-audiodecoder-vgmstream-1.1.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cea769a4ad2c298df9ebbd4b2cdb3a38 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.5 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.5 deleted file mode 100644 index 0bf48b439895..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-1.1.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=vgmstream decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.vgmstream -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.vgmstream/archive/1.1.5-Leia.tar.gz -> kodi-audiodecoder-vgmstream-1.1.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cea769a4ad2c298df9ebbd4b2cdb3a38 diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-2.1.2 b/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-2.1.2 deleted file mode 100644 index f00938bbed1d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-vgmstream-2.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=vgmstream decoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audiodecoder.vgmstream -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/audiodecoder.vgmstream/archive/2.1.2-Matrix.tar.gz -> kodi-audiodecoder-vgmstream-2.1.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cd822441b63c906c11d821c6b3b29916 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.0.6 b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.0.6 deleted file mode 100644 index 039e00633c01..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.0.6 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-libs/libogg-1.3.4 media-libs/flac -DESCRIPTION=Flac encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.flac -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-libs/libogg-1.3.4 media-libs/flac -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.flac/archive/2.0.6-Leia.tar.gz -> kodi-audioencoder-flac-2.0.6.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a362531c708f630fca377473f1b3015c diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.1.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.1.1 deleted file mode 100644 index e075a5308f4e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-flac-2.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 media-libs/flac -DESCRIPTION=Flac encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.flac -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 media-libs/flac -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.flac/archive/2.1.1-Matrix.tar.gz -> kodi-audioencoder-flac-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bfc1679efe8dba62469840bd9a305cd4 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.1 deleted file mode 100644 index abc8b9510e44..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* media-sound/lame sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Lame MP3 encoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/audioencoder.lame -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* media-sound/lame -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/v2.0.1.tar.gz -> kodi-audioencoder-lame-2.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=89105bccdad41b18a1144a98ed11b21e diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.2 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.2 deleted file mode 100644 index 8d39aa670581..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-sound/lame-3.100 -DESCRIPTION=Lame MP3 encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.lame -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* >=media-sound/lame-3.100 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/2.0.2-Leia.tar.gz -> kodi-audioencoder-lame-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a3e27e2ec3730e4087daac0c69c565f9 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.4 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.4 deleted file mode 100644 index 520d08549d5c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-sound/lame-3.100 -DESCRIPTION=Lame MP3 encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.lame -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-sound/lame-3.100 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/2.0.4-Leia.tar.gz -> kodi-audioencoder-lame-2.0.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4653a0c8b4e47823d17d9d83aa8e984d diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.1.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.1.1 deleted file mode 100644 index 6655edba0794..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-2.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 -DESCRIPTION=Lame MP3 encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.lame -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/2.1.1-Matrix.tar.gz -> kodi-audioencoder-lame-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=396941fb6bfd38f0135c8d6699257107 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.0 b/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.0 deleted file mode 100644 index 2fca2b8549f7..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-lame-3.0.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 -DESCRIPTION=Lame MP3 encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.lame -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19* >=media-sound/lame-3.100 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.lame/archive/3.0.0-Matrix.tar.gz -> kodi-audioencoder-lame-3.0.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=396941fb6bfd38f0135c8d6699257107 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.0.4 b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.0.4 deleted file mode 100644 index 10d5f55c6f4e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-libs/libogg-1.3.4 >=media-libs/libvorbis-1.3.6 -DESCRIPTION=Vorbis encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.vorbis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-libs/libogg-1.3.4 >=media-libs/libvorbis-1.3.6 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.vorbis/archive/2.0.4-Leia.tar.gz -> kodi-audioencoder-vorbis-2.0.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=415bf5f5a66105104b2acfe54867c1c1 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.1.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.1.1 deleted file mode 100644 index b409894625de..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-vorbis-2.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 >=media-libs/libvorbis-1.3.6 -DESCRIPTION=Vorbis encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.vorbis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19* >=media-libs/libogg-1.3.4 >=media-libs/libvorbis-1.3.6 -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.vorbis/archive/2.1.1-Matrix.tar.gz -> kodi-audioencoder-vorbis-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5f29d6b1fe9088ea12fb31132e45a3d1 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.1 deleted file mode 100644 index 4205430850a2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=WAV encoder addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/audioencoder.wav -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/v2.0.1.tar.gz -> kodi-audioencoder-wav-2.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=657e5e58960984c912d88a88b036eb89 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.2 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.2 deleted file mode 100644 index 90dce0c099cb..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=WAV encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.wav -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/2.0.2-Leia.tar.gz -> kodi-audioencoder-wav-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ffad2233eebc6b3f2949163cce7de692 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.3 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.3 deleted file mode 100644 index 50d2bac86c4e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.0.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=WAV encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.wav -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/2.0.3-Leia.tar.gz -> kodi-audioencoder-wav-2.0.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ffad2233eebc6b3f2949163cce7de692 diff --git a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.1.1 b/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.1.1 deleted file mode 100644 index 969215e10d2d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-audioencoder-wav-2.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=WAV encoder addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/audioencoder.wav -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/audioencoder.wav/archive/2.1.1-Matrix.tar.gz -> kodi-audioencoder-wav-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1ae135ec47c89c09900fb17fcf3a935d diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.0 b/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.0 deleted file mode 100644 index 92c4a31afa0a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro/archive/1.1.0-Leia.tar.gz -> kodi-game-libretro-1.1.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=534e3d573a108235e0c2cb9af58a2f49 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.1 b/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.1 deleted file mode 100644 index e821530cde8a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-1.1.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro/archive/1.1.1-Leia.tar.gz -> kodi-game-libretro-1.1.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=534e3d573a108235e0c2cb9af58a2f49 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.0.2 b/metadata/md5-cache/media-plugins/kodi-game-libretro-2.0.2 deleted file mode 100644 index e111b6386a05..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=7 -HOMEPAGE=https://github.com/kodi-game/game.libretro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro/archive/2.0.2-Matrix.tar.gz -> kodi-game-libretro-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=12078c24f0e0791b35bcc8ef557aa05b diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.1.0 b/metadata/md5-cache/media-plugins/kodi-game-libretro-2.1.0 deleted file mode 100644 index 972b29b67739..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-2.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=7 -HOMEPAGE=https://github.com/kodi-game/game.libretro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro/archive/2.1.0-Matrix.tar.gz -> kodi-game-libretro-2.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=12078c24f0e0791b35bcc8ef557aa05b diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.3 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.3 deleted file mode 100644 index 1c9cbcb643ef..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-bnes sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=bNES GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.bnes -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-bnes -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.3-Leia.tar.gz -> kodi-game-libretro-bnes-0.83.0.3.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4b90f7d0d2161ec0e6d262c4b4c005cb diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.4 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.4 deleted file mode 100644 index 455b1d54d920..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-bnes sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=bNES GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.bnes -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-bnes -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.4-Leia.tar.gz -> kodi-game-libretro-bnes-0.83.0.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4b90f7d0d2161ec0e6d262c4b4c005cb diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.5 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.5 deleted file mode 100644 index 4f16620640b8..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-bnes sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=bNES GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.bnes -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-bnes -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.5-Leia.tar.gz -> kodi-game-libretro-bnes-0.83.0.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4b90f7d0d2161ec0e6d262c4b4c005cb diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.6 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.6 deleted file mode 100644 index 2295eaa8e771..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-bnes sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=bNES GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.bnes -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-bnes -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.6-Leia.tar.gz -> kodi-game-libretro-bnes-0.83.0.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4b90f7d0d2161ec0e6d262c4b4c005cb diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.7 b/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.7 deleted file mode 100644 index 5cd8f97fea56..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-bnes-0.83.0.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-bnes sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=bNES GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.bnes -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-bnes -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.bnes/archive/0.83.0.7-Leia.tar.gz -> kodi-game-libretro-bnes-0.83.0.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3d03a31c3d9aeb993e4693280d0fb997 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.3 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.3 deleted file mode 100644 index d0d15b0d5b16..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-dosbox sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=DOSBox GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.dosbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-dosbox -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.dosbox/archive/0.74.0.3-Leia.tar.gz -> kodi-game-libretro-dosbox-0.74.0.3.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=41bafc5281a857b613102249882fe680 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.4 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.4 deleted file mode 100644 index f48c34dc3d33..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-dosbox sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=DOSBox GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.dosbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-dosbox -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.dosbox/archive/0.74.0.4-Leia.tar.gz -> kodi-game-libretro-dosbox-0.74.0.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=41bafc5281a857b613102249882fe680 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.5 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.5 deleted file mode 100644 index d3e085f41ca8..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-dosbox sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=DOSBox GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.dosbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-dosbox -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.dosbox/archive/0.74.0.5-Leia.tar.gz -> kodi-game-libretro-dosbox-0.74.0.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=41bafc5281a857b613102249882fe680 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.6 b/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.6 deleted file mode 100644 index 25c3b32661c2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-dosbox-0.74.0.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-dosbox sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=DOSBox GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.dosbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-dosbox -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.dosbox/archive/0.74.0.6-Leia.tar.gz -> kodi-game-libretro-dosbox-0.74.0.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=22ce952e76a39b6b676d43b52a326a90 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-fceumm-0.0.1.9 b/metadata/md5-cache/media-plugins/kodi-game-libretro-fceumm-0.0.1.9 deleted file mode 100644 index 658ccea9dc51..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-fceumm-0.0.1.9 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-fceumm sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=FCEU-Next GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.fceumm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-fceumm -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.fceumm/archive/0.0.1.9-Leia.tar.gz -> kodi-game-libretro-fceumm-0.0.1.9.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ffb3db9ab93a8ceafd1faf00893800b2 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.8 b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.8 deleted file mode 100644 index 6c870511b644..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.8 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-nestopia -DESCRIPTION=Nestopia GameClient for Kodi -EAPI=7 -HOMEPAGE=https://github.com/kodi-game/game.libretro.nestopia -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-nestopia -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.nestopia/archive/1.50.0.8-Leia.tar.gz -> kodi-game-libretro-nestopia-1.50.0.8.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cf86414f2b80a2f3f32c0d41f0949ed1 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.9 b/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.9 deleted file mode 100644 index 54a0a9b99c50..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-nestopia-1.50.0.9 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-nestopia -DESCRIPTION=Nestopia GameClient for Kodi -EAPI=7 -HOMEPAGE=https://github.com/kodi-game/game.libretro.nestopia -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-nestopia -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.nestopia/archive/1.50.0.9-Leia.tar.gz -> kodi-game-libretro-nestopia-1.50.0.9.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cf86414f2b80a2f3f32c0d41f0949ed1 diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.10 b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.10 deleted file mode 100644 index 0c0160df92c4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.10 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-snes9x sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Snes9x GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.snes9x -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-snes9x -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.snes9x/archive/1.60.0.10-Leia.tar.gz -> kodi-game-libretro-snes9x-1.60.0.10.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4ed9e7c417fefea5be2cfc4cbcc0ca1c diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.11 b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.11 deleted file mode 100644 index e3f640a2db33..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.11 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-snes9x sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Snes9x GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.snes9x -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-snes9x -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.snes9x/archive/1.60.0.11-Leia.tar.gz -> kodi-game-libretro-snes9x-1.60.0.11.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4ed9e7c417fefea5be2cfc4cbcc0ca1c diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.12 b/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.12 deleted file mode 100644 index 751596e33b5b..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-snes9x-1.60.0.12 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* games-emulation/libretro-snes9x sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Snes9x GameClient for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.snes9x -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-19* games-emulation/libretro-snes9x -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.snes9x/archive/1.60.0.12-Matrix.tar.gz -> kodi-game-libretro-snes9x-1.60.0.12.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=62f1264c7d903e716db6d96e91118aea diff --git a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.111 b/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.111 deleted file mode 100644 index 7c5b41bd6408..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-game-libretro-twentyfortyeight-1.0.0.111 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* games-emulation/libretro-twentyfortyeight sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=2048 for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-game/game.libretro.2048 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=media-plugins/kodi-game-libretro =media-tv/kodi-18* games-emulation/libretro-twentyfortyeight -SLOT=0 -SRC_URI=https://github.com/kodi-game/game.libretro.2048/archive/1.0.0.111-Leia.tar.gz -> kodi-game-libretro-twentyfortyeight-1.0.0.111.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=87040b3422a1bc6ac71340e1c133e6f0 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.1.0 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.1.0 deleted file mode 100644 index 38c366b8fa46..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-heif-1.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-libs/libde265-1.0.5 >=media-libs/libheif-1.6.2 -DESCRIPTION=HEIF image decoder for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/imagedecoder.heif -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-libs/libde265-1.0.5 >=media-libs/libheif-1.6.2 -SLOT=0 -SRC_URI=https://github.com/xbmc/imagedecoder.heif/archive/1.1.0-Leia.tar.gz -> kodi-imagedecoder-heif-1.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e36fe40225ed7bc57a44f6d1abf9b737 diff --git a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-2.1.2 b/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-2.1.2 deleted file mode 100644 index 2d2f0e1bc056..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-imagedecoder-raw-2.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* >=media-libs/libraw-0.19.5[jpeg,lcms] >=media-libs/lcms-2.9 -DESCRIPTION=RAW image decoder for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/imagedecoder.raw -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18* >=media-libs/libraw-0.19.5[jpeg,lcms] >=media-libs/lcms-2.9 -SLOT=0 -SRC_URI=https://github.com/xbmc/imagedecoder.raw/archive/2.1.2-Leia.tar.gz -> kodi-imagedecoder-raw-2.1.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1d1c5b26e18a88197f34a5d2e3341fda diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.4 b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.4 deleted file mode 100644 index 6f821f41c56f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/expat =media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Adaptive inputstream addon -EAPI=6 -HOMEPAGE=https://github.com/peak3d/inputstream.adaptive.git -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/expat =media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* -SLOT=0 -SRC_URI=https://github.com/peak3d/inputstream.adaptive/archive/2.4.4-Leia.tar.gz -> kodi-inputstream-adaptive-2.4.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cb75fdb8fe2159bdb40e9fb21992cc2d diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5 b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5 deleted file mode 100644 index e65d07196ea5..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/expat =media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Adaptive inputstream addon -EAPI=6 -HOMEPAGE=https://github.com/peak3d/inputstream.adaptive.git -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/expat =media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* -SLOT=0 -SRC_URI=https://github.com/peak3d/inputstream.adaptive/archive/2.4.5-Leia.tar.gz -> kodi-inputstream-adaptive-2.4.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cb75fdb8fe2159bdb40e9fb21992cc2d diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5-r1 b/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5-r1 deleted file mode 100644 index dd0f67c4e4de..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-adaptive-2.4.5-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= dev-libs/expat -DESCRIPTION=Kodi's Adaptive inputstream addon -EAPI=7 -HOMEPAGE=https://github.com/peak3d/inputstream.adaptive.git -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= dev-libs/expat -SLOT=0 -SRC_URI=https://github.com/peak3d/inputstream.adaptive/archive/2.4.5-Leia.tar.gz -> kodi-inputstream-adaptive-2.4.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c5c0e5b09b1c91f653dfd20f5d321719 diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9 deleted file mode 100644 index 0ae7b6a6d663..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* media-video/rtmpdump -DESCRIPTION=Kodi's RTMP inputstream addon -EAPI=7 -HOMEPAGE=https://github.com/xbmc/inputstream.rtmp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* media-video/rtmpdump -SLOT=0 -SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/2.0.9-Leia.tar.gz -> kodi-inputstream-rtmp-2.0.9.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7031d9ce60f5204a8fa09584200cb0ca diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9-r1 b/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9-r1 deleted file mode 100644 index 36befbc271e4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-inputstream-rtmp-2.0.9-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= media-video/rtmpdump[ssl] -DESCRIPTION=Kodi's RTMP inputstream addon -EAPI=7 -HOMEPAGE=https://github.com/xbmc/inputstream.rtmp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= media-video/rtmpdump[ssl] -SLOT=0 -SRC_URI=https://github.com/xbmc/inputstream.rtmp/archive/2.0.9-Leia.tar.gz -> kodi-inputstream-rtmp-2.0.9.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=687fcb2583e4d6dff03b835d9821a887 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.6 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.6 deleted file mode 100644 index 8ebaf79b637a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=6 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/v1.4.6.tar.gz -> kodi-peripheral-joystick-1.4.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=456a0e6a30e39ccb5f014db5cd42b5d9 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.7 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.7 deleted file mode 100644 index 8ba0ca905dc7..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=6 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/v1.4.7.tar.gz -> kodi-peripheral-joystick-1.4.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ec85ba3f5478613ad745d7c233746949 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.8 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.8 deleted file mode 100644 index c723aa9c333c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.8 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=6 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* =dev-libs/libplatform-2* dev-libs/libpcre -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/1.4.8-Leia.tar.gz -> kodi-peripheral-joystick-1.4.8.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1164afc3cb9c2ac89fecc72a4849ebec diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.9 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.9 deleted file mode 100644 index 8aaca4c4a6a2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.4.9 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/libpcre -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=7 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/libpcre -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/1.4.9-Leia.tar.gz -> kodi-peripheral-joystick-1.4.9.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=26686a1f4cf492aa0c3a595d6aaddad7 diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.0 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.0 deleted file mode 100644 index 5bceb85e77ce..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=7 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/1.6.0-Matrix.tar.gz -> kodi-peripheral-joystick-1.6.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b952bcdf26b9479a8935a63fa7a2c75e diff --git a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.1 b/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.1 deleted file mode 100644 index bd830f2b78ba..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-peripheral-joystick-1.6.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml -DESCRIPTION=Libretro compatibility layer for the Kodi Game API -EAPI=7 -HOMEPAGE=https://github.com/xbmc/peripheral.joystick -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* dev-libs/libpcre dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/xbmc/peripheral.joystick/archive/1.6.1-Matrix.tar.gz -> kodi-peripheral-joystick-1.6.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b952bcdf26b9479a8935a63fa7a2c75e diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.4 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.4 deleted file mode 100644 index 949340994e41..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's ARGUS TV client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.argustv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/3.5.4-Leia.tar.gz -> kodi-pvr-argustv-3.5.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8d7a65c1db54b16c68e3bbd2afd2d666 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.6 b/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.6 deleted file mode 100644 index 8fcdd9f58979..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-argustv-3.5.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's ARGUS TV client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.argustv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.argustv/archive/3.5.6-Leia.tar.gz -> kodi-pvr-argustv-3.5.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5f859e1b8496a752b74d906d88d200dd diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-demo-3.6.1 b/metadata/md5-cache/media-plugins/kodi-pvr-demo-3.6.1 deleted file mode 100644 index da17e602c0a7..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-demo-3.6.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -DESCRIPTION=Demo PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.demo -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.demo/archive/3.6.1-Leia.tar.gz -> kodi-pvr-demo-3.6.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5f9b2425cdafae7a27240a456ffd4e75 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.1 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.1 deleted file mode 100644 index a46d193a9275..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's DVBLink client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvblink -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/4.7.1-Leia.tar.gz -> kodi-pvr-dvblink-4.7.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2782222f9e34e41900f6dcca2dbe0abb diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.2 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.2 deleted file mode 100644 index 8ee2769cab1c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-4.7.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's DVBLink client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvblink -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/4.7.2-Leia.tar.gz -> kodi-pvr-dvblink-4.7.2.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2782222f9e34e41900f6dcca2dbe0abb diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-7.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-7.0.0 deleted file mode 100644 index 6abbec8d1aab..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvblink-7.0.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml2 -DESCRIPTION=Kodi's DVBLink client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvblink -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvblink/archive/7.0.0-Matrix.tar.gz -> kodi-pvr-dvblink-7.0.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=13543830c91c73f559baac3d4ca04038 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.11 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.11 deleted file mode 100644 index 3db4983901e6..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.11 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's DVBViewer client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvbviewer -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/3.7.11-Leia.tar.gz -> kodi-pvr-dvbviewer-3.7.11-Leia.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f3661f0e2f739d73ee75aa999303eedc diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.5 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.5 deleted file mode 100644 index fd6f208e32d2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's DVBViewer client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvbviewer -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/3.7.5-Leia.tar.gz -> kodi-pvr-dvbviewer-3.7.5-Leia.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=832da49777c272a8d8871242f79c5951 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.8 b/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.8 deleted file mode 100644 index 3e7219667c3d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-dvbviewer-3.7.8 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's DVBViewer client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.dvbviewer -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.dvbviewer/archive/3.7.8-Leia.tar.gz -> kodi-pvr-dvbviewer-3.7.8-Leia.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=832da49777c272a8d8871242f79c5951 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.4 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.4 deleted file mode 100644 index dcca900f8104..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Filmon client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.filmon -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/2.4.4-Leia.tar.gz -> kodi-pvr-filmon-2.4.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7c76b7f5798766da1980d16e1bd31e4a diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.6 b/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.6 deleted file mode 100644 index 5df1d61bebb0..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-filmon-2.4.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Filmon client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.filmon -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.filmon/archive/2.4.6-Leia.tar.gz -> kodi-pvr-filmon-2.4.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e157fe40cbbe20a3d285f4a290baea7d diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.12 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.12 deleted file mode 100644 index 7d543f2d69db..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.12 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.12-Leia.tar.gz -> kodi-pvr-hts-4.4.12.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.13 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.13 deleted file mode 100644 index 898af8e3e010..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.13 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.13-Leia.tar.gz -> kodi-pvr-hts-4.4.13.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.14 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.14 deleted file mode 100644 index be0f55d0e7f8..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.14 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.14-Leia.tar.gz -> kodi-pvr-hts-4.4.14.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.16 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.16 deleted file mode 100644 index cebe84d54c0e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.16 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.16-Leia.tar.gz -> kodi-pvr-hts-4.4.16.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.17 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.17 deleted file mode 100644 index c36f8495ec26..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.17 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.17-Leia.tar.gz -> kodi-pvr-hts-4.4.17.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.18 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.18 deleted file mode 100644 index a4c292f798bf..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.18 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.18-Leia.tar.gz -> kodi-pvr-hts-4.4.18.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.20 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.20 deleted file mode 100644 index 4670f5334809..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-4.4.20 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/4.4.20-Leia.tar.gz -> kodi-pvr-hts-4.4.20.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=983eaa88c336c741de6e4f1edf098553 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-7.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-7.1.1 deleted file mode 100644 index 6d309833f705..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-hts-7.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-19* -DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.hts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/7.1.1-Matrix.tar.gz -> kodi-pvr-hts-7.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=43b4165b07ab63a8029f8658b0cb507a diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-3.8.8 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-3.8.8 deleted file mode 100644 index d624e5369ef7..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-3.8.8 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* =media-libs/kodi-platform-18* sys-libs/zlib dev-libs/rapidxml -DESCRIPTION=Kodi's IPTVSimple client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.iptvsimple -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* =media-libs/kodi-platform-18* sys-libs/zlib dev-libs/rapidxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/3.8.8-Leia.tar.gz -> kodi-pvr-iptvsimple-3.8.8.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9dc72d6b0de7de2a3efb1af17d20c947 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.2.4 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.2.4 deleted file mode 100644 index 1e51450fb585..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.2.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib -DESCRIPTION=Kodi's IPTVSimple client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.iptvsimple -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/6.2.4-Matrix.tar.gz -> kodi-pvr-iptvsimple-6.2.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=77aacc9e4ec699b4ee88edc5acd21862 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.3.0 b/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.3.0 deleted file mode 100644 index 0b92331633f9..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-iptvsimple-6.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib -DESCRIPTION=Kodi's IPTVSimple client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.iptvsimple -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* dev-libs/pugixml =media-tv/kodi-19* sys-libs/zlib -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.iptvsimple/archive/6.3.0-Matrix.tar.gz -> kodi-pvr-iptvsimple-6.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=77aacc9e4ec699b4ee88edc5acd21862 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.16 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.16 deleted file mode 100644 index bcd35c9a01ce..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.16 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's MediaPortal TVServer client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.mediaportal.tvserver -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/3.5.16-Leia.tar.gz -> kodi-pvr-mediaportal-tvserver-3.5.16.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=daf3077932ad9d8f2b73951dfb1bf532 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.17 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.17 deleted file mode 100644 index 7cf74815b405..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-3.5.17 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's MediaPortal TVServer client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.mediaportal.tvserver -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/3.5.17-Leia.tar.gz -> kodi-pvr-mediaportal-tvserver-3.5.17.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=daf3077932ad9d8f2b73951dfb1bf532 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-6.0.0 deleted file mode 100644 index d3ab1ca82378..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mediaportal-tvserver-6.0.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml -DESCRIPTION=Kodi's MediaPortal TVServer client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.mediaportal.tvserver -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-mediaportal-tvserver-6.0.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=34543d523f85ad11097bf7d1a2038939 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.15 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.15 deleted file mode 100644 index 4d1297776366..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.15 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=MythTV PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/janbar/pvr.mythtv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/janbar/pvr.mythtv/archive/5.10.15-Leia.tar.gz -> kodi-pvr-mythtv-5.10.15.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6971b305070609a19330cd081c7d5415 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.16 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.16 deleted file mode 100644 index 87ed915415ea..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.16 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=MythTV PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/janbar/pvr.mythtv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/janbar/pvr.mythtv/archive/5.10.16-Leia.tar.gz -> kodi-pvr-mythtv-5.10.16.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6971b305070609a19330cd081c7d5415 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.18 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.18 deleted file mode 100644 index 8347d12902bf..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.18 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=MythTV PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/janbar/pvr.mythtv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/janbar/pvr.mythtv/archive/5.10.18-Leia.tar.gz -> kodi-pvr-mythtv-5.10.18.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6971b305070609a19330cd081c7d5415 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.19 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.19 deleted file mode 100644 index 72916971565c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-5.10.19 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=MythTV PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/janbar/pvr.mythtv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib =media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/janbar/pvr.mythtv/archive/5.10.19-Leia.tar.gz -> kodi-pvr-mythtv-5.10.19.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6971b305070609a19330cd081c7d5415 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.0.5 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.0.5 deleted file mode 100644 index 062a4c2e3e48..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.0.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib =media-tv/kodi-19* -DESCRIPTION=MythTV PVR for Kodi -EAPI=7 -HOMEPAGE=https://github.com/janbar/pvr.mythtv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib =media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/janbar/pvr.mythtv/archive/7.0.5-Matrix.tar.gz -> kodi-pvr-mythtv-7.0.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=88349025c79c8158983c04bfd55229ab diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.17 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.17 deleted file mode 100644 index 69e20be702cf..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.17 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's NextPVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/3.3.17-Leia.tar.gz -> kodi-pvr-nextpvr-3.3.17.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1ee300c1276232058b62e55c7db2fcd0 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.18 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.18 deleted file mode 100644 index 0b8830ea997f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.18 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's NextPVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/3.3.18-Leia.tar.gz -> kodi-pvr-nextpvr-3.3.18.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=353584e1ffed24dede947e6d28f79afa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.19 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.19 deleted file mode 100644 index 934b6d4cf5c5..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.19 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's NextPVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/3.3.19-Leia.tar.gz -> kodi-pvr-nextpvr-3.3.19.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=353584e1ffed24dede947e6d28f79afa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.20 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.20 deleted file mode 100644 index 19f8458e4d76..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.20 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's NextPVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/3.3.20-Leia.tar.gz -> kodi-pvr-nextpvr-3.3.20.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=353584e1ffed24dede947e6d28f79afa diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.21 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.21 deleted file mode 100644 index 21a11c152cdd..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-3.3.21 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's NextPVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/3.3.21-Leia.tar.gz -> kodi-pvr-nextpvr-3.3.21.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=353584e1ffed24dede947e6d28f79afa diff --git a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.2 b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.0.1 similarity index 67% rename from metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.2 rename to metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.0.1 index 97c9f9b215ab..1ca93bd26868 100644 --- a/metadata/md5-cache/media-plugins/kodi-audiodecoder-nosefart-2.0.2 +++ b/metadata/md5-cache/media-plugins/kodi-pvr-nextpvr-8.0.1 @@ -1,13 +1,13 @@ BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* -DESCRIPTION=Nosefart decoder addon for Kodi +DEPEND==media-tv/kodi-19* dev-libs/tinyxml2 +DESCRIPTION=Kodi's NextPVR client addon EAPI=7 -HOMEPAGE=https://github.com/notspiff/audiodecoder.nosefart +HOMEPAGE=https://github.com/kodi-pvr/pvr.nextpvr KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* +RDEPEND==media-tv/kodi-19* dev-libs/tinyxml2 SLOT=0 -SRC_URI=https://github.com/notspiff/audiodecoder.nosefart/archive/2.0.2-Leia.tar.gz -> kodi-audiodecoder-nosefart-2.0.2.tar.gz +SRC_URI=https://github.com/kodi-pvr/pvr.nextpvr/archive/8.0.1-Matrix.tar.gz -> kodi-pvr-nextpvr-8.0.1.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=334528c99c1a263aec742f1ce7e46747 +_md5_=df2f4f7afa10a6aee7e037a73e179aff diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-3.4.2 b/metadata/md5-cache/media-plugins/kodi-pvr-njoy-3.4.2 deleted file mode 100644 index 9073022d638d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-njoy-3.4.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -DESCRIPTION=Kodi's Njoy N7 client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.njoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.njoy/archive/3.4.2-Leia.tar.gz -> kodi-pvr-njoy-3.4.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=eb9bf884b93504c12a1ca4d823c3f813 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.5 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.5 deleted file mode 100644 index 2bd0044a6d64..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's PCTV client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.pctv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.pctv/archive/2.4.5-Leia.tar.gz -> kodi-pvr-pctv-2.4.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=248153c0e36d036469b7e44d1288c362 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.7 b/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.7 deleted file mode 100644 index c47395ef8caa..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-pctv-2.4.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's PCTV client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.pctv -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.pctv/archive/2.4.7-Leia.tar.gz -> kodi-pvr-pctv-2.4.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=daec7085cba1d73aaa9dc115d1356da2 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.10 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.10 deleted file mode 100644 index d4dc4c9489a1..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.10 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml -DESCRIPTION=Kodi's Stalker client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.stalker -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/3.4.10-Leia.tar.gz -> kodi-pvr-stalker-3.4.10.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1cac11f1565e5e7bea7f1c67dbf15149 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.8 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.8 deleted file mode 100644 index 512d0b01b97e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.8 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Stalker client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.stalker -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/3.4.8-Leia.tar.gz -> kodi-pvr-stalker-3.4.8.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6033d1635f5dec81f4d6b1bf896bab11 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.9 b/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.9 deleted file mode 100644 index 050338c8b7d2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-stalker-3.4.9 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Stalker client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.stalker -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/jsoncpp dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.stalker/archive/3.4.9-Leia.tar.gz -> kodi-pvr-stalker-3.4.9.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=eda10c7f13617961afb9ef7c66b776b1 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.6 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.6 deleted file mode 100644 index 8f48657a296c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.4.6-Leia.tar.gz -> kodi-pvr-vbox-4.4.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d757ac23fe970678d56e21d0773081ac diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.7 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.7 deleted file mode 100644 index 84e88dd3bd03..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.4.7-Leia.tar.gz -> kodi-pvr-vbox-4.4.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d757ac23fe970678d56e21d0773081ac diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.8 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.8 deleted file mode 100644 index 9147b3c61244..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.4.8 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.4.8-Leia.tar.gz -> kodi-pvr-vbox-4.4.8.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3c303361fb72b7ddf7de9735b945bc18 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.5.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.5.0 deleted file mode 100644 index 06be78d79a70..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.5.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.5.0-Leia.tar.gz -> kodi-pvr-vbox-4.5.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c360cf0f4e94e63e62b3907de076280 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.6.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.6.0 deleted file mode 100644 index 414dc3839b3e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.6.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.6.0-Leia.tar.gz -> kodi-pvr-vbox-4.6.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c360cf0f4e94e63e62b3907de076280 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.7.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.7.0 deleted file mode 100644 index b095dfa73d36..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vbox-4.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -DESCRIPTION=Kodi's VBox Home TV Gateway PVR client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vbox -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml2 -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vbox/archive/4.7.0-Leia.tar.gz -> kodi-pvr-vbox-4.7.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c360cf0f4e94e63e62b3907de076280 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.2 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.2 deleted file mode 100644 index fab0712f61f2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi PVR addon VNSI -EAPI=6 -HOMEPAGE=https://github.com/fernetmenta/pvr.vdr.vnsi -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/fernetmenta/pvr.vdr.vnsi/archive/v3.6.2.tar.gz -> kodi-pvr-vdr-vnsi-3.6.2.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f4855a08c9dec6b3217640144796fd4a diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3 deleted file mode 100644 index a9c49f6a0bbb..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi PVR addon VNSI -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vdr.vnsi -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/3.6.3-Leia.tar.gz -> kodi-pvr-vdr-vnsi-3.6.3.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=17f68e1f006df6a9efaf9dcfe1ef8372 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3-r1 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3-r1 deleted file mode 100644 index 7e0682404b05..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-3.6.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl -DESCRIPTION=Kodi PVR addon VNSI -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vdr.vnsi -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/3.6.3-Leia.tar.gz -> kodi-pvr-vdr-vnsi-3.6.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bb6c717717e9c8bc9e87e66675169e30 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-6.0.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-6.0.0 deleted file mode 100644 index 5144c18c6a11..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vdr-vnsi-6.0.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-19* virtual/opengl -DESCRIPTION=Kodi PVR addon VNSI -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vdr.vnsi -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-19* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vdr.vnsi/archive/6.0.0-Matrix.tar.gz -> kodi-pvr-vdr-vnsi-6.0.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=13aeca663b4d7b4b2232d4773e86e454 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.0 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.0 deleted file mode 100644 index 5adba6a02906..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.0-Leia.tar.gz -> kodi-pvr-vuplus-3.28.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=488edc8adc98822e8cae27060899fcef diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.1 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.1 deleted file mode 100644 index 0eec96700f0c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.1-Leia.tar.gz -> kodi-pvr-vuplus-3.28.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.2 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.2 deleted file mode 100644 index bac149bd2a43..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.2-Leia.tar.gz -> kodi-pvr-vuplus-3.28.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.4 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.4 deleted file mode 100644 index 6c7a6852b076..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.4-Leia.tar.gz -> kodi-pvr-vuplus-3.28.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.5 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.5 deleted file mode 100644 index ddfc27799def..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.5-Leia.tar.gz -> kodi-pvr-vuplus-3.28.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.6 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.6 deleted file mode 100644 index e916c59848ed..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.6 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.6-Leia.tar.gz -> kodi-pvr-vuplus-3.28.6.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.7 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.7 deleted file mode 100644 index b98ee633c0ee..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.7 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.7-Leia.tar.gz -> kodi-pvr-vuplus-3.28.7.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.8 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.8 deleted file mode 100644 index 365a78871ba6..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.8 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.8-Leia.tar.gz -> kodi-pvr-vuplus-3.28.8.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.9 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.9 deleted file mode 100644 index 8a3d3fedc56a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-3.28.9 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/3.28.9-Leia.tar.gz -> kodi-pvr-vuplus-3.28.9.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d7f29263b74cb94356f1f8709ecb78c4 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-6.1.1 b/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-6.1.1 deleted file mode 100644 index 5c2fd2337222..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-vuplus-6.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml dev-cpp/nlohmann_json -DESCRIPTION=Kodi's VuPlus client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.vuplus -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* dev-libs/tinyxml dev-cpp/nlohmann_json -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.vuplus/archive/6.1.1-Matrix.tar.gz -> kodi-pvr-vuplus-6.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1771f5d1036bb451c53a858e3f76dd14 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.4 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.4 deleted file mode 100644 index 216a2000568a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Kodi's Windows Media Center client addon -EAPI=6 -HOMEPAGE=https://github.com/kodi-pvr/pvr.wmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/2.4.4-Leia.tar.gz -> kodi-pvr-wmc-2.4.4.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=209ca5a6a081478ae1f1268484eed1d3 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.5 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.5 deleted file mode 100644 index 92b71ac87290..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=Kodi's Windows Media Center client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.wmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/2.4.5-Leia.tar.gz -> kodi-pvr-wmc-2.4.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2650a371fe528c989fce818622016b60 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.6 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.6 deleted file mode 100644 index 263d355034b6..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-2.4.6 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -DESCRIPTION=Kodi's Windows Media Center client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.wmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/2.4.6-Leia.tar.gz -> kodi-pvr-wmc-2.4.6.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2650a371fe528c989fce818622016b60 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-5.0.1 b/metadata/md5-cache/media-plugins/kodi-pvr-wmc-5.0.1 deleted file mode 100644 index f6139610ee72..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-pvr-wmc-5.0.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* -DESCRIPTION=Kodi's Windows Media Center client addon -EAPI=7 -HOMEPAGE=https://github.com/kodi-pvr/pvr.wmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* =dev-libs/libplatform-2* -SLOT=0 -SRC_URI=https://github.com/kodi-pvr/pvr.wmc/archive/5.0.1-Matrix.tar.gz -> kodi-pvr-wmc-5.0.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=67325750c9b37f43e714eb398dbb37ec diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.1.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.1.0 deleted file mode 100644 index a11fb1a55f1a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.1.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Asteroids screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.asteroids -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.asteroids/archive/2.1.0-Leia.tar.gz -> kodi-screensaver-asteroids-2.1.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ef2766b5e6eb41c9db55455e3cbb8154 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.3.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.3.2 deleted file mode 100644 index 4be2d54abf65..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.3.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -DESCRIPTION=Asteroids screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.asteroids -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.asteroids/archive/2.3.2-Leia.tar.gz -> kodi-screensaver-asteroids-2.3.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=aceea592c0501e05ea0c70e744192ab6 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2 deleted file mode 100644 index ae155fd86245..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-asteroids-2.4.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* media-libs/glm virtual/opengl -DESCRIPTION=Asteroids screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.asteroids -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.asteroids/archive/2.4.2-Matrix.tar.gz -> kodi-screensaver-asteroids-2.4.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b7abc6fdd371c4e630c9c2d6ef17d24f diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-1.1.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-1.1.0 deleted file mode 100644 index 5fae8fc8901a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-1.1.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-tv/kodi sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Biogenesis screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/screensaver.biogenesis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/notspiff/screensaver.biogenesis/archive/v1.1.0.tar.gz -> kodi-screensaver-biogenesis-1.1.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=de04e467e06e017dd2a272d889e9d53e diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.0.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.0.0 deleted file mode 100644 index e9f566fe8825..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.0.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Biogenesis screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.biogenesis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.biogenesis/archive/2.0.0-Leia.tar.gz -> kodi-screensaver-biogenesis-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=129eb533071684a0706a0ea11695282f diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.2.3 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.2.3 deleted file mode 100644 index d5d1785c6ab6..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.2.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= -DESCRIPTION=Biogenesis screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.biogenesis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18*:= -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.biogenesis/archive/2.2.3-Leia.tar.gz -> kodi-screensaver-biogenesis-2.2.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4ff3d4edb3526947177a6aa965521328 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2 deleted file mode 100644 index e06febbbb936..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-biogenesis-2.3.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Biogenesis screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.biogenesis -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.biogenesis/archive/2.3.2-Matrix.tar.gz -> kodi-screensaver-biogenesis-2.3.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=43a086c45ccb47bcf8c2646979ab141c diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-1.1.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-1.1.0 deleted file mode 100644 index 3f618fec02d9..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-1.1.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-tv/kodi sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Greynetic screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/screensaver.greynetic -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/notspiff/screensaver.greynetic/archive/v1.1.0.tar.gz -> kodi-screensaver-greynetic-1.1.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2380279946c75fe98d37695b12d67aba diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.0.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.0.0 deleted file mode 100644 index a8b70a5268a3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.0.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Greynetic screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.greynetic -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.greynetic/archive/2.0.0-Leia.tar.gz -> kodi-screensaver-greynetic-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fa1d924d18876cdcc85cd848c23488eb diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.2.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.2.2 deleted file mode 100644 index bcf065514945..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.2.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -DESCRIPTION=Greynetic screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.greynetic -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.greynetic/archive/2.2.2-Leia.tar.gz -> kodi-screensaver-greynetic-2.2.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=20646e437a137e93173f3f8bcc060caa diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1 b/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1 deleted file mode 100644 index 1420382246f0..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-greynetic-2.3.1 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-libs/glm =media-tv/kodi-19* virtual/opengl -DESCRIPTION=Greynetic screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.greynetic -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.greynetic/archive/2.3.1-Matrix.tar.gz -> kodi-screensaver-greynetic-2.3.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2fb4455af8c71f63e5d506411f014342 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.2.3 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.2.3 deleted file mode 100644 index 23e857cd1218..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.2.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= virtual/opengl -DESCRIPTION=Matrix Trails screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.matrixtrails -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.matrixtrails/archive/2.2.3-Leia.tar.gz -> kodi-screensaver-matrixtrails-2.2.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d5193a290f782a3cef65c06beb441b60 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.4.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.4.2 deleted file mode 100644 index 8451ebcecf83..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.4.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= virtual/opengl -DESCRIPTION=Matrix Trails screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.matrixtrails -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.matrixtrails/archive/2.4.2-Matrix.tar.gz -> kodi-screensaver-matrixtrails-2.4.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2b61b3e0bcff6603a6581c30420dc246 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.0 deleted file mode 100644 index 44ffb3bd64a3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= virtual/opengl -DESCRIPTION=Matrix Trails screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.matrixtrails -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.matrixtrails/archive/2.5.0-Matrix.tar.gz -> kodi-screensaver-matrixtrails-2.5.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2b61b3e0bcff6603a6581c30420dc246 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.1 b/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.1 deleted file mode 100644 index 6d7021d892d2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-matrixtrails-2.5.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= virtual/opengl -DESCRIPTION=Matrix Trails screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.matrixtrails -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.matrixtrails/archive/2.5.1-Matrix.tar.gz -> kodi-screensaver-matrixtrails-2.5.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2b61b3e0bcff6603a6581c30420dc246 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-1.1.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-1.1.0 deleted file mode 100644 index 08b48840dd09..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-1.1.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-tv/kodi sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Ping-pong screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/screensaver.pingpong -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/notspiff/screensaver.pingpong/archive/v1.1.0.tar.gz -> kodi-screensaver-pingpong-1.1.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f30b4649e6cb5aa75fb2f1f4229ff900 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.0.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.0.0 deleted file mode 100644 index 240bd1acfc04..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.0.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Ping-pong screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.pingpong -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pingpong/archive/2.0.0-Leia.tar.gz -> kodi-screensaver-pingpong-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=308fa5ac474cc8048fc7e74c3357712e diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.1.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.1.2 deleted file mode 100644 index 289aaba4e8e3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -DESCRIPTION=Ping-pong screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.pingpong -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pingpong/archive/2.1.2-Leia.tar.gz -> kodi-screensaver-pingpong-2.1.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f78fcc1976af281b4a82fa369db56948 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2 deleted file mode 100644 index 706734a5d953..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pingpong-2.2.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* media-libs/glm virtual/opengl -DESCRIPTION=Ping-pong screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.pingpong -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pingpong/archive/2.2.2-Matrix.tar.gz -> kodi-screensaver-pingpong-2.2.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=876c4600cd55a66cc1c751e01654ec77 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-2.0.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-2.0.0 deleted file mode 100644 index 7854ca1ee454..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-2.0.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Pyro screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.pyro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/2.0.0-Leia.tar.gz -> kodi-screensaver-pyro-2.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5a1ed1a3d2fcd292cdc5ae41214bbbd3 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.0 deleted file mode 100644 index 25559f50be53..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Pyro screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.pyro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/3.0.0-Leia.tar.gz -> kodi-screensaver-pyro-3.0.0.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5ada8a8f73b849141132e29603b15a2a diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.1 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.1 deleted file mode 100644 index fe00c4fc425b..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.0.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Pyro screensaver for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/screensaver.pyro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/3.0.1-Leia.tar.gz -> kodi-screensaver-pyro-3.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=02f03b3be5c30e4e1c217f1222e28e18 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.1.2 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.1.2 deleted file mode 100644 index e2b7c9e08407..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.1.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Pyro screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.pyro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/3.1.2-Matrix.tar.gz -> kodi-screensaver-pyro-3.1.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0b1f116859e4049e61dc8c1d4a0f5b69 diff --git a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.2.0 b/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.2.0 deleted file mode 100644 index 5d9c445c0db6..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-screensaver-pyro-3.2.0 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* -DESCRIPTION=Pyro screensaver for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/screensaver.pyro -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/screensaver.pyro/archive/3.2.0-Matrix.tar.gz -> kodi-screensaver-pyro-3.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0b1f116859e4049e61dc8c1d4a0f5b69 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.2 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.2 deleted file mode 100644 index 47661cfa55dc..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libarchive VFS add-on for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/vfs.libarchive -IUSE=libressl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/1.0.2-Leia.tar.gz -> kodi-vfs-libarchive-1.0.2.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=783a9021c5611583c420dc9c00e66162 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.5 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.5 deleted file mode 100644 index 7ca18e580dc0..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libarchive VFS add-on for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/vfs.libarchive -IUSE=libressl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/1.0.5-Leia.tar.gz -> kodi-vfs-libarchive-1.0.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f6548a2273ef9731f902e54aead61a61 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.6 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.6 deleted file mode 100644 index 9e95ff1d87fa..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libarchive VFS add-on for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/vfs.libarchive -IUSE=libressl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/1.0.6-Leia.tar.gz -> kodi-vfs-libarchive-1.0.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1f4897ce3602b53f32c92e1988f8d3f2 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.7 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.7 deleted file mode 100644 index e0a1a02d7d65..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.0.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libarchive VFS add-on for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/vfs.libarchive -IUSE=libressl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/1.0.7-Leia.tar.gz -> kodi-vfs-libarchive-1.0.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1f4897ce3602b53f32c92e1988f8d3f2 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.3.0 b/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.3.0 deleted file mode 100644 index aa8d484fc204..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-libarchive-1.3.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-19* -DESCRIPTION=Libarchive VFS add-on for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.libarchive -IUSE=libressl -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=app-arch/libarchive[bzip2,lz4,lzma,lzo,zlib] app-arch/lzma app-arch/bzip2 sys-libs/zlib app-arch/lz4 dev-libs/lzo:2 !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= app-arch/libarchive[libressl] ) =media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.libarchive/archive/1.3.0-Matrix.tar.gz -> kodi-vfs-libarchive-1.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b904a80bf6afa22f14a5b9ec6897cde1 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.0 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.0 deleted file mode 100644 index c458b6bba11b..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.0 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.2.0-Leia.tar.gz -> kodi-vfs-rar-2.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3fc8eac900b52e34a3c7d000020b2ff4 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.1 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.1 deleted file mode 100644 index d96e1072a8b1..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.1 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.2.1-Leia.tar.gz -> kodi-vfs-rar-2.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3fc8eac900b52e34a3c7d000020b2ff4 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.2 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.2 deleted file mode 100644 index 04cea98ebc5f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.2 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.2.2-Leia.tar.gz -> kodi-vfs-rar-2.2.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3fc8eac900b52e34a3c7d000020b2ff4 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.3 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.3 deleted file mode 100644 index 7abcc34f701c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.2.3 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.2.3-Leia.tar.gz -> kodi-vfs-rar-2.2.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3fc8eac900b52e34a3c7d000020b2ff4 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.0 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.0 deleted file mode 100644 index 30c034a97b02..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.0 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.3.0-Leia.tar.gz -> kodi-vfs-rar-2.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3fc8eac900b52e34a3c7d000020b2ff4 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.1 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.1 deleted file mode 100644 index 1aeb01eb9e32..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-2.3.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= dev-libs/tinyxml -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/2.3.1-Leia.tar.gz -> kodi-vfs-rar-2.3.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=513f451f89c49655272ba0ad2a52862b diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-rar-3.4.0 b/metadata/md5-cache/media-plugins/kodi-vfs-rar-3.4.0 deleted file mode 100644 index 82a3e854f6a4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-rar-3.4.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= dev-libs/tinyxml -DESCRIPTION=RAR VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.rar -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= dev-libs/tinyxml -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.rar/archive/3.4.0-Matrix.tar.gz -> kodi-vfs-rar-3.4.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=05418d2abcd6e72b9cb7464b3d0f1c9d diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.3 b/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.3 deleted file mode 100644 index 58c2b7e37728..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-libs/kodi-platform-18* =media-tv/kodi-18* virtual/libiconv -DESCRIPTION=SACD VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sacd -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-libs/kodi-platform-18* =media-tv/kodi-18* virtual/libiconv -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sacd/archive/1.0.3-Leia.tar.gz -> kodi-vfs-sacd-1.0.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6dd647ae1a5edfe8e3e3308de8ac778b diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.4 b/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.4 deleted file mode 100644 index dfb2b2009881..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-libs/kodi-platform-18* =media-tv/kodi-18* virtual/libiconv -DESCRIPTION=SACD VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sacd -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-libs/kodi-platform-18* =media-tv/kodi-18* virtual/libiconv -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sacd/archive/1.0.4-Leia.tar.gz -> kodi-vfs-sacd-1.0.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6dd647ae1a5edfe8e3e3308de8ac778b diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.3.0 b/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.3.0 deleted file mode 100644 index e59c4cfcb0f3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sacd-1.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* virtual/libiconv -DESCRIPTION=SACD VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sacd -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* virtual/libiconv -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sacd/archive/1.3.0-Matrix.tar.gz -> kodi-vfs-sacd-1.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=19958974fc56b7e55c4f44e8311e232e diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.1 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.1 deleted file mode 100644 index c34425211d3b..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.0.1-Leia.tar.gz -> kodi-vfs-sftp-1.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e7b1a8c9598b0b13979cf75242769950 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.3 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.3 deleted file mode 100644 index b203691e8d6d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.3 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.0.3-Leia.tar.gz -> kodi-vfs-sftp-1.0.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2a83207b113a876319257bb333dfd434 diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.4 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.4 deleted file mode 100644 index ac2978db6a06..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.0.4-Leia.tar.gz -> kodi-vfs-sftp-1.0.4.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d1621b8650b18af5ffab95752f69a95a diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.5 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.5 deleted file mode 100644 index b4ea09b6a7f2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.0.5-Leia.tar.gz -> kodi-vfs-sftp-1.0.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d1621b8650b18af5ffab95752f69a95a diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.6 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.6 deleted file mode 100644 index 4931bc0ec457..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.0.6 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=net-libs/libssh[sftp] =media-libs/kodi-platform-18* =media-tv/kodi-18* -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.0.6-Leia.tar.gz -> kodi-vfs-sftp-1.0.6.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d1621b8650b18af5ffab95752f69a95a diff --git a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.3.0 b/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.3.0 deleted file mode 100644 index c11670f46dda..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-vfs-sftp-1.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND=net-libs/libssh[sftp] =media-tv/kodi-19* -DESCRIPTION=SFTP VFS addon for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/vfs.sftp -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=net-libs/libssh[sftp] =media-tv/kodi-19* -SLOT=0 -SRC_URI=https://github.com/xbmc/vfs.sftp/archive/1.3.0-Matrix.tar.gz -> kodi-vfs-sftp-1.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a0aa61d143e649eec34bc9769a39e478 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.1 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.1 deleted file mode 100644 index 5a446194b9d4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.fishbmc/archive/5.1.1-Leia.tar.gz -> kodi-visualization-fishbmc-5.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0ad5bfb3d5f1541a3ae2e80e9420f271 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.2 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.2 deleted file mode 100644 index d28386d4dec2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-5.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/5.1.2-Leia.tar.gz -> kodi-visualization-fishbmc-5.1.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4698493a1df2cc8917a25dab9fa47dd5 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0 deleted file mode 100644 index d7d6a7ff674a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/6.1.0-Matrix.tar.gz -> kodi-visualization-fishbmc-6.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0-r1 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0-r1 deleted file mode 100644 index d7d6a7ff674a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.1.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/6.1.0-Matrix.tar.gz -> kodi-visualization-fishbmc-6.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.0 deleted file mode 100644 index 6e1d45ea8cd4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/6.2.0-Matrix.tar.gz -> kodi-visualization-fishbmc-6.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.1 b/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.1 deleted file mode 100644 index 1ec85ad67840..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-fishbmc-6.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Fische visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.fishbmc -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.fishbmc/archive/6.2.1-Matrix.tar.gz -> kodi-visualization-fishbmc-6.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebbbd8aca8ace586546a901a28f869fe diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.1.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.1.0 deleted file mode 100644 index 03e44d775f72..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.goom/archive/2.1.0-Leia.tar.gz -> kodi-visualization-goom-2.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=450618a40ef30594382ed514e49b57e3 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.0 deleted file mode 100644 index 1d2d03dfd111..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.goom/archive/2.2.0-Leia.tar.gz -> kodi-visualization-goom-2.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=450618a40ef30594382ed514e49b57e3 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1 deleted file mode 100644 index 3561ed10c0c4..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.goom/archive/2.2.1-Leia.tar.gz -> kodi-visualization-goom-2.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=450618a40ef30594382ed514e49b57e3 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1-r1 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1-r1 deleted file mode 100644 index 3cb791afce09..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-2.2.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.goom/archive/2.2.1-Leia.tar.gz -> kodi-visualization-goom-2.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f975d50e520b884d6e7008d672e258d5 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.2.0 deleted file mode 100644 index 18d370a80130..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.goom/archive/3.2.0-Matrix.tar.gz -> kodi-visualization-goom-3.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=541fee7b3aecb0c9dfa7618105154f9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.0 deleted file mode 100644 index cf5b10d54a8d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.goom/archive/3.3.0-Matrix.tar.gz -> kodi-visualization-goom-3.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=541fee7b3aecb0c9dfa7618105154f9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.1 b/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.1 deleted file mode 100644 index 370968dddfad..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-goom-3.3.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Goom visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.goom -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.goom/archive/3.3.1-Matrix.tar.gz -> kodi-visualization-goom-3.3.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=541fee7b3aecb0c9dfa7618105154f9c diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5 deleted file mode 100644 index 55d24359a17f..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* >=media-libs/libprojectm-3.1.2:= >=media-libs/glm-0.9.9.5 virtual/opengl -DESCRIPTION=ProjectM visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.projectm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =media-libs/kodi-platform-18* >=media-libs/libprojectm-3.1.2:= >=media-libs/glm-0.9.9.5 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.projectm/archive/2.3.5-Leia.tar.gz -> kodi-visualization-projectm-2.3.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1fba1b9585c2bae76d524166473aef56 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5-r1 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5-r1 deleted file mode 100644 index 7aaa10c3b482..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-2.3.5-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -DESCRIPTION=ProjectM visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.projectm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.projectm/archive/2.3.5-Leia.tar.gz -> kodi-visualization-projectm-2.3.5.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=74bde5cb16569dded59bd8798c9649d8 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0 deleted file mode 100644 index 5161cd987c0e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/libprojectm-3.1.2:= >=media-libs/glm-0.9.9.5 virtual/opengl -DESCRIPTION=ProjectM visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.projectm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* >=media-libs/libprojectm-3.1.2:= >=media-libs/glm-0.9.9.5 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.projectm/archive/3.1.0-Matrix.tar.gz -> kodi-visualization-projectm-3.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=45e7493e7f326021a38cb3a42ae4f741 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0-r1 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0-r1 deleted file mode 100644 index 628f72e201ab..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.1.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -DESCRIPTION=ProjectM visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.projectm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.projectm/archive/3.1.0-Matrix.tar.gz -> kodi-visualization-projectm-3.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=83928399c16be07c5ce8fff252567456 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.2.0 deleted file mode 100644 index 881e839388a9..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-projectm-3.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -DESCRIPTION=ProjectM visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.projectm -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= virtual/opengl >=media-libs/libprojectm-3.1.2:= -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.projectm/archive/3.2.0-Matrix.tar.gz -> kodi-visualization-projectm-3.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=83928399c16be07c5ce8fff252567456 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.10 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.10 deleted file mode 100644 index 4c12d578707d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.10 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.1.10-Leia.tar.gz -> kodi-visualization-shadertoy-1.1.10.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=82e16ece6927edf18a4f44ea64e3f124 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.5 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.5 deleted file mode 100644 index 953467defe15..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* media-tv/kodi virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=6 -HOMEPAGE=https://github.com/notspiff/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* media-tv/kodi virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.shadertoy/archive/v1.1.5.tar.gz -> kodi-visualization-shadertoy-1.1.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=de2a93f41c1234af69c9cfb9193f0fd4 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.8 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.8 deleted file mode 100644 index 281fa4ee619c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.8 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.1.8-Leia.tar.gz -> kodi-visualization-shadertoy-1.1.8.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=611ede9637b1d19448e0e7c671963f3b diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.9 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.9 deleted file mode 100644 index 971023a19db3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.1.9 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.1.9-Leia.tar.gz -> kodi-visualization-shadertoy-1.1.9.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=82e16ece6927edf18a4f44ea64e3f124 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.1 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.1 deleted file mode 100644 index a0f84d95af4a..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* media-libs/glm virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* media-libs/glm virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.2.1-Leia.tar.gz -> kodi-visualization-shadertoy-1.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=eb8652b59056273ae2cb97d3db37da55 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.2 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.2 deleted file mode 100644 index fad623877cff..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* media-libs/glm virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* media-libs/glm virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.2.2-Leia.tar.gz -> kodi-visualization-shadertoy-1.2.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=eb8652b59056273ae2cb97d3db37da55 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.3 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.3 deleted file mode 100644 index e4d038678f9c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-1.2.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==dev-libs/libplatform-2* =media-tv/kodi-18* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/1.2.3-Leia.tar.gz -> kodi-visualization-shadertoy-1.2.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9fc729336a631370b6dda331a3f355b4 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.1.1 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.1.1 deleted file mode 100644 index 8b7ddb685267..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/2.1.1-Matrix.tar.gz -> kodi-visualization-shadertoy-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fb9d0d8ba1f6db9783d6a46a3f95f4a7 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.0 deleted file mode 100644 index d5760f7c14a3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/2.2.0-Matrix.tar.gz -> kodi-visualization-shadertoy-2.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fb9d0d8ba1f6db9783d6a46a3f95f4a7 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.1 b/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.1 deleted file mode 100644 index d298f713664c..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-shadertoy-2.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Shadertoy visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.shadertoy -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-19* >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.shadertoy/archive/2.2.1-Matrix.tar.gz -> kodi-visualization-shadertoy-2.2.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fb9d0d8ba1f6db9783d6a46a3f95f4a7 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.0.3 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.0.3 deleted file mode 100644 index 32f4903992f2..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.0.3 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Spectrum visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.spectrum -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.spectrum/archive/3.0.3-Leia.tar.gz -> kodi-visualization-spectrum-3.0.3.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cf7a2c0a638f4176b0d935b59f3057c5 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.2.0 deleted file mode 100644 index 38e4a75eb4de..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Spectrum visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.spectrum -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.spectrum/archive/3.2.0-Matrix.tar.gz -> kodi-visualization-spectrum-3.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=79d8e2ef4139d44fc2cd352db5c6c72b diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.3.0 deleted file mode 100644 index 11aa02e1deae..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-spectrum-3.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Spectrum visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.spectrum -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.spectrum/archive/3.3.0-Matrix.tar.gz -> kodi-visualization-spectrum-3.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=79d8e2ef4139d44fc2cd352db5c6c72b diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.0 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.0 deleted file mode 100644 index 4608f9b1ced0..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* media-libs/glm virtual/opengl -DESCRIPTION=StarBurst visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.starburst -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* media-libs/glm virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.starburst/archive/2.0.0-Leia.tar.gz -> kodi-visualization-starburst-2.0.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=30ffcb7fa4fa9718724bb3571db6b1e5 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.1 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.1 deleted file mode 100644 index 3ee321d3325d..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* media-libs/glm virtual/opengl -DESCRIPTION=StarBurst visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.starburst -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* media-libs/glm virtual/opengl -SLOT=0 -SRC_URI=https://github.com/notspiff/visualization.starburst/archive/2.0.1-Leia.tar.gz -> kodi-visualization-starburst-2.0.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=67fb1fbb6b908e2a32a751a7033c80c7 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.2 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.2 deleted file mode 100644 index f7e99102ca19..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=StarBurst visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/notspiff/visualization.starburst -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.starburst/archive/2.0.2-Leia.tar.gz -> kodi-visualization-starburst-2.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=727f118e679c672b7c9291f13cc6a0b2 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.2.0 deleted file mode 100644 index 40a3747ec6ac..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=StarBurst visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.starburst -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.starburst/archive/2.2.0-Matrix.tar.gz -> kodi-visualization-starburst-2.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=edcdcc5756db5db55d9f4b55231a7034 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.0 deleted file mode 100644 index 102b55c54a71..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-starburst-2.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=StarBurst visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.starburst -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.starburst/archive/2.3.0-Matrix.tar.gz -> kodi-visualization-starburst-2.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=edcdcc5756db5db55d9f4b55231a7034 diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-2.0.1 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-2.0.1 deleted file mode 100644 index a57cd7a7ee70..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-2.0.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Waveform visualizer for Kodi -EAPI=6 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/2.0.1-Leia.tar.gz -> kodi-visualization-waveform-2.0.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=93c36cea758014c8e671b87b1cb4b93f diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.0.2 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.0.2 deleted file mode 100644 index fdd3104f4f69..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/3.0.2-Leia.tar.gz -> kodi-visualization-waveform-3.0.2.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bb81c4ccd1d362886ef1daa9cd11de3d diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.0 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.0 deleted file mode 100644 index 3a277ac63d00..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* virtual/opengl media-libs/glm -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/3.1.0-Leia.tar.gz -> kodi-visualization-waveform-3.1.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bb81c4ccd1d362886ef1daa9cd11de3d diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.1 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.1 deleted file mode 100644 index 95bffa571183..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-3.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-18*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/3.1.1-Leia.tar.gz -> kodi-visualization-waveform-3.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=aaca7a260dfd3ed9f452da6f3e90866a diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.2.0 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.2.0 deleted file mode 100644 index ff349aea9096..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/4.2.0-Matrix.tar.gz -> kodi-visualization-waveform-4.2.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=74dacc948ce3c07cfdd8b0b64323818f diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.0 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.0 deleted file mode 100644 index 22a82d357b7e..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/4.3.0-Matrix.tar.gz -> kodi-visualization-waveform-4.3.0.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=74dacc948ce3c07cfdd8b0b64323818f diff --git a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.1 b/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.1 deleted file mode 100644 index d0c11ef861e3..000000000000 --- a/metadata/md5-cache/media-plugins/kodi-visualization-waveform-4.3.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -DESCRIPTION=Waveform visualizer for Kodi -EAPI=7 -HOMEPAGE=https://github.com/xbmc/visualization.waveform -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND==media-tv/kodi-19*:= >=media-libs/glm-0.9.9.8-r1 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/xbmc/visualization.waveform/archive/4.3.1-Matrix.tar.gz -> kodi-visualization-waveform-4.3.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=74dacc948ce3c07cfdd8b0b64323818f diff --git a/metadata/md5-cache/media-radio/Manifest.gz b/metadata/md5-cache/media-radio/Manifest.gz index 1d1fa99c1b79..db50d21d4e52 100644 Binary files a/metadata/md5-cache/media-radio/Manifest.gz and b/metadata/md5-cache/media-radio/Manifest.gz differ diff --git a/metadata/md5-cache/media-radio/tucnak-4.23 b/metadata/md5-cache/media-radio/tucnak-4.23 index 8816d86fa151..ad0c491fbea5 100644 --- a/metadata/md5-cache/media-radio/tucnak-4.23 +++ b/metadata/md5-cache/media-radio/tucnak-4.23 @@ -5,10 +5,10 @@ DESCRIPTION=Amateur Radio VHF Contest Logbook EAPI=7 HOMEPAGE=http://tucnak.nagano.cz IUSE=alsa fftw gpm hamlib suid -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 dev-libs/libzia media-libs/libsndfile >=media-libs/libsdl-1.2 alsa? ( media-libs/alsa-lib ) fftw? ( sci-libs/fftw:3.0 ) gpm? ( sys-libs/gpm ) hamlib? ( media-libs/hamlib ) SLOT=0 SRC_URI=http://tucnak.nagano.cz/tucnak-4.23.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bf409551c237e267e7979f2c1fa90867 +_md5_=a56cc7791b1799317cccd374765d60d4 diff --git a/metadata/md5-cache/media-radio/wsjtx-2.2.2 b/metadata/md5-cache/media-radio/wsjtx-2.2.2 index 126ec0763c0f..dc62e61e6ece 100644 --- a/metadata/md5-cache/media-radio/wsjtx-2.2.2 +++ b/metadata/md5-cache/media-radio/wsjtx-2.2.2 @@ -5,10 +5,10 @@ DESCRIPTION=Weak signal ham radio communication EAPI=7 HOMEPAGE=http://physics.princeton.edu/pulsar/K1JT/wsjtx.html IUSE=doc -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qtprintsupport:5 virtual/libusb:1 media-libs/hamlib media-libs/portaudio sci-libs/fftw:3.0[threads,fortran] virtual/fortran app-text/asciidoc doc? ( dev-ruby/asciidoctor ) SLOT=0 SRC_URI=mirror://sourceforge/wsjt/wsjtx-2.2.2.tgz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=34f3be27425f4f8171368ad3d1003f87 +_md5_=7cfc2be50353b5ada42e5d7ebb1d8c2e diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 0d9ca5114af8..a936e7da57f0 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/aqualung-1.1-r1 b/metadata/md5-cache/media-sound/aqualung-1.1-r1 index 8d731ed4dc9a..b7435f5e3f78 100644 --- a/metadata/md5-cache/media-sound/aqualung-1.1-r1 +++ b/metadata/md5-cache/media-sound/aqualung-1.1-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Music player for a wide range of formats designed for gapless playba EAPI=7 HOMEPAGE=http://aqualung.jeremyevans.net/ https://github.com/jeremyevans/aqualung IUSE=alsa cdda cddb debug flac ffmpeg ifp jack ladspa lame libsamplerate lua mac modplug mp3 musepack oss podcast pulseaudio sndfile speex systray vorbis wavpack -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=app-arch/bzip2 dev-libs/libxml2 sys-libs/zlib x11-libs/gtk+:2 alsa? ( media-libs/alsa-lib ) cdda? ( dev-libs/libcdio-paranoia ) cddb? ( media-libs/libcddb ) ffmpeg? ( media-video/ffmpeg:0= ) flac? ( media-libs/flac ) ifp? ( media-libs/libifp ) jack? ( virtual/jack ) ladspa? ( media-libs/liblrdf ) lame? ( media-sound/lame ) libsamplerate? ( media-libs/libsamplerate ) lua? ( dev-lang/lua:0= ) mac? ( media-sound/mac ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/liboggz media-libs/libogg ) vorbis? ( media-libs/libvorbis media-libs/libogg ) wavpack? ( media-sound/wavpack ) SLOT=0 SRC_URI=https://github.com/jeremyevans/aqualung/releases/download/1.1/aqualung-1.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c45bc4947ca92007e379cd5080c298c +_md5_=2a565926116f6fc34e055c9f0aa56c45 diff --git a/metadata/md5-cache/media-sound/lollypop-1.2.35 b/metadata/md5-cache/media-sound/lollypop-1.2.35 index 4b198feef372..3d0853cb7189 100644 --- a/metadata/md5-cache/media-sound/lollypop-1.2.35 +++ b/metadata/md5-cache/media-sound/lollypop-1.2.35 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://adishatz.org/lollypop/lollypop-1.2.35.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ff49b93220c17ede2771828ca426d87f +_md5_=ff8daa152811217182de9da791fa2e79 diff --git a/metadata/md5-cache/media-sound/musescore-3.5.1 b/metadata/md5-cache/media-sound/musescore-3.5.1 deleted file mode 100644 index 6108ac8c14ef..000000000000 --- a/metadata/md5-cache/media-sound/musescore-3.5.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 virtual/pkgconfig sys-devel/make dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols2:5 >=dev-qt/qtsingleapplication-2.6.1_p20171024[X] dev-qt/qtsvg:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 >=media-libs/freetype-2.5.2 media-libs/libsndfile sys-libs/zlib:= alsa? ( >=media-libs/alsa-lib-1.0.0 ) jack? ( virtual/jack ) mp3? ( media-sound/lame ) omr? ( app-text/poppler ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) pulseaudio? ( media-sound/pulseaudio ) sf3? ( media-libs/libvorbis ) webengine? ( dev-qt/qtwebengine:5[widgets] ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=WYSIWYG Music Score Typesetter -EAPI=7 -HOMEPAGE=https://musescore.org/ -IUSE=alsa debug jack mp3 osc omr portaudio portmidi pulseaudio +sf3 sfz webengine -KEYWORDS=amd64 ~arm64 x86 -LICENSE=GPL-2 -RDEPEND=dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols2:5 >=dev-qt/qtsingleapplication-2.6.1_p20171024[X] dev-qt/qtsvg:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 >=media-libs/freetype-2.5.2 media-libs/libsndfile sys-libs/zlib:= alsa? ( >=media-libs/alsa-lib-1.0.0 ) jack? ( virtual/jack ) mp3? ( media-sound/lame ) omr? ( app-text/poppler ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) pulseaudio? ( media-sound/pulseaudio ) sf3? ( media-libs/libvorbis ) webengine? ( dev-qt/qtwebengine:5[widgets] ) -REQUIRED_USE=portmidi? ( portaudio ) -SLOT=0 -SRC_URI=https://github.com/musescore/MuseScore/archive/v3.5.1.tar.gz -> musescore-3.5.1.tar.gz 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 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4a4904156d6c4fba9db2f8280cb84f15 diff --git a/metadata/md5-cache/media-sound/musescore-3.5.2 b/metadata/md5-cache/media-sound/musescore-3.5.2 index 9ccff5f4e111..0ec046855533 100644 --- a/metadata/md5-cache/media-sound/musescore-3.5.2 +++ b/metadata/md5-cache/media-sound/musescore-3.5.2 @@ -5,11 +5,11 @@ DESCRIPTION=WYSIWYG Music Score Typesetter EAPI=7 HOMEPAGE=https://musescore.org/ IUSE=alsa debug jack mp3 osc omr portaudio portmidi pulseaudio +sf3 sfz webengine -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=GPL-2 RDEPEND=dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qthelp:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols2:5 >=dev-qt/qtsingleapplication-2.6.1_p20171024[X] dev-qt/qtsvg:5 dev-qt/qtxml:5 dev-qt/qtxmlpatterns:5 >=media-libs/freetype-2.5.2 media-libs/libsndfile sys-libs/zlib:= alsa? ( >=media-libs/alsa-lib-1.0.0 ) jack? ( virtual/jack ) mp3? ( media-sound/lame ) omr? ( app-text/poppler ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) pulseaudio? ( media-sound/pulseaudio ) sf3? ( media-libs/libvorbis ) webengine? ( dev-qt/qtwebengine:5[widgets] ) REQUIRED_USE=portmidi? ( portaudio ) SLOT=0 SRC_URI=https://github.com/musescore/MuseScore/archive/v3.5.2.tar.gz -> musescore-3.5.2.tar.gz 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 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=09b7bb1e5fc3d0d2907b6955c81a495b +_md5_=4a4904156d6c4fba9db2f8280cb84f15 diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz index 1c7e09647d0a..430c3cbb8832 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/kodi-18.7 b/metadata/md5-cache/media-tv/kodi-18.7 deleted file mode 100644 index 8df92f2c7a9c..000000000000 --- a/metadata/md5-cache/media-tv/kodi-18.7 +++ /dev/null @@ -1,16 +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 dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) app-arch/bzip2 app-arch/xz-utils dev-lang/swig dev-libs/crossguid dev-libs/rapidjson dev-util/cmake dev-util/gperf media-libs/giflib >=media-libs/libjpeg-turbo-1.5.1:= >=media-libs/libpng-1.6.26:0= test? ( dev-cpp/gtest ) virtual/pkgconfig virtual/jre x86? ( dev-lang/nasm ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free and open source media-player and entertainment hub -EAPI=7 -HOMEPAGE=https://kodi.tv/ https://kodi.wiki/ -IUSE=airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf kernel_linux +python_single_target_python2_7 -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) lirc? ( app-misc/lirc ) !media-tv/xbmc udisks? ( sys-fs/udisks:2 ) upower? ( sys-power/upower ) -REQUIRED_USE=^^ ( python_single_target_python2_7 ) || ( gles opengl ) ^^ ( gbm raspberry-pi wayland X ) ?? ( mariadb mysql ) udev? ( !libusb ) udisks? ( dbus ) upower? ( dbus ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.0.4-Leia-18.4.tar.gz -> ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz ) https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch https://github.com/xbmc/xbmc/archive/18.7-Leia.tar.gz -> kodi-18.7.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9ae3b213f94dc41275c9db3e412f0a90 diff --git a/metadata/md5-cache/media-tv/kodi-18.8 b/metadata/md5-cache/media-tv/kodi-18.8 deleted file mode 100644 index f134c5f47bb6..000000000000 --- a/metadata/md5-cache/media-tv/kodi-18.8 +++ /dev/null @@ -1,16 +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 dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) app-arch/bzip2 app-arch/xz-utils dev-lang/swig dev-libs/crossguid dev-libs/rapidjson dev-util/cmake dev-util/gperf media-libs/giflib >=media-libs/libjpeg-turbo-1.5.1:= >=media-libs/libpng-1.6.26:0= test? ( dev-cpp/gtest ) virtual/pkgconfig virtual/jre x86? ( dev-lang/nasm ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free and open source media-player and entertainment hub -EAPI=7 -HOMEPAGE=https://kodi.tv/ https://kodi.wiki/ -IUSE=airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf kernel_linux +python_single_target_python2_7 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) lirc? ( app-misc/lirc ) !media-tv/xbmc udisks? ( sys-fs/udisks:2 ) upower? ( sys-power/upower ) -REQUIRED_USE=^^ ( python_single_target_python2_7 ) || ( gles opengl ) ^^ ( gbm raspberry-pi wayland X ) ?? ( mariadb mysql ) udev? ( !libusb ) udisks? ( dbus ) upower? ( dbus ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.0.4-Leia-18.4.tar.gz -> ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz ) https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch https://github.com/xbmc/xbmc/archive/18.8-Leia.tar.gz -> kodi-18.8.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d4ddc865bf147be6789519e100d2c061 diff --git a/metadata/md5-cache/media-tv/kodi-18.9 b/metadata/md5-cache/media-tv/kodi-18.9 deleted file mode 100644 index 1e68af1d924f..000000000000 --- a/metadata/md5-cache/media-tv/kodi-18.9 +++ /dev/null @@ -1,16 +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 dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) app-arch/bzip2 app-arch/xz-utils dev-lang/swig dev-libs/crossguid dev-libs/rapidjson dev-util/cmake dev-util/gperf media-libs/giflib >=media-libs/libjpeg-turbo-1.5.1:= >=media-libs/libpng-1.6.26:0= test? ( dev-cpp/gtest ) virtual/pkgconfig virtual/jre x86? ( dev-lang/nasm ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free and open source media-player and entertainment hub -EAPI=7 -HOMEPAGE=https://kodi.tv/ https://kodi.wiki/ -IUSE=airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf kernel_linux +python_single_target_python2_7 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python2_7] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.0.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat dev-libs/flatbuffers >=dev-libs/fribidi-0.19.7 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] python_single_target_python2_7? ( dev-python/pillow[python_targets_python2_7(-)] ) >=dev-libs/libcdio-0.94 >=dev-libs/libfmt-3.0.1 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/fontconfig-2.12.4 >=media-libs/freetype-2.8 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl,X(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.0.4:=[encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.56.1[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) lirc? ( app-misc/lirc ) !media-tv/xbmc udisks? ( sys-fs/udisks:2 ) upower? ( sys-power/upower ) -REQUIRED_USE=^^ ( python_single_target_python2_7 ) || ( gles opengl ) ^^ ( gbm raspberry-pi wayland X ) ?? ( mariadb mysql ) udev? ( !libusb ) udisks? ( dbus ) upower? ( dbus ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.0.4-Leia-18.4.tar.gz -> ffmpeg-kodi-4.0.4-Leia-18.4.tar.gz ) https://dev.gentoo.org/~candrews/kodi-18-libmicrohttpd-0.9.71.patch https://github.com/xbmc/xbmc/archive/18.9-Leia.tar.gz -> kodi-18.9.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d4ddc865bf147be6789519e100d2c061 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 403d3f11b6a7..2406ef6faf1b 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/libidn-1.35 b/metadata/md5-cache/net-dns/libidn-1.35 deleted file mode 100644 index 5104f204409d..000000000000 --- a/metadata/md5-cache/net-dns/libidn-1.35 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=emacs? ( >=app-editors/emacs-23.1:* ) mono? ( >=dev-lang/mono-0.95 ) nls? ( >=sys-devel/gettext-0.17 ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) >=app-portage/elt-patches-20170815 -DESCRIPTION=Internationalized Domain Names (IDN) implementation -EAPI=6 -HOMEPAGE=https://www.gnu.org/software/libidn/ -IUSE=doc emacs java mono nls static-libs elibc_FreeBSD java 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 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=GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 ) -RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) mono? ( >=dev-lang/mono-0.95 ) nls? ( >=virtual/libintl-0-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(-)?] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) -SLOT=0/12 -SRC_URI=mirror://gnu/libidn/libidn-1.35.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4422911117f09fb219e85662c800f4da diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 1d4dfe893bbb..d4df5d1fdad4 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/dino-0.2.0 b/metadata/md5-cache/net-im/dino-0.2.0 new file mode 100644 index 000000000000..6f3cfcf411ed --- /dev/null +++ b/metadata/md5-cache/net-im/dino-0.2.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=|| ( dev-lang/vala:0.50 dev-lang/vala:0.48 dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.40 dev-lang/vala:0.36 ) dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu dev-libs/libgee:0.8 net-libs/glib-networking net-libs/libsignal-protocol-c x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/pango gpg? ( app-crypt/gpgme:1 ) http? ( net-libs/libsoup:2.4 ) omemo? ( dev-libs/libgcrypt:0 media-gfx/qrencode ) notification-sound? ( media-libs/libcanberra:0[sound] ) sys-devel/gettext dev-util/ninja >=dev-util/cmake-3.9.6 +DESCRIPTION=Modern Jabber/XMPP Client using GTK+/Vala +EAPI=6 +HOMEPAGE=https://dino.im +IUSE=+gpg +http +omemo +notification-sound +KEYWORDS=~amd64 ~arm64 +LICENSE=GPL-3 +RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu dev-libs/libgee:0.8 net-libs/glib-networking net-libs/libsignal-protocol-c x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/pango gpg? ( app-crypt/gpgme:1 ) http? ( net-libs/libsoup:2.4 ) omemo? ( dev-libs/libgcrypt:0 media-gfx/qrencode ) notification-sound? ( media-libs/libcanberra:0[sound] ) +SLOT=0 +SRC_URI=https://github.com/dino/dino/releases/download/v0.2.0/dino-0.2.0.tar.gz +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vala 2cd99cd72bb91f3f190fa4ca576be580 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=0abfca2f665f29fa7bcdfd72898c276f diff --git a/metadata/md5-cache/net-im/dino-9999 b/metadata/md5-cache/net-im/dino-9999 index c0ee49ad0165..a05555f752a7 100644 --- a/metadata/md5-cache/net-im/dino-9999 +++ b/metadata/md5-cache/net-im/dino-9999 @@ -9,4 +9,4 @@ PROPERTIES=live RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu dev-libs/libgee:0.8 net-libs/glib-networking net-libs/libsignal-protocol-c x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/pango gpg? ( app-crypt/gpgme:1 ) http? ( net-libs/libsoup:2.4 ) omemo? ( dev-libs/libgcrypt:0 media-gfx/qrencode ) notification-sound? ( media-libs/libcanberra:0[sound] ) SLOT=0 _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vala 2cd99cd72bb91f3f190fa4ca576be580 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=50e118e7ad64e7b691932d6a8819ec3a +_md5_=0abfca2f665f29fa7bcdfd72898c276f diff --git a/metadata/md5-cache/net-im/mcabber-1.1.2 b/metadata/md5-cache/net-im/mcabber-1.1.2 index c3825df845f4..962177ff71cc 100644 --- a/metadata/md5-cache/net-im/mcabber-1.1.2 +++ b/metadata/md5-cache/net-im/mcabber-1.1.2 @@ -4,10 +4,10 @@ DESCRIPTION=A small Jabber console client with various features, like MUC, SSL, EAPI=7 HOMEPAGE=http://mcabber.com/ IUSE=aspell crypt idn otr spell ssl vim-syntax l10n_cs l10n_de l10n_fr l10n_it l10n_nl l10n_pl l10n_ru l10n_uk -KEYWORDS=~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=crypt? ( >=app-crypt/gpgme-1.0.0 ) otr? ( >=net-libs/libotr-3.1.0 ) aspell? ( app-text/aspell ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) idn? ( net-dns/libidn:= ) spell? ( app-text/enchant:0 ) dev-libs/glib:2 net-libs/libnsl:0= sys-libs/ncurses:0= >=net-libs/loudmouth-1.4.3-r1[ssl?] SLOT=0 SRC_URI=http://mcabber.com/files/mcabber-1.1.2.tar.bz2 _eclasses_=readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 -_md5_=5269190fa4aa07928855aa3a8dea50d6 +_md5_=c2f07ac3e77447b747e3f7eb2afd77a7 diff --git a/metadata/md5-cache/net-im/psi-1.5 b/metadata/md5-cache/net-im/psi-1.5 index 99bc7733597b..6a7f460a9d95 100644 --- a/metadata/md5-cache/net-im/psi-1.5 +++ b/metadata/md5-cache/net-im/psi-1.5 @@ -1,16 +1,16 @@ BDEPEND=dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] ) webkit? ( dev-qt/qtwebkit:5 ) whiteboarding? ( dev-qt/qtsvg:5 ) xscreensaver? ( x11-libs/libXScrnSaver ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] ) whiteboarding? ( dev-qt/qtsvg:5 ) xscreensaver? ( x11-libs/libXScrnSaver ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Qt XMPP client EAPI=7 HOMEPAGE=https://psi-im.org -IUSE=aspell crypt dbus debug doc enchant +hunspell webengine webkit whiteboarding xscreensaver +IUSE=aspell crypt dbus debug doc enchant +hunspell webengine whiteboarding xscreensaver KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] ) webkit? ( dev-qt/qtwebkit:5 ) whiteboarding? ( dev-qt/qtsvg:5 ) xscreensaver? ( x11-libs/libXScrnSaver ) dev-qt/qtimageformats -REQUIRED_USE=?? ( aspell enchant hunspell ) webengine? ( !webkit ) +RDEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] ) whiteboarding? ( dev-qt/qtsvg:5 ) xscreensaver? ( x11-libs/libXScrnSaver ) dev-qt/qtimageformats +REQUIRED_USE=?? ( aspell enchant hunspell ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/psi/psi-1.5.tar.xz https://github.com/psi-im/psi-l10n/archive/1.5.tar.gz -> psi-l10n-1.5.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=276b1b3372f68e5599e18e55097ad1d4 +_md5_=ca8b1d38499290ac05f47978406d8e9d diff --git a/metadata/md5-cache/net-im/psi-9999 b/metadata/md5-cache/net-im/psi-9999 index 4e8c1eb9e716..c5041ef85777 100644 --- a/metadata/md5-cache/net-im/psi-9999 +++ b/metadata/md5-cache/net-im/psi-9999 @@ -1,15 +1,15 @@ BDEPEND=dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) extras? ( >=sys-devel/qconf-2.4 ) >=dev-vcs/git-1.8.2.1[curl] dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 net-libs/http-parser:= net-libs/usrsctp sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) keyring? ( dev-libs/qtkeychain:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] net-libs/http-parser ) webkit? ( dev-qt/qtwebkit:5 ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 net-libs/http-parser:= net-libs/usrsctp sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) keyring? ( dev-libs/qtkeychain:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] net-libs/http-parser ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Qt XMPP client EAPI=7 HOMEPAGE=https://psi-im.org -IUSE=aspell crypt dbus debug doc enchant extras +hunspell iconsets keyring webengine webkit xscreensaver +IUSE=aspell crypt dbus debug doc enchant extras +hunspell iconsets keyring webengine xscreensaver LICENSE=GPL-2 PROPERTIES=live -RDEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 net-libs/http-parser:= net-libs/usrsctp sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) keyring? ( dev-libs/qtkeychain:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] net-libs/http-parser ) webkit? ( dev-qt/qtwebkit:5 ) dev-qt/qtimageformats crypt? ( app-crypt/qca[gpg] ) +RDEPEND=app-crypt/qca:2[ssl] dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 net-dns/libidn:0 net-libs/http-parser:= net-libs/usrsctp sys-libs/zlib[minizip] x11-libs/libX11 x11-libs/libxcb aspell? ( app-text/aspell ) dbus? ( dev-qt/qtdbus:5 ) enchant? ( app-text/enchant:2 ) hunspell? ( app-text/hunspell:= ) keyring? ( dev-libs/qtkeychain:= ) webengine? ( dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] net-libs/http-parser ) dev-qt/qtimageformats crypt? ( app-crypt/qca[gpg] ) REQUIRED_USE=?? ( aspell enchant hunspell ) iconsets? ( extras ) RESTRICT=test iconsets? ( bindist ) SLOT=0 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cc0bbb5035fa8d0727db48b8a9b7d22b +_md5_=2740810597c6ea9e7995954574833eb6 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index ea401eca64ae..90d612d2b01a 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/courier-authlib-0.71.0 b/metadata/md5-cache/net-libs/courier-authlib-0.71.0 index cf4571d703d7..a92544af130f 100644 --- a/metadata/md5-cache/net-libs/courier-authlib-0.71.0 +++ b/metadata/md5-cache/net-libs/courier-authlib-0.71.0 @@ -4,11 +4,11 @@ DESCRIPTION=Courier authentication library EAPI=7 HOMEPAGE=https://www.courier-mta.org/authlib/ IUSE=berkdb crypt debug gdbm ldap libressl mysql pam postgres sqlite static-libs -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 LICENSE=GPL-3 RDEPEND=net-mail/mailbase >=net-libs/courier-unicode-2.1 gdbm? ( sys-libs/gdbm ) !gdbm? ( sys-libs/db:= ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ldap? ( >=net-nds/openldap-1.2.11 ) mysql? ( dev-db/mysql-connector-c ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:= ) sqlite? ( dev-db/sqlite:3 ) RESTRICT=!berkdb? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/courier/courier-authlib-0.71.0.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=aeee8a8de4b1b3a21c975ddade50ad81 +_md5_=9902062d3edc25c6adf7a482fc8b0a25 diff --git a/metadata/md5-cache/net-libs/courier-unicode-2.1-r1 b/metadata/md5-cache/net-libs/courier-unicode-2.1-r1 index 1179c6a695ec..9d2d00760e9d 100644 --- a/metadata/md5-cache/net-libs/courier-unicode-2.1-r1 +++ b/metadata/md5-cache/net-libs/courier-unicode-2.1-r1 @@ -2,8 +2,8 @@ DEFINED_PHASES=configure install DESCRIPTION=Unicode library used by the courier mail server EAPI=7 HOMEPAGE=https://www.courier-mta.org/ -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 s390 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://sourceforge/courier/courier-unicode-2.1.tar.bz2 -_md5_=a255508938341670515ebf22d84bb294 +_md5_=c4733f2865665e31574bf5c6eae07389 diff --git a/metadata/md5-cache/net-libs/davix-0.7.5 b/metadata/md5-cache/net-libs/davix-0.7.5 deleted file mode 100644 index 919f3f9deac7..000000000000 --- a/metadata/md5-cache/net-libs/davix-0.7.5 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/libxml2:2= dev-libs/openssl:0= kernel_linux? ( sys-apps/util-linux ) doc? ( app-doc/doxygen[dot] dev-python/sphinx ) virtual/pkgconfig -DESCRIPTION=High-performance file management over WebDAV/HTTP -EAPI=7 -HOMEPAGE=https://dmc.web.cern.ch/projects/davix -IUSE=doc ipv6 kernel_linux test tools -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-libs/libxml2:2= dev-libs/openssl:0= kernel_linux? ( sys-apps/util-linux ) -REQUIRED_USE=test? ( tools ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/0.7.5/davix-0.7.5.tar.gz -> davix-0.7.5.tar -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fd1d13fb201b4bf8aea84b2114f5b352 diff --git a/metadata/md5-cache/net-libs/davix-0.7.6 b/metadata/md5-cache/net-libs/davix-0.7.6 index c6ba9973992e..9c5aecc92926 100644 --- a/metadata/md5-cache/net-libs/davix-0.7.6 +++ b/metadata/md5-cache/net-libs/davix-0.7.6 @@ -1,16 +1,16 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 +BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test DEPEND=dev-libs/libxml2:2= dev-libs/openssl:0= net-libs/gsoap[ssl,-gnutls,-libressl] kernel_linux? ( sys-apps/util-linux ) doc? ( app-doc/doxygen[dot] dev-python/sphinx ) virtual/pkgconfig DESCRIPTION=High-performance file management over WebDAV/HTTP EAPI=7 HOMEPAGE=https://dmc.web.cern.ch/projects/davix IUSE=doc ipv6 kernel_linux test tools -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1 RDEPEND=dev-libs/libxml2:2= dev-libs/openssl:0= net-libs/gsoap[ssl,-gnutls,-libressl] kernel_linux? ( sys-apps/util-linux ) REQUIRED_USE=test? ( tools ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/0.7.6/davix-0.7.6.tar.gz -> davix-0.7.6.tar -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4a8da8abc59f6a3984d0a7b6edb8caae +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=5e9b1a7950c44ead7b5485d50dd1968a diff --git a/metadata/md5-cache/net-libs/http-parser-2.8.1 b/metadata/md5-cache/net-libs/http-parser-2.8.1 deleted file mode 100644 index cfcd5640d937..000000000000 --- a/metadata/md5-cache/net-libs/http-parser-2.8.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=HTTP request/response parser for C -EAPI=6 -HOMEPAGE=https://github.com/nodejs/http-parser -IUSE=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 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x64-macos ~x64-solaris -LICENSE=MIT -SLOT=0/2.8.0 -SRC_URI=https://github.com/nodejs/http-parser/archive/v2.8.1.tar.gz -> http-parser-2.8.1.tar.gz -_eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=49df45f37799a2037e7983abdbcb9346 diff --git a/metadata/md5-cache/net-libs/http-parser-2.9.3-r1 b/metadata/md5-cache/net-libs/http-parser-2.9.3-r1 deleted file mode 100644 index 6bb23f028df7..000000000000 --- a/metadata/md5-cache/net-libs/http-parser-2.9.3-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=HTTP request/response parser for C -EAPI=7 -HOMEPAGE=https://github.com/nodejs/http-parser -IUSE=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 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x64-macos ~x64-solaris -LICENSE=MIT -SLOT=0/2.9.3 -SRC_URI=https://github.com/nodejs/http-parser/archive/v2.9.3.tar.gz -> http-parser-2.9.3.tar.gz -_eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6667a4f58d0aaf76a3f7464257142638 diff --git a/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 b/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 index 526bc26e7d63..a291647d91d9 100644 --- a/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 +++ b/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 @@ -4,9 +4,9 @@ DESCRIPTION=UPnP client library and a simple UPnP client EAPI=7 HOMEPAGE=http://miniupnp.free.fr/ IUSE=ipv6 kernel_linux static-libs verify-sig -KEYWORDS=~amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86 LICENSE=BSD SLOT=0/17 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz verify-sig? ( http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz.sig ) _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=f32ebf70e45d2a42c5062460c2c103bf +_md5_=517888895390d2167b6d5c48ec6a0abc diff --git a/metadata/md5-cache/net-libs/nodejs-12.19.1 b/metadata/md5-cache/net-libs/nodejs-12.19.1 index cbb32be97e94..505edf96b876 100644 --- a/metadata/md5-cache/net-libs/nodejs-12.19.1 +++ b/metadata/md5-cache/net-libs/nodejs-12.19.1 @@ -5,7 +5,7 @@ DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine EAPI=7 HOMEPAGE=https://nodejs.org/ IUSE=cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x64-macos +KEYWORDS=amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT RDEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.39.0:= >=net-dns/c-ares-1.16.0 >=net-libs/http-parser-2.9.3:= >=net-libs/nghttp2-1.40.0 sys-libs/zlib icu? ( >=dev-libs/icu-64.2:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/12 SRC_URI=https://nodejs.org/dist/v12.19.1/node-v12.19.1.tar.xz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9f15ea97ffe884c74c9966c2fe19fe76 +_md5_=ad76590736046e216d6a9974976f3380 diff --git a/metadata/md5-cache/net-libs/nodejs-14.15.1 b/metadata/md5-cache/net-libs/nodejs-14.15.1 index cffaa62ac5bd..4f2b3ab458b1 100644 --- a/metadata/md5-cache/net-libs/nodejs-14.15.1 +++ b/metadata/md5-cache/net-libs/nodejs-14.15.1 @@ -5,7 +5,7 @@ DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine EAPI=7 HOMEPAGE=https://nodejs.org/ IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x64-macos +KEYWORDS=amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT RDEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1 >=net-libs/nghttp2-1.41.0 sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) system-ssl? ( ssl ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/14 SRC_URI=https://nodejs.org/dist/v14.15.1/node-v14.15.1.tar.xz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c4e997018c5def511abb00b6d9648e58 +_md5_=599518354fe91c2101dbd26d077f9ad0 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 0eede902d4e7..80a1c8e75708 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/croc-8.6.5 b/metadata/md5-cache/net-misc/croc-8.6.5 deleted file mode 100644 index 01d30e4b43fd..000000000000 --- a/metadata/md5-cache/net-misc/croc-8.6.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst prepare test unpack -DESCRIPTION=Easily and securely send things from one computer to another -EAPI=7 -HOMEPAGE=https://github.com/schollz/croc -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 BSD BSD-2 MIT -RDEPEND=acct-group/croc acct-user/croc -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/schollz/croc/releases/download/v8.6.5/croc_8.6.5_src.tar.gz -> croc-8.6.5.tar.gz mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.5.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.5.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.5.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.5.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0.zip mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/denisbrodbeck/machineid/@v/v1.0.1.zip -> github.com%2Fdenisbrodbeck%2Fmachineid%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/denisbrodbeck/machineid/@v/v1.0.1.mod -> github.com%2Fdenisbrodbeck%2Fmachineid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/k0kubun/go-ansi/@v/v0.0.0-20180517002512-3bf9e2903213.mod -> github.com%2Fk0kubun%2Fgo-ansi%2F@v%2Fv0.0.0-20180517002512-3bf9e2903213.mod mirror://goproxy//github.com/kalafut/imohash/@v/v1.0.0.zip -> github.com%2Fkalafut%2Fimohash%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/kalafut/imohash/@v/v1.0.0.mod -> github.com%2Fkalafut%2Fimohash%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mitchellh/colorstring/@v/v0.0.0-20190213212951-d06e56a500db.zip -> github.com%2Fmitchellh%2Fcolorstring%2F@v%2Fv0.0.0-20190213212951-d06e56a500db.zip mirror://goproxy//github.com/mitchellh/colorstring/@v/v0.0.0-20190213212951-d06e56a500db.mod -> github.com%2Fmitchellh%2Fcolorstring%2F@v%2Fv0.0.0-20190213212951-d06e56a500db.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.zip -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/schollz/cli/v2/@v/v2.2.1.zip -> github.com%2Fschollz%2Fcli%2Fv2%2F@v%2Fv2.2.1.zip mirror://goproxy//github.com/schollz/cli/v2/@v/v2.2.1.mod -> github.com%2Fschollz%2Fcli%2Fv2%2F@v%2Fv2.2.1.mod mirror://goproxy//github.com/schollz/logger/@v/v1.2.0.zip -> github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/schollz/logger/@v/v1.2.0.mod -> github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/schollz/mnemonicode/@v/v1.0.1.zip -> github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/schollz/mnemonicode/@v/v1.0.1.mod -> github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/schollz/pake/v2/@v/v2.0.4.zip -> github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.4.zip mirror://goproxy//github.com/schollz/pake/v2/@v/v2.0.4.mod -> github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/schollz/peerdiscovery/@v/v1.6.0.zip -> github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/schollz/peerdiscovery/@v/v1.6.0.mod -> github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/schollz/progressbar/v2/@v/v2.15.0.zip -> github.com%2Fschollz%2Fprogressbar%2Fv2%2F@v%2Fv2.15.0.zip mirror://goproxy//github.com/schollz/progressbar/v2/@v/v2.15.0.mod -> github.com%2Fschollz%2Fprogressbar%2Fv2%2F@v%2Fv2.15.0.mod mirror://goproxy//github.com/schollz/progressbar/v3/@v/v3.6.2.zip -> github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.6.2.zip mirror://goproxy//github.com/schollz/progressbar/v3/@v/v3.6.2.mod -> github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.6.2.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.zip -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/tscholl2/siec/@v/v0.0.0-20191122224205-8da93652b094.zip -> github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.zip mirror://goproxy//github.com/tscholl2/siec/@v/v0.0.0-20191122224205-8da93652b094.mod -> github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200604202706-70a84ac30bf9.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200604202706-70a84ac30bf9.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200604202706-70a84ac30bf9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200604202706-70a84ac30bf9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201002170205-7f63de1d35b0.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201002170205-7f63de1d35b0.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201016220609-9e8e0b390897.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201016220609-9e8e0b390897.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201016220609-9e8e0b390897.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201016220609-9e8e0b390897.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201022231255-08b38378de70.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201022231255-08b38378de70.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201022231255-08b38378de70.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201022231255-08b38378de70.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200116001909-b77594299b42.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200625212154-ddb9806d33ae.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200625212154-ddb9806d33ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201009025420-dfb3f7c4e634.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201009025420-dfb3f7c4e634.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201022201747-fb209a7c41cd.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201022201747-fb209a7c41cd.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201022201747-fb209a7c41cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201022201747-fb209a7c41cd.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/tylerb/is.v1/@v/v1.1.2.zip -> gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.zip mirror://goproxy//gopkg.in/tylerb/is.v1/@v/v1.1.2.mod -> gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.mod -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=84ad87390ca576a0d37eef5c4f9545fd diff --git a/metadata/md5-cache/net-misc/croc-8.6.6 b/metadata/md5-cache/net-misc/croc-8.6.6 new file mode 100644 index 000000000000..3b75adc648dc --- /dev/null +++ b/metadata/md5-cache/net-misc/croc-8.6.6 @@ -0,0 +1,13 @@ +BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install postinst prepare test unpack +DESCRIPTION=Easily and securely send things from one computer to another +EAPI=7 +HOMEPAGE=https://github.com/schollz/croc +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 BSD BSD-2 MIT +RDEPEND=acct-group/croc acct-user/croc +RESTRICT=strip +SLOT=0 +SRC_URI=https://github.com/schollz/croc/releases/download/v8.6.6/croc_8.6.6_src.tar.gz -> croc-8.6.6.tar.gz mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.5.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.5.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.5.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.5.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0-20190314233015-f79a8a8ca69d.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0-20190314233015-f79a8a8ca69d.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0.zip -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0.zip mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/denisbrodbeck/machineid/@v/v1.0.1.zip -> github.com%2Fdenisbrodbeck%2Fmachineid%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/denisbrodbeck/machineid/@v/v1.0.1.mod -> github.com%2Fdenisbrodbeck%2Fmachineid%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/k0kubun/go-ansi/@v/v0.0.0-20180517002512-3bf9e2903213.mod -> github.com%2Fk0kubun%2Fgo-ansi%2F@v%2Fv0.0.0-20180517002512-3bf9e2903213.mod mirror://goproxy//github.com/kalafut/imohash/@v/v1.0.0.zip -> github.com%2Fkalafut%2Fimohash%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/kalafut/imohash/@v/v1.0.0.mod -> github.com%2Fkalafut%2Fimohash%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mitchellh/colorstring/@v/v0.0.0-20190213212951-d06e56a500db.zip -> github.com%2Fmitchellh%2Fcolorstring%2F@v%2Fv0.0.0-20190213212951-d06e56a500db.zip mirror://goproxy//github.com/mitchellh/colorstring/@v/v0.0.0-20190213212951-d06e56a500db.mod -> github.com%2Fmitchellh%2Fcolorstring%2F@v%2Fv0.0.0-20190213212951-d06e56a500db.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.zip -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/schollz/cli/v2/@v/v2.2.1.zip -> github.com%2Fschollz%2Fcli%2Fv2%2F@v%2Fv2.2.1.zip mirror://goproxy//github.com/schollz/cli/v2/@v/v2.2.1.mod -> github.com%2Fschollz%2Fcli%2Fv2%2F@v%2Fv2.2.1.mod mirror://goproxy//github.com/schollz/logger/@v/v1.2.0.zip -> github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/schollz/logger/@v/v1.2.0.mod -> github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/schollz/mnemonicode/@v/v1.0.1.zip -> github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/schollz/mnemonicode/@v/v1.0.1.mod -> github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/schollz/pake/v2/@v/v2.0.5.zip -> github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.5.zip mirror://goproxy//github.com/schollz/pake/v2/@v/v2.0.5.mod -> github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/schollz/peerdiscovery/@v/v1.6.1.zip -> github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/schollz/peerdiscovery/@v/v1.6.1.mod -> github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/schollz/progressbar/v3/@v/v3.7.1.zip -> github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.7.1.zip mirror://goproxy//github.com/schollz/progressbar/v3/@v/v3.7.1.mod -> github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.7.1.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.zip -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/tscholl2/siec/@v/v0.0.0-20191122224205-8da93652b094.zip -> github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.zip mirror://goproxy//github.com/tscholl2/siec/@v/v0.0.0-20191122224205-8da93652b094.mod -> github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201112155050-0c6587e931a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201112155050-0c6587e931a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201117144127-c1f2f97bffc9.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201117144127-c1f2f97bffc9.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201117144127-c1f2f97bffc9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201117144127-c1f2f97bffc9.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201110031124-69a78807bb2b.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20201110031124-69a78807bb2b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200116001909-b77594299b42.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200930185726-fdedc70b468f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201113135734-0a15ea8d9b02.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201113135734-0a15ea8d9b02.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201117222635-ba5294a509c7.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201117222635-ba5294a509c7.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201117222635-ba5294a509c7.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201117222635-ba5294a509c7.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.4.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.zip mirror://goproxy//golang.org/x/text/@v/v0.3.4.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/tylerb/is.v1/@v/v1.1.2.zip -> gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.zip mirror://goproxy//gopkg.in/tylerb/is.v1/@v/v1.1.2.mod -> gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=2c17ea75f9c08c92526e3e1a59e7e1e7 diff --git a/metadata/md5-cache/net-misc/dhcp-4.4.2-r2 b/metadata/md5-cache/net-misc/dhcp-4.4.2-r3 similarity index 100% rename from metadata/md5-cache/net-misc/dhcp-4.4.2-r2 rename to metadata/md5-cache/net-misc/dhcp-4.4.2-r3 diff --git a/metadata/md5-cache/net-misc/electrum-4.0.2 b/metadata/md5-cache/net-misc/electrum-4.0.2 deleted file mode 100644 index 21aad4f1fddb..000000000000 --- a/metadata/md5-cache/net-misc/electrum-4.0.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/cryptography[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pycryptodome[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( python_targets_python3_6? ( dev-lang/python:3.6[ncurses?] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses?] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-libs/libsecp256k1 >=dev-python/aiohttp-socks-0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/aiorpcX-0.18*[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/attrs-19.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/bitstring[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/ecdsa-0.14[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pbkdf2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyaes[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/PySocks[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/qrcode[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/requests[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/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/protobuf-python-3.12[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] qrcode? ( media-gfx/zbar[v4l] ) qt5? ( dev-python/PyQt5[gui,widgets,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ncurses? ( python_targets_python3_6? ( dev-lang/python:3.6[ncurses] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses] ) ) || ( dev-python/cryptography[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pycryptodome[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) >=dev-python/pytest-4.5.0[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[ncurses?] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses?] ) >=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(-)] -DEFINED_PHASES=compile configure install postinst postrm prepare test -DESCRIPTION=User friendly Bitcoin client -EAPI=7 -HOMEPAGE=https://electrum.org/ -IUSE=cli ncurses qrcode +qt5 test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[ncurses?] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses?] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-libs/libsecp256k1 >=dev-python/aiohttp-socks-0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/aiorpcX-0.18*[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/attrs-19.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/bitstring[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/ecdsa-0.14[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pbkdf2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyaes[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/PySocks[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/qrcode[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/requests[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/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/protobuf-python-3.12[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] qrcode? ( media-gfx/zbar[v4l] ) qt5? ( dev-python/PyQt5[gui,widgets,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ncurses? ( python_targets_python3_6? ( dev-lang/python:3.6[ncurses] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses] ) ) || ( dev-python/cryptography[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pycryptodome[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[ncurses?] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses?] ) >=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=|| ( cli ncurses qt5 ) || ( python_targets_python3_6 python_targets_python3_7 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/spesmilo/electrum/archive/4.0.2.tar.gz -> electrum-4.0.2.gh.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=892d8752d38b436b85f490f8926d8855 diff --git a/metadata/md5-cache/net-misc/electrum-4.0.3-r1 b/metadata/md5-cache/net-misc/electrum-4.0.5 similarity index 99% rename from metadata/md5-cache/net-misc/electrum-4.0.3-r1 rename to metadata/md5-cache/net-misc/electrum-4.0.5 index 3c5b564386e3..af9c02ee635f 100644 --- a/metadata/md5-cache/net-misc/electrum-4.0.3-r1 +++ b/metadata/md5-cache/net-misc/electrum-4.0.5 @@ -10,6 +10,6 @@ RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[ncurses?] ) python_targe REQUIRED_USE=|| ( cli ncurses qt5 ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/spesmilo/electrum/archive/4.0.3.tar.gz -> electrum-4.0.3.gh.tar.gz +SRC_URI=https://github.com/spesmilo/electrum/archive/4.0.5.tar.gz -> electrum-4.0.5.gh.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=659cfe3e2aee82bbb2506dcd39f8dd48 diff --git a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 index d2f3d8a0e96f..c1981bba7940 100644 --- a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 +++ b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 @@ -3,10 +3,10 @@ DEPEND=>=sys-libs/ncurses-5.2:= !net-misc/telnet-bsd DESCRIPTION=Standard Linux telnet client and server EAPI=6 HOMEPAGE=https://launchpad.net/netkit-telnet -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 LICENSE=BSD RDEPEND=>=sys-libs/ncurses-5.2:= !net-misc/telnet-bsd SLOT=0 SRC_URI=mirror://gentoo/netkit-telnet-0.17.tar.gz mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-41.debian.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c5ae1270f4bc6abff1b9f02834628626 +_md5_=76f414b6a54bb34cddbe1dd3f90ea8f6 diff --git a/metadata/md5-cache/net-misc/portspoof-1.3 b/metadata/md5-cache/net-misc/portspoof-1.3 index 48e8b91466b4..7669ac71c4cf 100644 --- a/metadata/md5-cache/net-misc/portspoof-1.3 +++ b/metadata/md5-cache/net-misc/portspoof-1.3 @@ -1,9 +1,9 @@ DEFINED_PHASES=install prepare DESCRIPTION=return SYN+ACK for every port connection attempt -EAPI=5 +EAPI=7 HOMEPAGE=http://portspoof.org/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=https://github.com/drk1wi/portspoof/archive/v1.3.tar.gz -> portspoof-1.3.tar.gz -_md5_=2f7b1b709139493ef8d08b5c3698419f +_md5_=e9a8d1e45e5979eea0054ab99731a1b9 diff --git a/metadata/md5-cache/net-misc/portspoof-9999 b/metadata/md5-cache/net-misc/portspoof-9999 index c2cb50813e2e..eeb110bfbde4 100644 --- a/metadata/md5-cache/net-misc/portspoof-9999 +++ b/metadata/md5-cache/net-misc/portspoof-9999 @@ -1,10 +1,10 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=install prepare unpack -DEPEND=>=dev-vcs/git-1.8.2.1[curl] >=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=return SYN+ACK for every port connection attempt -EAPI=5 +EAPI=7 HOMEPAGE=http://portspoof.org/ LICENSE=GPL-2+ PROPERTIES=live SLOT=0 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 git-r3 3e7ec3d6619213460c85e2aa48398441 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2f7b1b709139493ef8d08b5c3698419f +_md5_=e9a8d1e45e5979eea0054ab99731a1b9 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2020.11.18 b/metadata/md5-cache/net-misc/youtube-dl-2020.11.18 new file mode 100644 index 000000000000..2663adba1588 --- /dev/null +++ b/metadata/md5-cache/net-misc/youtube-dl-2020.11.18 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pycryptodome[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/nose-1.3.7-r4[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 postinst prepare test +DESCRIPTION=Download videos from YouTube.com (and more sites...) +EAPI=7 +HOMEPAGE=https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=public-domain +RDEPEND=dev-python/pycryptodome[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(-)] +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://youtube-dl.org/downloads/2020.11.18/youtube-dl-2020.11.18.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=b6bf402b380503043b4e27f70a9c92f0 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2020.11.19 b/metadata/md5-cache/net-misc/youtube-dl-2020.11.19 new file mode 100644 index 000000000000..59b6aaf4fa50 --- /dev/null +++ b/metadata/md5-cache/net-misc/youtube-dl-2020.11.19 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pycryptodome[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/nose-1.3.7-r4[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 postinst prepare test +DESCRIPTION=Download videos from YouTube.com (and more sites...) +EAPI=7 +HOMEPAGE=https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=public-domain +RDEPEND=dev-python/pycryptodome[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(-)] +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://youtube-dl.org/downloads/2020.11.19/youtube-dl-2020.11.19.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=b6bf402b380503043b4e27f70a9c92f0 diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index 02dd5e43319f..7dd934912a7d 100644 Binary files a/metadata/md5-cache/net-p2p/Manifest.gz and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 b/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 deleted file mode 100644 index 17ece5552ce1..000000000000 --- a/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DESCRIPTION=Main implementation of IPFS -EAPI=7 -HOMEPAGE=https://ipfs.io/ -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 -RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.4.23.tar.gz -> go-ipfs-0.4.23.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20180421153158-65cc252bf669.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20180421153158-65cc252bf669.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20180421153158-65cc252bf669.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20180421153158-65cc252bf669.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.0-20180330043415-076a62f9ce6e.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.0-20180330043415-076a62f9ce6e.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.zip -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.zip -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.zip mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.zip -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.zip mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.zip mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.zip -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.mod -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190427004231-96897255fd17.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190427004231-96897255fd17.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190427004231-96897255fd17.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190427004231-96897255fd17.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.zip -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.zip mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.zip -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.zip mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.zip -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.zip mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.zip -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.zip mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.zip -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.zip mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.zip -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.1.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.1.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.1.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.1.1+incompatible.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.zip -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.zip mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dgryski/go-sip13/@v/v0.0.0-20181026042036-e10d5fee7954.mod -> github.com%2Fdgryski%2Fgo-sip13%2F@v%2Fv0.0.0-20181026042036-e10d5fee7954.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.7.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.7.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/fd/go-nat/@v/v1.0.0.zip -> github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/fd/go-nat/@v/v1.0.0.mod -> github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.zip -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.zip mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.zip -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.zip -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.zip -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.zip -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.zip mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.zip -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.zip -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/pubsub/@v/v0.0.0-20180201040156-26ebdf44f824.zip -> github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.zip mirror://goproxy//github.com/gxed/pubsub/@v/v0.0.0-20180201040156-26ebdf44f824.mod -> github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.zip -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hsanjuan/go-libp2p-gostream/@v/v0.0.31.zip -> github.com%2Fhsanjuan%2Fgo-libp2p-gostream%2F@v%2Fv0.0.31.zip mirror://goproxy//github.com/hsanjuan/go-libp2p-gostream/@v/v0.0.31.mod -> github.com%2Fhsanjuan%2Fgo-libp2p-gostream%2F@v%2Fv0.0.31.mod mirror://goproxy//github.com/hsanjuan/go-libp2p-http/@v/v0.0.2.zip -> github.com%2Fhsanjuan%2Fgo-libp2p-http%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/hsanjuan/go-libp2p-http/@v/v0.0.2.mod -> github.com%2Fhsanjuan%2Fgo-libp2p-http%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/huin/goupnp/@v/v0.0.0-20180415215157-1395d1447324.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.zip mirror://goproxy//github.com/huin/goupnp/@v/v0.0.0-20180415215157-1395d1447324.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.zip -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.zip mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.zip -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/dir-index-html/@v/v1.0.3.zip -> github.com%2Fipfs%2Fdir-index-html%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/ipfs/dir-index-html/@v/v1.0.3.mod -> github.com%2Fipfs%2Fdir-index-html%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.8-0.20200117195305-e37498cf10d6.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.8-0.20200117195305-e37498cf10d6.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.8-0.20200117195305-e37498cf10d6.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.8-0.20200117195305-e37498cf10d6.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-addr/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-addr%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-addr/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-addr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-flags/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-flags/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.5-0.20190704154349-f09820a0a5b6.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.5-0.20190704154349-f09820a0a5b6.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.5-0.20190704154349-f09820a0a5b6.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.5-0.20190704154349-f09820a0a5b6.mod mirror://goproxy//github.com/ipfs/go-todocounter/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-todocounter%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-todocounter/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-todocounter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.6.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.0.8.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.0.8.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.4.zip -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.zip mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.4.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.zip -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-context/@v/v0.0.0-20150711004518-d14ea06fba99.zip -> github.com%2Fjbenet%2Fgo-context%2F@v%2Fv0.0.0-20150711004518-d14ea06fba99.zip mirror://goproxy//github.com/jbenet/go-context/@v/v0.0.0-20150711004518-d14ea06fba99.mod -> github.com%2Fjbenet%2Fgo-context%2F@v%2Fv0.0.0-20150711004518-d14ea06fba99.mod mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.2.zip -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.2.mod -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.zip -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.zip mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.zip -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.zip -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.zip -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.zip -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.zip mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.zip -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.zip -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.zip mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.32.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.32.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.32.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.32.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat-svc/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat-svc%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat-svc/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat-svc%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.0.15.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.0.15.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.0.15.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.0.15.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.11.1.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.11.1.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.11.1.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.11.1.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.zip -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.2.3.zip -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.2.3.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.4.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.4.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.zip -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.1.6.zip -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/multiformats/go-multicodec/@v/v0.1.6.mod -> github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.zip -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.zip mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/oklog/ulid/@v/v1.3.1.mod -> github.com%2Foklog%2Fulid%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.zip -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.3.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.3.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181113130724-41aa239b4cce.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181113130724-41aa239b4cce.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.zip mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.0.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/prometheus/common/@v/v0.4.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190507164030-5867b95ac084.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190507164030-5867b95ac084.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190519111021-9935e8e0588d.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190519111021-9935e8e0588d.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190519111021-9935e8e0588d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190519111021-9935e8e0588d.mod mirror://goproxy//github.com/prometheus/tsdb/@v/v0.7.1.mod -> github.com%2Fprometheus%2Ftsdb%2F@v%2Fv0.7.1.mod mirror://goproxy//github.com/rs/cors/@v/v1.6.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.6.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.zip -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.zip mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.zip -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.zip -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.zip -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.zip -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.zip -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.zip -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor/@v/v0.0.0-20171005072247-63513f603b11.zip -> github.com%2Fwhyrusleeping%2Fcbor%2F@v%2Fv0.0.0-20171005072247-63513f603b11.zip mirror://goproxy//github.com/whyrusleeping/cbor/@v/v0.0.0-20171005072247-63513f603b11.mod -> github.com%2Fwhyrusleeping%2Fcbor%2F@v%2Fv0.0.0-20171005072247-63513f603b11.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.zip -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.zip mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.zip -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.zip mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multiplex/@v/v3.0.16+incompatible.zip -> github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.zip mirror://goproxy//github.com/whyrusleeping/go-smux-multiplex/@v/v3.0.16+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multistream/@v/v2.0.2+incompatible.zip -> github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.zip mirror://goproxy//github.com/whyrusleeping/go-smux-multistream/@v/v2.0.2+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.8+incompatible.zip -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.zip mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.8+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.9+incompatible.zip -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.zip mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.9+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.zip -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.zip mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.zip -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.zip mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.mod -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/whyrusleeping/yamux/@v/v1.1.5.zip -> github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.zip mirror://goproxy//github.com/whyrusleeping/yamux/@v/v1.1.5.mod -> github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.zip -> go.opencensus.io%2F@v%2Fv0.21.0.zip mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.7.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.7.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.7.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.7.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.9.0.zip -> go.uber.org%2Ffx%2F@v%2Fv1.9.0.zip mirror://goproxy//go.uber.org/fx/@v/v1.9.0.mod -> go.uber.org%2Ffx%2F@v%2Fv1.9.0.mod mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.zip mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go4.org/@v/v0.0.0-20190218023631-ce4c26f7be8e.zip -> go4.org%2F@v%2Fv0.0.0-20190218023631-ce4c26f7be8e.zip mirror://goproxy//go4.org/@v/v0.0.0-20190218023631-ce4c26f7be8e.mod -> go4.org%2F@v%2Fv0.0.0-20190218023631-ce4c26f7be8e.mod mirror://goproxy//go4.org/@v/v0.0.0-20190313082347-94abd6928b1d.zip -> go4.org%2F@v%2Fv0.0.0-20190313082347-94abd6928b1d.zip mirror://goproxy//go4.org/@v/v0.0.0-20190313082347-94abd6928b1d.mod -> go4.org%2F@v%2Fv0.0.0-20190313082347-94abd6928b1d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180524181706-dfa909b99c79.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180524181706-dfa909b99c79.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522135303-fa69b94a3b58.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522135303-fa69b94a3b58.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522135303-fa69b94a3b58.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522135303-fa69b94a3b58.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181107165924-66b7b1311ac8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181107165924-66b7b1311ac8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190522044717-8097e1b27ff5.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190522044717-8097e1b27ff5.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190522044717-8097e1b27ff5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190522044717-8097e1b27ff5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.zip mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190513163551-3ee3066db522.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190513163551-3ee3066db522.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190513163551-3ee3066db522.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190513163551-3ee3066db522.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.zip -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.zip mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.zip -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.zip mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.zip -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.zip mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.mod -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.zip -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.zip mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7a6cf46e16cea3fb2aac2062d298d018 diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.5.1 b/metadata/md5-cache/net-p2p/go-ipfs-0.5.1 deleted file mode 100644 index c6ee7cb6bd8f..000000000000 --- a/metadata/md5-cache/net-p2p/go-ipfs-0.5.1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst test unpack -DESCRIPTION=Main implementation of IPFS -EAPI=7 -HOMEPAGE=https://ipfs.io/ -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 -RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.5.1.tar.gz -> go-ipfs-0.5.1.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.31.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.34.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.37.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod mirror://goproxy//dmitri.shuralyov.com/app/changes/@v/v0.0.0-20180602232624-0a106ad413e3.mod -> dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod mirror://goproxy//dmitri.shuralyov.com/html/belt/@v/v0.0.0-20180602232347-f7d459c86be0.mod -> dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod mirror://goproxy//dmitri.shuralyov.com/service/change/@v/v0.0.0-20181023043359-a85b471d5412.mod -> dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod mirror://goproxy//dmitri.shuralyov.com/state/@v/v0.0.0-20180228185332-28bcc343414c.mod -> dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod mirror://goproxy//git.apache.org/thrift.git/@v/v0.0.0-20180902110319-2566ecd5d999.mod -> git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.0-20180330043415-076a62f9ce6e.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/alangpierce/go-forceexport/@v/v0.0.0-20160317203124-8f1d6941cd75.zip -> github.com%2Falangpierce%2Fgo-forceexport%2F@v%2Fv0.0.0-20160317203124-8f1d6941cd75.zip mirror://goproxy//github.com/alangpierce/go-forceexport/@v/v0.0.0-20160317203124-8f1d6941cd75.mod -> github.com%2Falangpierce%2Fgo-forceexport%2F@v%2Fv0.0.0-20160317203124-8f1d6941cd75.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.zip -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.mod -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/bradfitz/go-smtpd/@v/v0.0.0-20170404230938-deb6d6237625.mod -> github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.zip -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.mod -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190523000118-16327141da8c.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190605094302-a0d1e3e36d50.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190629003639-c26ffa870fd8.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190629003639-c26ffa870fd8.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/buger/jsonparser/@v/v0.0.0-20181115193947-bf1c66bbce23.mod -> github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.zip -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.zip -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.zip -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.mod -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.zip -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.mod -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/fd/go-nat/@v/v1.0.0.mod -> github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.zip -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.mod -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gliderlabs/ssh/@v/v0.1.1.mod -> github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.zip -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.mod -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.zip -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.zip mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.9.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.3.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod mirror://goproxy//github.com/golang/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-github/@v/v17.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod mirror://goproxy//github.com/google/martian/@v/v2.1.0+incompatible.mod -> github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod mirror://goproxy//github.com/google/renameio/@v/v0.1.0.mod -> github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/googleapis/gax-go/@v/v2.0.0+incompatible.mod -> github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.3.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/gregjones/httpcache/@v/v0.0.0-20180305231024-9cad4c3443a7.mod -> github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.5.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/pubsub/@v/v0.0.0-20180201040156-26ebdf44f824.mod -> github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.3.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.3.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.3.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.zip -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v0.0.0-20180415215157-1395d1447324.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.8.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.2.13.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.13.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.2.13.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.13.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.4.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.4.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.4.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.2.2.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.2.2.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.5.3.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.5.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.5.3.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-flags/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.zip -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.mod -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.2-0.20190827150610-868af2e9e5cb.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.2-0.20190827150610-868af2e9e5cb.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.2.7.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.2.7.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.2.7.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/ipld/go-car/@v/v0.1.0.zip -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipld/go-car/@v/v0.1.0.mod -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.0.2-0.20191108012745-28a82f04c785.zip -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20191108012745-28a82f04c785.zip mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.0.2-0.20191108012745-28a82f04c785.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20191108012745-28a82f04c785.mod mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.0.0-20191113031812-e32bd156a1e5.zip -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20191113031812-e32bd156a1e5.zip mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.0.0-20191113031812-e32bd156a1e5.mod -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20191113031812-e32bd156a1e5.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.4.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.zip -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.3.zip -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.3.mod -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/jellevandenhooff/dkim/@v/v0.0.0-20150330215556-f50fe3d243e1.mod -> github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.4.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.9.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.9.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.0.0-20190106144839-af01ea7f8024.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kami-zh/go-capturer/@v/v0.0.0-20171211120116-e492ea43421d.mod -> github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.zip -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.3.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.2.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.2.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.2.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.2.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.3.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.3.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.1.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.1.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.7.11.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.7.11.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.7.11.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.7.11.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.2.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.2.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.3.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.3.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.3.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.3.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.15.7.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.15.7.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.15.7.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.15.7.mod mirror://goproxy//github.com/lunixbochs/vtclean/@v/v1.0.0.mod -> github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.zip -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.zip mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20190312143242-1de009706dbe.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod mirror://goproxy//github.com/marten-seemann/qpack/@v/v0.1.0.mod -> github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.9.1.zip -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.9.1.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.8.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.1.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.4.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.1.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.2.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.6.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.7.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/neelance/astrewrite/@v/v0.0.0-20160511093645-99348263ae86.mod -> github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod mirror://goproxy//github.com/neelance/sourcemap/@v/v0.0.0-20151028013722-8c68805598ab.mod -> github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.11.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.11.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.8.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.8.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.8.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.0.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.5.1.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v1.5.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20180801064454-c7de2306084e.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.9.1.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/prometheus/common/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20180725123919-05ee40e3a273.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.2.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.8.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.8.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.3.0.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/rs/cors/@v/v1.7.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.7.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/component/@v/v0.0.0-20170202220835-f88ec8f54cc4.mod -> github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod mirror://goproxy//github.com/shurcoo!l/events/@v/v0.0.0-20181021180414-410e4ca65f48.mod -> github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod mirror://goproxy//github.com/shurcoo!l/github_flavored_markdown/@v/v0.0.0-20181002035957-2122de532470.mod -> github.com%2Fshurcoo!l%2Fgithub_flavored_markdown%2F@v%2Fv0.0.0-20181002035957-2122de532470.mod mirror://goproxy//github.com/shurcoo!l/go/@v/v0.0.0-20180423040247-9e1955d9fb6e.mod -> github.com%2Fshurcoo!l%2Fgo%2F@v%2Fv0.0.0-20180423040247-9e1955d9fb6e.mod mirror://goproxy//github.com/shurcoo!l/go-goon/@v/v0.0.0-20170922171312-37c2f522c041.mod -> github.com%2Fshurcoo!l%2Fgo-goon%2F@v%2Fv0.0.0-20170922171312-37c2f522c041.mod mirror://goproxy//github.com/shurcoo!l/gofontwoff/@v/v0.0.0-20180329035133-29b52fc0a18d.mod -> github.com%2Fshurcoo!l%2Fgofontwoff%2F@v%2Fv0.0.0-20180329035133-29b52fc0a18d.mod mirror://goproxy//github.com/shurcoo!l/gopherjslib/@v/v0.0.0-20160914041154-feb6d3990c2c.mod -> github.com%2Fshurcoo!l%2Fgopherjslib%2F@v%2Fv0.0.0-20160914041154-feb6d3990c2c.mod mirror://goproxy//github.com/shurcoo!l/highlight_diff/@v/v0.0.0-20170515013008-09bb4053de1b.mod -> github.com%2Fshurcoo!l%2Fhighlight_diff%2F@v%2Fv0.0.0-20170515013008-09bb4053de1b.mod mirror://goproxy//github.com/shurcoo!l/highlight_go/@v/v0.0.0-20181028180052-98c3abbbae20.mod -> github.com%2Fshurcoo!l%2Fhighlight_go%2F@v%2Fv0.0.0-20181028180052-98c3abbbae20.mod mirror://goproxy//github.com/shurcoo!l/home/@v/v0.0.0-20181020052607-80b7ffcb30f9.mod -> github.com%2Fshurcoo!l%2Fhome%2F@v%2Fv0.0.0-20181020052607-80b7ffcb30f9.mod mirror://goproxy//github.com/shurcoo!l/htmlg/@v/v0.0.0-20170918183704-d01228ac9e50.mod -> github.com%2Fshurcoo!l%2Fhtmlg%2F@v%2Fv0.0.0-20170918183704-d01228ac9e50.mod mirror://goproxy//github.com/shurcoo!l/httperror/@v/v0.0.0-20170206035902-86b7830d14cc.mod -> github.com%2Fshurcoo!l%2Fhttperror%2F@v%2Fv0.0.0-20170206035902-86b7830d14cc.mod mirror://goproxy//github.com/shurcoo!l/httpfs/@v/v0.0.0-20171119174359-809beceb2371.mod -> github.com%2Fshurcoo!l%2Fhttpfs%2F@v%2Fv0.0.0-20171119174359-809beceb2371.mod mirror://goproxy//github.com/shurcoo!l/httpgzip/@v/v0.0.0-20180522190206-b1c53ac65af9.mod -> github.com%2Fshurcoo!l%2Fhttpgzip%2F@v%2Fv0.0.0-20180522190206-b1c53ac65af9.mod mirror://goproxy//github.com/shurcoo!l/issues/@v/v0.0.0-20181008053335-6292fdc1e191.mod -> github.com%2Fshurcoo!l%2Fissues%2F@v%2Fv0.0.0-20181008053335-6292fdc1e191.mod mirror://goproxy//github.com/shurcoo!l/issuesapp/@v/v0.0.0-20180602232740-048589ce2241.mod -> github.com%2Fshurcoo!l%2Fissuesapp%2F@v%2Fv0.0.0-20180602232740-048589ce2241.mod mirror://goproxy//github.com/shurcoo!l/notifications/@v/v0.0.0-20181007000457-627ab5aea122.mod -> github.com%2Fshurcoo!l%2Fnotifications%2F@v%2Fv0.0.0-20181007000457-627ab5aea122.mod mirror://goproxy//github.com/shurcoo!l/octicon/@v/v0.0.0-20181028054416-fa4f57f9efb2.mod -> github.com%2Fshurcoo!l%2Focticon%2F@v%2Fv0.0.0-20181028054416-fa4f57f9efb2.mod mirror://goproxy//github.com/shurcoo!l/reactions/@v/v0.0.0-20181006231557-f2e0b4ca5b82.mod -> github.com%2Fshurcoo!l%2Freactions%2F@v%2Fv0.0.0-20181006231557-f2e0b4ca5b82.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v0.0.0-20170918181015-86672fcb3f95.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015-86672fcb3f95.mod mirror://goproxy//github.com/shurcoo!l/users/@v/v0.0.0-20180125191416-49c67e49c537.mod -> github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod mirror://goproxy//github.com/shurcoo!l/webdavfs/@v/v0.0.0-20170829043945-18c3829fa133.mod -> github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190710185942-9d28bd7c0945.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190710185942-9d28bd7c0945.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190710185942-9d28bd7c0945.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190710185942-9d28bd7c0945.mod mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.zip -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.mod -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/sourcegraph/annotate/@v/v0.0.0-20160123013949-f4cad6c6324d.mod -> github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod mirror://goproxy//github.com/sourcegraph/syntaxhighlight/@v/v0.0.0-20170531221838-bd320f5d308e.mod -> github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/src-d/envconfig/@v/v1.0.0.mod -> github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/tarm/serial/@v/v0.0.0-20180830185346-98f6abe2eb07.mod -> github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.zip -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.mod -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/viant/assertly/@v/v0.4.8.mod -> github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod mirror://goproxy//github.com/viant/toolbox/@v/v0.24.0.mod -> github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/wangjia184/sortedset/@v/v0.0.0-20160527075905-f5d03557ba30.mod -> github.com%2Fwangjia184%2Fsortedset%2F@v%2Fv0.0.0-20160527075905-f5d03557ba30.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.zip -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.zip mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.zip -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.zip -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.zip mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multiplex/@v/v3.0.16+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multistream/@v/v2.0.2+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.8+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.9+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.zip -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.zip mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.zip -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.zip mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.mod -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/whyrusleeping/yamux/@v/v1.1.5.mod -> github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.mod mirror://goproxy//github.com/x-cray/logrus-prefixed-formatter/@v/v0.5.2.mod -> github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//go.opencensus.io/@v/v0.18.0.mod -> go.opencensus.io%2F@v%2Fv0.18.0.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.0.mod -> go.opencensus.io%2F@v%2Fv0.22.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.1.zip -> go.opencensus.io%2F@v%2Fv0.22.1.zip mirror://goproxy//go.opencensus.io/@v/v0.22.1.mod -> go.opencensus.io%2F@v%2Fv0.22.1.mod mirror://goproxy//go.opencensus.io/@v/v0.22.2.zip -> go.opencensus.io%2F@v%2Fv0.22.2.zip mirror://goproxy//go.opencensus.io/@v/v0.22.2.mod -> go.opencensus.io%2F@v%2Fv0.22.2.mod mirror://goproxy//go.opencensus.io/@v/v0.22.3.zip -> go.opencensus.io%2F@v%2Fv0.22.3.zip mirror://goproxy//go.opencensus.io/@v/v0.22.3.mod -> go.opencensus.io%2F@v%2Fv0.22.3.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.9.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.9.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.9.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.9.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.12.0.zip -> go.uber.org%2Ffx%2F@v%2Fv1.12.0.zip mirror://goproxy//go.uber.org/fx/@v/v1.12.0.mod -> go.uber.org%2Ffx%2F@v%2Fv1.12.0.mod mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.zip mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.zip mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.zip -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.zip mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.mod -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.zip -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.zip mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.14.1.zip -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.zip mirror://goproxy//go.uber.org/zap/@v/v1.14.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod mirror://goproxy//go4.org/@v/v0.0.0-20180809161055-417644f6feb5.mod -> go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod mirror://goproxy//go4.org/@v/v0.0.0-20200104003542-c7e774b10ea0.zip -> go4.org%2F@v%2Fv0.0.0-20200104003542-c7e774b10ea0.zip mirror://goproxy//go4.org/@v/v0.0.0-20200104003542-c7e774b10ea0.mod -> go4.org%2F@v%2Fv0.0.0-20200104003542-c7e774b10ea0.mod mirror://goproxy//golang.org/x/build/@v/v0.0.0-20190111050920-041ab4dc3f9d.mod -> golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181030102418-4d3f4d9ffa16.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181030102418-4d3f4d9ffa16.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190313024323-a1f597ede03a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190510104115-cbcb75029529.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190530122614-20be4c3c3ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190618222545-ea8f1a30c443.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190701094942-4def268fd1a4.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190701094942-4def268fd1a4.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod mirror://goproxy//golang.org/x/mod/@v/v0.0.0-20190513183733-4bf6d317e70e.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180524181706-dfa909b99c79.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180524181706-dfa909b99c79.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181029044818-c44066c5c816.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181029044818-c44066c5c816.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181106065722-10aee1819953.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181106065722-10aee1819953.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190108225652-1e06a53dbb7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190228165749-92fc7df08ae7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190228165749-92fc7df08ae7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190313220215-9f648a60d977.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190501004415-9ce7a6920f09.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190611141213-3f473d35a33a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190613194153-d28f0bde5980.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200324143707-d3edc9973b7e.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200324143707-d3edc9973b7e.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200324143707-d3edc9973b7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200324143707-d3edc9973b7e.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181017192945-9dcd33a902f4.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181203162652-d668ce993890.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod mirror://goproxy//golang.org/x/perf/@v/v0.0.0-20180704124530-6e6d33e29852.mod -> golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181029174526-d69651ed3497.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190316082340-a2f829d7f35f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190405154228-4b34438f7a67.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190502145724-3ef323f4f1fd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524122548-abf6ff778158.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524152521-dbbf3f1254d4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190526052359-791d8a0f4d09.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190610200419-93c9922d18ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190726091711-fc99dfbffb4e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191005200804-aed5e4c7ecf9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191120155948-bd437916bb0e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200122134326-e047566fdf82.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200122134326-e047566fdf82.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200420163511-1957bb5e6d1f.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200420163511-1957bb5e6d1f.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200420163511-1957bb5e6d1f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200420163511-1957bb5e6d1f.mod mirror://goproxy//golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20180412165947-fbb02b2291d2.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20181108054448-85acf8d2951c.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180828015842-6cd1fcedba52.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030000716-a0a13e073c7b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030221726-6c7e314b6563.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030221726-6c7e314b6563.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181130052023-1c3d964395ce.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190621195816-6e04913cbbac.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029041327-9cc4af7d6b2c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029190741-b9c20aec41a5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191030062658-86caa796c7ab.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20180910000450-7ca32eb868bf.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20181030000543-1d582fd0359e.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod mirror://goproxy//google.golang.org/api/@v/v0.1.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.2.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.3.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181029155118-b69ba1387ce2.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181202183823-bd91e49a0898.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190306203927-b5d61aea6440.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190425155659-357c62f0e4bb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod mirror://goproxy//google.golang.org/grpc/@v/v1.14.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.16.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.17.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.zip -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.zip mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.mod -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.mod mirror://goproxy//gopkg.in/errgo.v2/@v/v2.1.0.mod -> gopkg.in%2Ferrgo.v2%2F@v%2Fv2.1.0.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.zip -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.zip mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/inf.v0/@v/v0.9.1.mod -> gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/src-d/go-cli.v0/@v/v0.0.0-20181105080154-d492247bbc0d.mod -> gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod mirror://goproxy//gopkg.in/src-d/go-log.v1/@v/v1.0.1.mod -> gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod mirror://goproxy//grpc.go4.org/@v/v0.0.0-20170609214715-11d0a25b4919.mod -> grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20180728063816-88497007e858.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.zip -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod mirror://goproxy//rsc.io/quote/v3/@v/v3.1.0.mod -> rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//rsc.io/sampler/@v/v1.3.0.mod -> rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod mirror://goproxy//sourcegraph.com/sourcegraph/go-diff/@v/v0.5.0.mod -> sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod mirror://goproxy//sourcegraph.com/sqs/pbtypes/@v/v0.0.0-20180604144634-d3ebe8f20ae4.mod -> sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a2e7d61e8e245a04827bbb51b1e94886 diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.7.0 b/metadata/md5-cache/net-p2p/go-ipfs-0.7.0 new file mode 100644 index 000000000000..d5bb5f7716e6 --- /dev/null +++ b/metadata/md5-cache/net-p2p/go-ipfs-0.7.0 @@ -0,0 +1,13 @@ +BDEPEND=>=dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install postinst test unpack +DESCRIPTION=Main implementation of IPFS +EAPI=7 +HOMEPAGE=https://ipfs.io/ +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 +RDEPEND=!net-p2p/go-ipfs-bin acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 +RESTRICT=strip +SLOT=0 +SRC_URI=https://github.com/ipfs/go-ipfs/archive/v0.7.0.tar.gz -> go-ipfs-0.7.0.tar.gz mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.zip -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip mirror://goproxy//bazil.org/fuse/@v/v0.0.0-20200117225306-7b5117fecadc.mod -> bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.31.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.34.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.37.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.38.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.44.2.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.44.2.mod mirror://goproxy//cloud.google.com/go/@v/v0.45.1.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.45.1.mod mirror://goproxy//cloud.google.com/go/@v/v0.46.3.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.46.3.mod mirror://goproxy//cloud.google.com/go/@v/v0.50.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.50.0.mod mirror://goproxy//cloud.google.com/go/@v/v0.53.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.53.0.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/bigquery/@v/v1.3.0.mod -> cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.3.0.mod mirror://goproxy//cloud.google.com/go/datastore/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.0.1.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod mirror://goproxy//cloud.google.com/go/pubsub/@v/v1.1.0.mod -> cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.1.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.0.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod mirror://goproxy//cloud.google.com/go/storage/@v/v1.5.0.mod -> cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod mirror://goproxy//dmitri.shuralyov.com/app/changes/@v/v0.0.0-20180602232624-0a106ad413e3.mod -> dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod mirror://goproxy//dmitri.shuralyov.com/gpu/mtl/@v/v0.0.0-20190408044501-666a987793e9.mod -> dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod mirror://goproxy//dmitri.shuralyov.com/html/belt/@v/v0.0.0-20180602232347-f7d459c86be0.mod -> dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod mirror://goproxy//dmitri.shuralyov.com/service/change/@v/v0.0.0-20181023043359-a85b471d5412.mod -> dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod mirror://goproxy//dmitri.shuralyov.com/state/@v/v0.0.0-20180228185332-28bcc343414c.mod -> dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod mirror://goproxy//git.apache.org/thrift.git/@v/v0.0.0-20180902110319-2566ecd5d999.mod -> git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20180913140656-343706a395b7.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190306092124-e2d15f34fcf9.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.zip -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip mirror://goproxy//github.com/!andreas!briese/bbloom/@v/v0.0.0-20190825152654-46b345b51c96.mod -> github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod -> github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.zip -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!kubuxu/go-os-helper/@v/v0.0.1.mod -> github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.zip -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.0-20180330043415-076a62f9ce6e.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.mod mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.zip -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/!stebalien/go-bitfield/@v/v0.0.1.mod -> github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/aead/siphash/@v/v1.0.1.mod -> github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20190718012654-fb15b899a751.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20190717042225-c3de453c63f4.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.zip -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip mirror://goproxy//github.com/alexbrainman/goissue34681/@v/v0.0.0-20191006012335-3fc7a47baff5.mod -> github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.2.zip -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.2.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.zip -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/benbjohnson/clock/@v/v1.0.3.mod -> github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.zip -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/beorn7/perks/@v/v1.0.1.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/bradfitz/go-smtpd/@v/v0.0.0-20170404230938-deb6d6237625.mod -> github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625.mod mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.zip -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip mirror://goproxy//github.com/bren2010/proquint/@v/v0.0.0-20160323162903-38337c27106d.mod -> github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190213025234-306aecffea32.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190523000118-16327141da8c.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190605094302-a0d1e3e36d50.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.0.0-20190824003749-130ea5bddde3.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.zip -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.zip mirror://goproxy//github.com/btcsuite/btcd/@v/v0.20.1-beta.mod -> github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod mirror://goproxy//github.com/btcsuite/btclog/@v/v0.0.0-20170628155309-84c8d2346e9f.mod -> github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190207003914-4c204d697803.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod mirror://goproxy//github.com/btcsuite/btcutil/@v/v0.0.0-20190425235716-9e5f4b9a998d.mod -> github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod mirror://goproxy//github.com/btcsuite/go-socks/@v/v0.0.0-20170105172521-4720035b7bfd.mod -> github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod mirror://goproxy//github.com/btcsuite/goleveldb/@v/v0.0.0-20160330041536-7834afc9e8cd.mod -> github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod mirror://goproxy//github.com/btcsuite/snappy-go/@v/v0.0.0-20151229074030-0bdef8d06723.mod -> github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod mirror://goproxy//github.com/btcsuite/websocket/@v/v0.0.0-20150119174127-31079b680792.mod -> github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod mirror://goproxy//github.com/btcsuite/winsvc/@v/v1.0.0.mod -> github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/buger/jsonparser/@v/v0.0.0-20181115193947-bf1c66bbce23.mod -> github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.zip -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip mirror://goproxy//github.com/cenkalti/backoff/@v/v2.2.1+incompatible.mod -> github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod mirror://goproxy//github.com/census-instrumentation/opencensus-proto/@v/v0.2.1.mod -> github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.zip -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.zip -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/cespare/xxhash/v2/@v/v2.1.1.mod -> github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.zip -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/cheekybits/genny/@v/v1.0.0.mod -> github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-etcd/@v/v2.0.0+incompatible.mod -> github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.1-0.20180108230905-e214231b295a.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.zip -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/coreos/go-semver/@v/v0.3.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.zip -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20181012123002-c6f51f82210d.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.0.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.1.0.zip -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.zip mirror://goproxy//github.com/coreos/go-systemd/v22/@v/v22.1.0.mod -> github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.10.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.zip -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip mirror://goproxy//github.com/crackcomm/go-gitignore/@v/v0.0.0-20170627025303-887ab5e44cc3.mod -> github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.zip -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/cskr/pubsub/@v/v1.0.2.mod -> github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v0.0.0-20171005155431-ecdeabc65495.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.zip -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip mirror://goproxy//github.com/davidlazar/go-crypto/@v/v0.0.0-20170701192655-dcfb0a7ac018.mod -> github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.5.5-0.20190226225317-8115aed38f8f.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0-rc1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.0.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.zip -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/dgraph-io/badger/@v/v1.6.1.mod -> github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.zip -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/dgraph-io/ristretto/@v/v0.0.2.mod -> github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190104051053-3adb47b1fb0f.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.zip -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip mirror://goproxy//github.com/dgryski/go-farm/@v/v0.0.0-20190423205320-6a90982ecee2.mod -> github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.zip -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip mirror://goproxy//github.com/elgris/jsondiff/@v/v0.0.0-20160530203242-765b5c24c302.mod -> github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod mirror://goproxy//github.com/envoyproxy/go-control-plane/@v/v0.9.1-0.20191026205805-5f8ba28d4473.mod -> github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.1-0.20191026205805-5f8ba28d4473.mod mirror://goproxy//github.com/envoyproxy/protoc-gen-validate/@v/v0.1.0.mod -> github.com%2Fenvoyproxy%2Fprotoc-gen-validate%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.zip -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip mirror://goproxy//github.com/facebookgo/atomicfile/@v/v0.0.0-20151019160806-2de1f203e7d5.mod -> github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod mirror://goproxy//github.com/fatih/color/@v/v1.9.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.9.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/fd/go-nat/@v/v1.0.0.mod -> github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.zip -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.zip mirror://goproxy//github.com/flynn/noise/@v/v0.0.0-20180327030543-2492fe189ae6.mod -> github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.zip -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip mirror://goproxy//github.com/francoispqt/gojay/@v/v1.2.13.mod -> github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.zip -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.9.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.1.zip -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/gabriel-vasile/mimetype/@v/v1.1.1.mod -> github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gliderlabs/ssh/@v/v0.1.1.mod -> github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.zip -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip mirror://goproxy//github.com/go-bindata/go-bindata/v3/@v/v3.1.3.mod -> github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.zip -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.zip mirror://goproxy//github.com/go-check/check/@v/v0.0.0-20180628173108-788fd7840127.mod -> github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/go-gl/glfw/@v/v0.0.0-20190409004039-e6da0acd62b1.mod -> github.com%2Fgo-gl%2Fglfw%2F@v%2Fv0.0.0-20190409004039-e6da0acd62b1.mod mirror://goproxy//github.com/go-gl/glfw/v3.3/glfw/@v/v0.0.0-20191125211704-12ad95a8df72.mod -> github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20191125211704-12ad95a8df72.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.9.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/godbus/dbus/v5/@v/v5.0.3.mod -> github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.0.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.zip -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.zip mirror://goproxy//github.com/gogo/protobuf/@v/v1.3.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190702054246-869f871628b6.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191027212112-611e8accdfc9.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20191227052852-215e87163ea7.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.zip -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.zip mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20200121045136-8c9f03a8e57e.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod mirror://goproxy//github.com/golang/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.2.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.2.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.3.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.0.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.0.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/mock/@v/v1.4.4.zip -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/golang/mock/@v/v1.4.4.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.3.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.3.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.1.0.20200221234624-67d41d38c208.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.0.20200221234624-67d41d38c208.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.2.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0-rc.4.0.20200313231945-b860323f09d0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f09d0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.4.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.4.2.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.zip -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip mirror://goproxy//github.com/golang/snappy/@v/v0.0.0-20180518054509-2e65f85255db.mod -> github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20180813153112-4030bb1f1f0c.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod mirror://goproxy//github.com/google/btree/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.3.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.3.1.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.4.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/google/go-github/@v/v17.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gofuzz/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.17.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod mirror://goproxy//github.com/google/gopacket/@v/v1.1.18.zip -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.zip mirror://goproxy//github.com/google/gopacket/@v/v1.1.18.mod -> github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.mod mirror://goproxy//github.com/google/martian/@v/v2.1.0+incompatible.mod -> github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20181206194817-3ea8567a2e57.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20190515194954-54271f7e092f.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod mirror://goproxy//github.com/google/pprof/@v/v0.0.0-20200212024743-f11f1df84d12.mod -> github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200212024743-f11f1df84d12.mod mirror://goproxy//github.com/google/renameio/@v/v0.1.0.mod -> github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/google/uuid/@v/v1.1.1.zip -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/google/uuid/@v/v1.1.1.mod -> github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/googleapis/gax-go/@v/v2.0.0+incompatible.mod -> github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.3.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.4.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod mirror://goproxy//github.com/googleapis/gax-go/v2/@v/v2.0.5.mod -> github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20181017120253-0766667cb4d1.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190430165422-3e4dfb77656c.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.zip -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.zip mirror://goproxy//github.com/gopherjs/gopherjs/@v/v0.0.0-20190812055157-5d271430af9f.mod -> github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.1.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.zip -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.2.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/gregjones/httpcache/@v/v0.0.0-20180305231024-9cad4c3443a7.mod -> github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.5.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/gxed/hashland/keccakpg/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/hashland/murmur3/@v/v0.0.1.mod -> github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/gxed/pubsub/@v/v0.0.0-20180201040156-26ebdf44f824.mod -> github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.mod mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.zip -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.zip mirror://goproxy//github.com/hannahhoward/go-pubsub/@v/v0.0.0-20200423002714-8d62886cc36e.mod -> github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.mod mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.zip -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hashicorp/errwrap/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.zip -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/hashicorp/go-multierror/@v/v1.1.0.mod -> github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.0.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.1.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.zip -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip mirror://goproxy//github.com/hashicorp/golang-lru/@v/v0.5.4.mod -> github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.zip -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goupnp/@v/v0.0.0-20180415215157-1395d1447324.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.mod mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.zip -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/huin/goupnp/@v/v1.0.0.mod -> github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/huin/goutil/@v/v0.0.0-20170803182201-1ca381bf3150.mod -> github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod mirror://goproxy//github.com/ianlancetaylor/demangle/@v/v0.0.0-20181102032728-5e5cf60278f6.mod -> github.com%2Fianlancetaylor%2Fdemangle%2F@v%2Fv0.0.0-20181102032728-5e5cf60278f6.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.1.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.zip -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/bbloom/@v/v0.0.4.mod -> github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.0.9.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.1.8.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.2.20.zip -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.20.zip mirror://goproxy//github.com/ipfs/go-bitswap/@v/v0.2.20.mod -> github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.20.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-block-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.zip -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/ipfs/go-blockservice/@v/v0.1.3.mod -> github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.6.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-cid/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-cidutil/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.4.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-datastore/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-detect-race/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.1.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.4.zip -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/ipfs/go-ds-badger/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.zip -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.zip mirror://goproxy//github.com/ipfs/go-ds-flatfs/@v/v0.4.5.mod -> github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.1.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.zip -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip mirror://goproxy//github.com/ipfs/go-ds-leveldb/@v/v0.4.2.mod -> github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ds-measure/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-filestore/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.zip -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/ipfs/go-fs-lock/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-graphsync/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.zip -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/ipfs/go-ipfs-blockstore/@v/v0.1.4.mod -> github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-blocksutil/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.zip -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/ipfs/go-ipfs-chunker/@v/v0.0.5.mod -> github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.4.0.zip -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-cmds/@v/v0.4.0.mod -> github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.9.0.zip -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.9.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-config/@v/v0.9.0.mod -> github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.0-20181109222059-70721b86a9a8.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-delay/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.zip -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-ds-help/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-exchange-offline/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-ipfs-files/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-ipfs-flags/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-ipfs-pinner/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-posinfo/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-pq/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.zip -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.zip mirror://goproxy//github.com/ipfs/go-ipfs-provider/@v/v0.4.3.mod -> github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.zip -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/ipfs/go-ipfs-routing/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipfs-util/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.zip -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/ipfs/go-ipld-cbor/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-ipld-format/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.zip -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/ipfs/go-ipld-git/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-ipns/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-log/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.1.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.2.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.3.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.zip -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.zip mirror://goproxy//github.com/ipfs/go-log/@v/v1.0.4.mod -> github.com%2Fipfs%2Fgo-log%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.2.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.2.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.3.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.0.5.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.zip -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.zip mirror://goproxy//github.com/ipfs/go-log/v2/@v/v2.1.1.mod -> github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.0.6.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.2.3.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.0.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.1.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.zip -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/ipfs/go-merkledag/@v/v0.3.2.mod -> github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-metrics-interface/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.zip -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/ipfs/go-metrics-prometheus/@v/v0.0.2.mod -> github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.zip -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/ipfs/go-mfs/@v/v0.1.2.mod -> github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.3.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.7.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.8.zip -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/ipfs/go-path/@v/v0.0.8.mod -> github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.1.1.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.zip -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/ipfs/go-peertaskqueue/@v/v0.2.0.mod -> github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.0.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.1.0.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.zip -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/ipfs/go-unixfs/@v/v0.2.4.mod -> github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.zip -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/ipfs/go-verifcid/@v/v0.0.1.mod -> github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.3.0.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.3.0.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.zip -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/ipfs/interface-go-ipfs-core/@v/v0.4.0.mod -> github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/ipld/go-car/@v/v0.1.1-0.20200429200904-c222d793c339.zip -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20200429200904-c222d793c339.zip mirror://goproxy//github.com/ipld/go-car/@v/v0.1.1-0.20200429200904-c222d793c339.mod -> github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20200429200904-c222d793c339.mod mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.0.2-0.20200428162820-8b59dc292b8e.zip -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20200428162820-8b59dc292b8e.zip mirror://goproxy//github.com/ipld/go-ipld-prime/@v/v0.0.2-0.20200428162820-8b59dc292b8e.mod -> github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20200428162820-8b59dc292b8e.mod mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.0.0-20200428191222-c1ffdadc01e1.zip -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200428191222-c1ffdadc01e1.zip mirror://goproxy//github.com/ipld/go-ipld-prime-proto/@v/v0.0.0-20200428191222-c1ffdadc01e1.mod -> github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200428191222-c1ffdadc01e1.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.4.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.mod mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.zip -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/jackpal/gateway/@v/v1.0.5.mod -> github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.1.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.zip -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/jackpal/go-nat-pmp/@v/v1.0.2.mod -> github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.0.0-20150120210510-1bb1476777ec.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-cienv/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.5.zip -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/jbenet/go-is-domain/@v/v1.0.5.mod -> github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.zip -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip mirror://goproxy//github.com/jbenet/go-random/@v/v0.0.0-20190219211222-123a90aedc0c.mod -> github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.0.0-20150120210811-aac704a3f4f2.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.zip -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/jbenet/go-temp-err-catcher/@v/v0.1.0.mod -> github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.0.0-20160826012719-b497e2f366b8.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.3.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.zip -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/jbenet/goprocess/@v/v0.1.4.mod -> github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/jellevandenhooff/dkim/@v/v0.0.0-20150330215556-f50fe3d243e1.mod -> github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v0.0.0-20141203071132-1679536dcc89.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.4.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/jrick/logrotate/@v/v1.0.0.mod -> github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.6.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod mirror://goproxy//github.com/json-iterator/go/@v/v1.1.10.mod -> github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.0.0-20190106144839-af01ea7f8024.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod mirror://goproxy//github.com/jstemmer/go-junit-report/@v/v0.9.1.mod -> github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.2.1+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.zip -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip mirror://goproxy//github.com/jtolds/gls/@v/v4.20.0+incompatible.mod -> github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kami-zh/go-capturer/@v/v0.0.0-20171211120116-e492ea43421d.mod -> github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.zip -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/kisielk/errcheck/@v/v1.2.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/kkdai/bstream/@v/v0.0.0-20161212061736-f391b8402d23.mod -> github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20180514024734-4a0ed625a78b.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.zip -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip mirror://goproxy//github.com/koron/go-ssdp/@v/v0.0.0-20191105050749-2e1c40ed0b5d.mod -> github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.2.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.3.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-addr-util/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-buffer-pool/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.zip -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/libp2p/go-cidranger/@v/v1.1.0.mod -> github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-conn-security-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-eventbus/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-flow-metrics/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.0.30.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.7.4.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.1.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.3.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.8.3.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.mod mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.11.0.zip -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.11.0.zip mirror://goproxy//github.com/libp2p/go-libp2p/@v/v0.11.0.mod -> github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.11.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.zip -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.zip mirror://goproxy//github.com/libp2p/go-libp2p-asn-util/@v/v0.0.0-20200825225859-85005c6cf052.mod -> github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.3.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-autonat/@v/v0.3.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.1.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-blankhost/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.0.9.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-circuit/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-connmgr/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.5.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-core/@v/v0.6.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-crypto/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.4.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.4.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-discovery/@v/v0.5.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-gostream/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-host/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.1.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-http/@v/v0.1.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-connmgr/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-interface-pnet/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.9.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.9.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-kad-dht/@v/v0.9.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.9.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-kbucket/@v/v0.4.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-loggables/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-metrics/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-mplex/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-nat/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-net/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-netutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-noise/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peer/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.1.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.zip -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.zip mirror://goproxy//github.com/libp2p/go-libp2p-peerstore/@v/v0.2.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-pnet/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-protocol/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.3.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.3.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub/@v/v0.3.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.3.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.3.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-pubsub-router/@v/v0.3.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.3.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.8.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-quic-transport/@v/v0.8.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-record/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-routing-helpers/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-secio/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.4.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.4.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.8.zip -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.zip mirror://goproxy//github.com/libp2p/go-libp2p-swarm/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-testing/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-libp2p-tls/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-libp2p-transport-upgrader/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.2.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.5.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.7.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.8.zip -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.zip mirror://goproxy//github.com/libp2p/go-libp2p-yamux/@v/v0.2.8.mod -> github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-maddr-filter/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-mplex/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.zip -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/libp2p/go-msgio/@v/v0.0.6.mod -> github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-nat/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.2.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.zip -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/libp2p/go-netroute/@v/v0.1.3.mod -> github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.5.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.zip -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/libp2p/go-openssl/@v/v0.0.7.mod -> github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.3.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.zip -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/libp2p/go-reuseport-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-sockaddr/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.zip -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/libp2p/go-socket-activation/@v/v0.0.2.mod -> github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-stream-muxer-multistream/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.0.4.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.1.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.zip -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/libp2p/go-tcp-transport/@v/v0.2.1.mod -> github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-testutil/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.0.5.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.1.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.2.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.0.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.zip -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/libp2p/go-ws-transport/@v/v0.3.1.mod -> github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.1.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.2.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.2.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.0.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.3.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.5.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.7.zip -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.zip mirror://goproxy//github.com/libp2p/go-yamux/@v/v1.3.7.mod -> github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.mod mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.18.0.zip -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.18.0.zip mirror://goproxy//github.com/lucas-clemente/quic-go/@v/v0.18.0.mod -> github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.18.0.mod mirror://goproxy//github.com/lunixbochs/vtclean/@v/v1.0.0.mod -> github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.zip -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.zip mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20180823135443-60711f1a8329.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod mirror://goproxy//github.com/mailru/easyjson/@v/v0.0.0-20190312143242-1de009706dbe.mod -> github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod mirror://goproxy//github.com/marten-seemann/qpack/@v/v0.2.0.mod -> github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.zip -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.zip mirror://goproxy//github.com/marten-seemann/qtls/@v/v0.10.0.mod -> github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.0.zip -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/marten-seemann/qtls-go1-15/@v/v0.1.0.mod -> github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.1.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.2.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.4.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.4.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.5.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.zip -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.zip -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip mirror://goproxy//github.com/mgutz/ansi/@v/v0.0.0-20170206155736-9520e82c474b.mod -> github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod mirror://goproxy//github.com/microcosm-cc/bluemonday/@v/v1.0.1.mod -> github.com%2Fmicrocosm-cc%2Fbluemonday%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.4.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.12.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.28.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.zip -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.zip mirror://goproxy//github.com/miekg/dns/@v/v1.1.31.mod -> github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.zip -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip mirror://goproxy//github.com/minio/blake2b-simd/@v/v0.0.0-20160723061019-3f5f724cb5b1.mod -> github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190131020904-2d45a736cd16.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.0.0-20190328051042-05b4dd3047e5.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.0.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1-0.20190913151208-6de447530771.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.zip -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/minio/sha256-simd/@v/v0.1.1.mod -> github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180228061459-e0a39a4cb421.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod mirror://goproxy//github.com/modern-go/concurrent/@v/v0.0.0-20180306012644-bacd9c7ef1dd.mod -> github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v0.0.0-20180701023420-4b7aa43c6742.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod mirror://goproxy//github.com/modern-go/reflect2/@v/v1.0.1.mod -> github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.1.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.2.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.1.3.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.zip -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/mr-tron/base58/@v/v1.2.0.mod -> github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-base32/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-base36/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.2.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.2.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr/@v/v0.3.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-dns/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-fmt/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.3.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.4.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.1.5.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.zip -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/multiformats/go-multiaddr-net/@v/v0.2.0.mod -> github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.2.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.zip -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/multiformats/go-multibase/@v/v0.0.3.mod -> github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.7.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.8.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.9.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.10.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.13.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.zip -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.zip mirror://goproxy//github.com/multiformats/go-multihash/@v/v0.0.14.mod -> github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.0.4.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.0.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.1.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.2.zip -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.2.zip mirror://goproxy//github.com/multiformats/go-multistream/@v/v0.1.2.mod -> github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.1.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.2.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.5.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.zip -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/multiformats/go-varint/@v/v0.0.6.mod -> github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/neelance/astrewrite/@v/v0.0.0-20160511093645-99348263ae86.mod -> github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod mirror://goproxy//github.com/neelance/sourcemap/@v/v0.0.0-20151028013722-8c68805598ab.mod -> github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.zip -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.zip mirror://goproxy//github.com/nxadm/tail/@v/v1.4.4.mod -> github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.7.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.1.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.12.1.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.zip -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.zip mirror://goproxy//github.com/onsi/ginkgo/@v/v1.14.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.4.3.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.7.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.9.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.zip -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.zip mirror://goproxy//github.com/onsi/gomega/@v/v1.10.1.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.0.2.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.1.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.zip -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/opentracing/opentracing-go/@v/v1.2.0.mod -> github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/openzipkin/zipkin-go/@v/v0.1.1.mod -> github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.8.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip mirror://goproxy//github.com/pkg/errors/@v/v0.9.1.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190221155625-df39d6c2d992.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190408063855-01bf1e26dd14.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190807091052-3d65705ee9f1.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190809202753-05966cbd336a.zip -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.zip mirror://goproxy//github.com/polydawn/refmt/@v/v0.0.0-20190809202753-05966cbd336a.mod -> github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.8.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.2.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.0.0.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.zip -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.zip mirror://goproxy//github.com/prometheus/client_golang/@v/v1.7.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190812154241-14fe0d1b01d4.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190812154241-14fe0d1b01d4.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.zip -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/prometheus/client_model/@v/v0.2.0.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20180801064454-c7de2306084e.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181126121408-4724e9255275.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.1.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.zip -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.zip mirror://goproxy//github.com/prometheus/common/@v/v0.10.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20180725123919-05ee40e3a273.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181204211112-1dc9a6cbc91a.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.2.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.zip -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.zip mirror://goproxy//github.com/prometheus/procfs/@v/v0.1.3.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod mirror://goproxy//github.com/rogpeppe/go-internal/@v/v1.3.0.mod -> github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/rs/cors/@v/v1.7.0.zip -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/rs/cors/@v/v1.7.0.mod -> github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/russross/blackfriday/@v/v1.5.2.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod mirror://goproxy//github.com/rwcarlsen/goexif/@v/v0.0.0-20190401172101-9e8deecbddbd.mod -> github.com%2Frwcarlsen%2Fgoexif%2F@v%2Fv0.0.0-20190401172101-9e8deecbddbd.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/shurcoo!l/component/@v/v0.0.0-20170202220835-f88ec8f54cc4.mod -> github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod mirror://goproxy//github.com/shurcoo!l/events/@v/v0.0.0-20181021180414-410e4ca65f48.mod -> github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod mirror://goproxy//github.com/shurcoo!l/github_flavored_markdown/@v/v0.0.0-20181002035957-2122de532470.mod -> github.com%2Fshurcoo!l%2Fgithub_flavored_markdown%2F@v%2Fv0.0.0-20181002035957-2122de532470.mod mirror://goproxy//github.com/shurcoo!l/go/@v/v0.0.0-20180423040247-9e1955d9fb6e.mod -> github.com%2Fshurcoo!l%2Fgo%2F@v%2Fv0.0.0-20180423040247-9e1955d9fb6e.mod mirror://goproxy//github.com/shurcoo!l/go-goon/@v/v0.0.0-20170922171312-37c2f522c041.mod -> github.com%2Fshurcoo!l%2Fgo-goon%2F@v%2Fv0.0.0-20170922171312-37c2f522c041.mod mirror://goproxy//github.com/shurcoo!l/gofontwoff/@v/v0.0.0-20180329035133-29b52fc0a18d.mod -> github.com%2Fshurcoo!l%2Fgofontwoff%2F@v%2Fv0.0.0-20180329035133-29b52fc0a18d.mod mirror://goproxy//github.com/shurcoo!l/gopherjslib/@v/v0.0.0-20160914041154-feb6d3990c2c.mod -> github.com%2Fshurcoo!l%2Fgopherjslib%2F@v%2Fv0.0.0-20160914041154-feb6d3990c2c.mod mirror://goproxy//github.com/shurcoo!l/highlight_diff/@v/v0.0.0-20170515013008-09bb4053de1b.mod -> github.com%2Fshurcoo!l%2Fhighlight_diff%2F@v%2Fv0.0.0-20170515013008-09bb4053de1b.mod mirror://goproxy//github.com/shurcoo!l/highlight_go/@v/v0.0.0-20181028180052-98c3abbbae20.mod -> github.com%2Fshurcoo!l%2Fhighlight_go%2F@v%2Fv0.0.0-20181028180052-98c3abbbae20.mod mirror://goproxy//github.com/shurcoo!l/home/@v/v0.0.0-20181020052607-80b7ffcb30f9.mod -> github.com%2Fshurcoo!l%2Fhome%2F@v%2Fv0.0.0-20181020052607-80b7ffcb30f9.mod mirror://goproxy//github.com/shurcoo!l/htmlg/@v/v0.0.0-20170918183704-d01228ac9e50.mod -> github.com%2Fshurcoo!l%2Fhtmlg%2F@v%2Fv0.0.0-20170918183704-d01228ac9e50.mod mirror://goproxy//github.com/shurcoo!l/httperror/@v/v0.0.0-20170206035902-86b7830d14cc.mod -> github.com%2Fshurcoo!l%2Fhttperror%2F@v%2Fv0.0.0-20170206035902-86b7830d14cc.mod mirror://goproxy//github.com/shurcoo!l/httpfs/@v/v0.0.0-20171119174359-809beceb2371.mod -> github.com%2Fshurcoo!l%2Fhttpfs%2F@v%2Fv0.0.0-20171119174359-809beceb2371.mod mirror://goproxy//github.com/shurcoo!l/httpgzip/@v/v0.0.0-20180522190206-b1c53ac65af9.mod -> github.com%2Fshurcoo!l%2Fhttpgzip%2F@v%2Fv0.0.0-20180522190206-b1c53ac65af9.mod mirror://goproxy//github.com/shurcoo!l/issues/@v/v0.0.0-20181008053335-6292fdc1e191.mod -> github.com%2Fshurcoo!l%2Fissues%2F@v%2Fv0.0.0-20181008053335-6292fdc1e191.mod mirror://goproxy//github.com/shurcoo!l/issuesapp/@v/v0.0.0-20180602232740-048589ce2241.mod -> github.com%2Fshurcoo!l%2Fissuesapp%2F@v%2Fv0.0.0-20180602232740-048589ce2241.mod mirror://goproxy//github.com/shurcoo!l/notifications/@v/v0.0.0-20181007000457-627ab5aea122.mod -> github.com%2Fshurcoo!l%2Fnotifications%2F@v%2Fv0.0.0-20181007000457-627ab5aea122.mod mirror://goproxy//github.com/shurcoo!l/octicon/@v/v0.0.0-20181028054416-fa4f57f9efb2.mod -> github.com%2Fshurcoo!l%2Focticon%2F@v%2Fv0.0.0-20181028054416-fa4f57f9efb2.mod mirror://goproxy//github.com/shurcoo!l/reactions/@v/v0.0.0-20181006231557-f2e0b4ca5b82.mod -> github.com%2Fshurcoo!l%2Freactions%2F@v%2Fv0.0.0-20181006231557-f2e0b4ca5b82.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v0.0.0-20170918181015-86672fcb3f95.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015-86672fcb3f95.mod mirror://goproxy//github.com/shurcoo!l/users/@v/v0.0.0-20180125191416-49c67e49c537.mod -> github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod mirror://goproxy//github.com/shurcoo!l/webdavfs/@v/v0.0.0-20170829043945-18c3829fa133.mod -> github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v0.0.0-20180927180507-b2de0cb4f26d.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.0.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.zip -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/smartystreets/assertions/@v/v1.0.1.mod -> github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190222223459-a17d461953aa.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190330032615-68dc04aab96a.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190731233626-505e41936337.zip -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190731233626-505e41936337.zip mirror://goproxy//github.com/smartystreets/goconvey/@v/v0.0.0-20190731233626-505e41936337.mod -> github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190731233626-505e41936337.mod mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.zip -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/smola/gocompat/@v/v0.2.0.mod -> github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/sourcegraph/annotate/@v/v0.0.0-20160123013949-f4cad6c6324d.mod -> github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod mirror://goproxy//github.com/sourcegraph/syntaxhighlight/@v/v0.0.0-20170531221838-bd320f5d308e.mod -> github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod mirror://goproxy//github.com/spacemonkeygo/openssl/@v/v0.0.0-20181017203307-c2dcc5cca94a.mod -> github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.zip -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip mirror://goproxy//github.com/spacemonkeygo/spacelog/@v/v0.0.0-20180420211403-2296661a0572.mod -> github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.zip -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/spaolacci/murmur3/@v/v1.1.0.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.5.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/viper/@v/v1.3.2.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/src-d/envconfig/@v/v1.0.0.mod -> github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.5.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.6.1.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.zip -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/syndtr/goleveldb/@v/v1.0.0.mod -> github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/tarm/serial/@v/v0.0.0-20180830185346-98f6abe2eb07.mod -> github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.zip -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip mirror://goproxy//github.com/texttheater/golang-levenshtein/@v/v0.0.0-20180516184445-d188e65d659e.mod -> github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.zip -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip mirror://goproxy//github.com/tv42/httpunix/@v/v0.0.0-20191220191345-2ba4b9c3382c.mod -> github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.mod mirror://goproxy//github.com/ugorji/go/codec/@v/v0.0.0-20181204163529-d75b2dcb6bc8.mod -> github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod mirror://goproxy//github.com/viant/assertly/@v/v0.4.8.mod -> github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod mirror://goproxy//github.com/viant/toolbox/@v/v0.24.0.mod -> github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20180510122957-5ad1f5abf436.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20190328234359-8b3e70f8e830.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.zip -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.zip mirror://goproxy//github.com/warpfork/go-wish/@v/v0.0.0-20200122115046-b9ea61034e4a.mod -> github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.zip -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip mirror://goproxy//github.com/whyrusleeping/base32/@v/v0.0.0-20170828182744-c30ac30633cc.mod -> github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200123233031-1cdf64d27158.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200402171437-3d27c146c105.zip -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200402171437-3d27c146c105.zip mirror://goproxy//github.com/whyrusleeping/cbor-gen/@v/v0.0.0-20200402171437-3d27c146c105.mod -> github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200402171437-3d27c146c105.mod mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.zip -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip mirror://goproxy//github.com/whyrusleeping/chunker/@v/v0.0.0-20181014151217-fe64bd25879f.mod -> github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.zip -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip mirror://goproxy//github.com/whyrusleeping/go-keyspace/@v/v0.0.0-20160322163242-5b898ac5add1.mod -> github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.zip -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.zip mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.0-20170515211332-0457bb6b88fc.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.zip -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/whyrusleeping/go-logging/@v/v0.0.1.mod -> github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.zip -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.zip mirror://goproxy//github.com/whyrusleeping/go-notifier/@v/v0.0.0-20170827234753-097c5d47330f.mod -> github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multiplex/@v/v3.0.16+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-multistream/@v/v2.0.2+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.8+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-smux-yamux/@v/v2.0.9+incompatible.mod -> github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.mod mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.zip -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip mirror://goproxy//github.com/whyrusleeping/go-sysinfo/@v/v0.0.0-20190219211824-4a357d4b90b1.mod -> github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.zip -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.zip mirror://goproxy//github.com/whyrusleeping/mafmt/@v/v1.2.8.mod -> github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20180901202407-ef14215e6b30.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.zip -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip mirror://goproxy//github.com/whyrusleeping/mdns/@v/v0.0.0-20190826153040-b9b60ed33aa9.mod -> github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.zip -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip mirror://goproxy//github.com/whyrusleeping/multiaddr-filter/@v/v0.0.0-20160516205228-e903e4adabd7.mod -> github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.zip -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.zip mirror://goproxy//github.com/whyrusleeping/tar-utils/@v/v0.0.0-20180509141711-8c6c8ba81d5c.mod -> github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.mod mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.zip -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip mirror://goproxy//github.com/whyrusleeping/timecache/@v/v0.0.0-20160911033111-cfcb2f1abfee.mod -> github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod mirror://goproxy//github.com/whyrusleeping/yamux/@v/v1.1.5.mod -> github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.mod mirror://goproxy//github.com/x-cray/logrus-prefixed-formatter/@v/v0.5.2.mod -> github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//github.com/yuin/goldmark/@v/v1.1.27.mod -> github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod mirror://goproxy//go.opencensus.io/@v/v0.18.0.mod -> go.opencensus.io%2F@v%2Fv0.18.0.mod mirror://goproxy//go.opencensus.io/@v/v0.21.0.mod -> go.opencensus.io%2F@v%2Fv0.21.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.0.mod -> go.opencensus.io%2F@v%2Fv0.22.0.mod mirror://goproxy//go.opencensus.io/@v/v0.22.1.zip -> go.opencensus.io%2F@v%2Fv0.22.1.zip mirror://goproxy//go.opencensus.io/@v/v0.22.1.mod -> go.opencensus.io%2F@v%2Fv0.22.1.mod mirror://goproxy//go.opencensus.io/@v/v0.22.2.zip -> go.opencensus.io%2F@v%2Fv0.22.2.zip mirror://goproxy//go.opencensus.io/@v/v0.22.2.mod -> go.opencensus.io%2F@v%2Fv0.22.2.mod mirror://goproxy//go.opencensus.io/@v/v0.22.3.zip -> go.opencensus.io%2F@v%2Fv0.22.3.zip mirror://goproxy//go.opencensus.io/@v/v0.22.3.mod -> go.opencensus.io%2F@v%2Fv0.22.3.mod mirror://goproxy//go.opencensus.io/@v/v0.22.4.zip -> go.opencensus.io%2F@v%2Fv0.22.4.zip mirror://goproxy//go.opencensus.io/@v/v0.22.4.mod -> go.opencensus.io%2F@v%2Fv0.22.4.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.5.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.zip -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.zip mirror://goproxy//go.uber.org/atomic/@v/v1.6.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod mirror://goproxy//go.uber.org/dig/@v/v1.10.0.zip -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.zip mirror://goproxy//go.uber.org/dig/@v/v1.10.0.mod -> go.uber.org%2Fdig%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/fx/@v/v1.13.1.zip -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.zip mirror://goproxy//go.uber.org/fx/@v/v1.13.1.mod -> go.uber.org%2Ffx%2F@v%2Fv1.13.1.mod mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.zip mirror://goproxy//go.uber.org/goleak/@v/v0.10.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.zip -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.zip mirror://goproxy//go.uber.org/goleak/@v/v1.0.0.mod -> go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.4.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.zip -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.zip mirror://goproxy//go.uber.org/multierr/@v/v1.5.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.5.0.mod mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.zip -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.zip mirror://goproxy//go.uber.org/tools/@v/v0.0.0-20190618225709-2cfd321de3ee.mod -> go.uber.org%2Ftools%2F@v%2Fv0.0.0-20190618225709-2cfd321de3ee.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.zip -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.zip mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.14.1.zip -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.zip mirror://goproxy//go.uber.org/zap/@v/v1.14.1.mod -> go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod mirror://goproxy//go.uber.org/zap/@v/v1.15.0.zip -> go.uber.org%2Fzap%2F@v%2Fv1.15.0.zip mirror://goproxy//go.uber.org/zap/@v/v1.15.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod mirror://goproxy//go4.org/@v/v0.0.0-20180809161055-417644f6feb5.mod -> go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.zip -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip mirror://goproxy//go4.org/@v/v0.0.0-20200411211856-f5505b9728dd.mod -> go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod mirror://goproxy//golang.org/x/build/@v/v0.0.0-20190111050920-041ab4dc3f9d.mod -> golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20170930174604-9419663f5a44.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181030102418-4d3f4d9ffa16.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181030102418-4d3f4d9ffa16.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20181203042331-505ab145d0a9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190211182817-74369b46fc67.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190225124518-7f87c0fbb88b.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190228161510-8dd112bcdc25.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190313024323-a1f597ede03a.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190426145343-a29dc8fdc734.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190510104115-cbcb75029529.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190513172903-22d7a77e9e5f.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190530122614-20be4c3c3ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190605123033-f99c8df09eb5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190605123033-f99c8df09eb5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190611184440-5c40567a22f8.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190618222545-ea8f1a30c443.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200115085410-6d4e4cb37c7d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200117160349-530e935923ad.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200117160349-530e935923ad.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200221231518-2aa609cf4a9d.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200423211502-4bdfaf469ed5.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190121172915-509febef88a4.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190306152737-a1d7652674e8.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190510132918-efd6b22b2522.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20190829153037-c13cbed26979.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190829153037-c13cbed26979.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191030013958-a1ab85dbe136.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191030013958-a1ab85dbe136.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191129062945-2f5052295587.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191129062945-2f5052295587.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20191227195350-da58074b4299.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod mirror://goproxy//golang.org/x/exp/@v/v0.0.0-20200207192155-f17229e696bd.mod -> golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190227222117-0694c2d4d067.mod mirror://goproxy//golang.org/x/image/@v/v0.0.0-20190802002840-cff245a6509b.mod -> golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190802002840-cff245a6509b.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20180702182130-06c8688daad7.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190227174305-5b3e6a55c961.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190301231843-5614ed5bae6f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190301231843-5614ed5bae6f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190409202823-959b441ac422.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190409202823-959b441ac422.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190909230951-414d861bb4ac.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190909230951-414d861bb4ac.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190930215403-16217165b5de.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20191125180803-fdd1cda4f05f.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200130185559-910be7a94367.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200130185559-910be7a94367.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.zip -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.zip mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20200302205851-738671d3881b.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190312151609-d3739f865fa6.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190312151609-d3739f865fa6.mod mirror://goproxy//golang.org/x/mobile/@v/v0.0.0-20190719004257-d2bd2a29d028.mod -> golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190719004257-d2bd2a29d028.mod mirror://goproxy//golang.org/x/mod/@v/v0.0.0-20190513183733-4bf6d317e70e.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.0.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/mod/@v/v0.2.0.zip -> golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.zip mirror://goproxy//golang.org/x/mod/@v/v0.2.0.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180524181706-dfa909b99c79.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180524181706-dfa909b99c79.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180724234803-3673e40ba225.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181011144130-49bb7cea24b1.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181029044818-c44066c5c816.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181029044818-c44066c5c816.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181106065722-10aee1819953.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181106065722-10aee1819953.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181201002055-351d144fa1fc.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190108225652-1e06a53dbb7e.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190213061140-3a22650c66bd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190227160552-c95aed5357e7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190313220215-9f648a60d977.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190501004415-9ce7a6920f09.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190503192946-f4e77d36d62c.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190603091049-60506f45cf65.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190603091049-60506f45cf65.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190611141213-3f473d35a33a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190613194153-d28f0bde5980.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190724013045-ca1201d0de80.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20191209160850-c0dbc17a3553.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200202094626-16171245cfb2.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200222125558-5a598a2470a0.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200222125558-5a598a2470a0.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200226121028-0de0cce0169b.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200226121028-0de0cce0169b.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200520004742-59133d7f0dd7.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520004742-59133d7f0dd7.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200707034311-ab3426394381.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181017192945-9dcd33a902f4.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20181203162652-d668ce993890.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190226205417-e64efc72b421.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20190604053449-0f29369cfe45.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20191202225959-858c2ad4c8b6.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20200107190931-bf48bf16ab8d.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod mirror://goproxy//golang.org/x/perf/@v/v0.0.0-20180704124530-6e6d33e29852.mod -> golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190227155943-e225da77a7e6.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190911185100-cd5d95a43a6e.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20200317015054-43a5402ce75a.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181029174526-d69651ed3497.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181205085412-a5c9d58dba9a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190219092855-153ac476189d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190222072716-a9d3bda3a223.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190228124157-a34e9553db1e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190302025703-b6889370fb10.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190312061237-fead79001313.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190312061237-fead79001313.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190316082340-a2f829d7f35f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190405154228-4b34438f7a67.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190502145724-3ef323f4f1fd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190507160741-ecd444e8653b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190507160741-ecd444e8653b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524122548-abf6ff778158.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190524152521-dbbf3f1254d4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190526052359-791d8a0f4d09.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190606165138-5da285871e9c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190606165138-5da285871e9c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190610200419-93c9922d18ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190624142023-c5567b49c5d0.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190624142023-c5567b49c5d0.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190726091711-fc99dfbffb4e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190904154756-749cb33beabd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191005200804-aed5e4c7ecf9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191120155948-bd437916bb0e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191204072324-ce4227a45e2e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191228213918-04cbcbbfeed8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191228213918-04cbcbbfeed8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200106162015-b016eb3dc98e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200106162015-b016eb3dc98e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200122134326-e047566fdf82.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200122134326-e047566fdf82.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200202164722-d101bd2416d5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200212091648-12a6c2dcc1e4.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200212091648-12a6c2dcc1e4.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200509044756-6aff5f38e54f.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200509044756-6aff5f38e54f.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200519105757-fe76b779f299.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200519105757-fe76b779f299.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200615200032-f1bc736245b1.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200615200032-f1bc736245b1.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.mod mirror://goproxy//golang.org/x/text/@v/v0.0.0-20170915032832-14c0d48ead0c.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.1-0.20180807135948-17ff2d5776d2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20180412165947-fbb02b2291d2.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20181108054448-85acf8d2951c.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20190308202827-9d24e82272b4.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180828015842-6cd1fcedba52.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030000716-a0a13e073c7b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181030221726-6c7e314b6563.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030221726-6c7e314b6563.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20181130052023-1c3d964395ce.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190226205152-f727befe758c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312151545-0bb0c0a6e846.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312151545-0bb0c0a6e846.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190312170243-e65039ee4138.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312170243-e65039ee4138.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190328211700-ab21143f2384.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190425150028-36563e24a262.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190506145303-2d16b83fe98c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190506145303-2d16b83fe98c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190524140312-2c0ae7006135.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190524140312-2c0ae7006135.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190606124116-d0a3d012864b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190606124116-d0a3d012864b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190621195816-6e04913cbbac.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190628153133-6cdbf07be9d0.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190628153133-6cdbf07be9d0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190816200558-6889da9d5479.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190816200558-6889da9d5479.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190911174233-4f2ddba30aff.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190911174233-4f2ddba30aff.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191012152004-8de300cfc20a.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191012152004-8de300cfc20a.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029041327-9cc4af7d6b2c.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191029190741-b9c20aec41a5.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191030062658-86caa796c7ab.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191108193012-7d206e10da11.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191113191852-77e3bb0ad9e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191113191852-77e3bb0ad9e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191114200427-caa0b0f7d508.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191115202509-3a792d9c32b2.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191115202509-3a792d9c32b2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191119224855-298f0cb1881e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191119224855-298f0cb1881e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191125144606-a911d9008d1f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216173652-a0e659d51361.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216173652-a0e659d51361.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191227053925-7b8e75db28f4.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191227053925-7b8e75db28f4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200130002326-2f3ba24bd6e7.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200130002326-2f3ba24bd6e7.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200207183749-b753a1ba74fa.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200207183749-b753a1ba74fa.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200212150539-ea181f53ac56.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200212150539-ea181f53ac56.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200522201501-cb1345f3a375.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200522201501-cb1345f3a375.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20200522201501-cb1345f3a375.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200522201501-cb1345f3a375.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191204190536-9bdfabe68543.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20180910000450-7ca32eb868bf.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod mirror://goproxy//google.golang.org/api/@v/v0.0.0-20181030000543-1d582fd0359e.mod -> google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod mirror://goproxy//google.golang.org/api/@v/v0.1.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod mirror://goproxy//google.golang.org/api/@v/v0.4.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.4.0.mod mirror://goproxy//google.golang.org/api/@v/v0.7.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.7.0.mod mirror://goproxy//google.golang.org/api/@v/v0.8.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.8.0.mod mirror://goproxy//google.golang.org/api/@v/v0.9.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.9.0.mod mirror://goproxy//google.golang.org/api/@v/v0.13.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.13.0.mod mirror://goproxy//google.golang.org/api/@v/v0.14.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.14.0.mod mirror://goproxy//google.golang.org/api/@v/v0.15.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.15.0.mod mirror://goproxy//google.golang.org/api/@v/v0.17.0.mod -> google.golang.org%2Fapi%2F@v%2Fv0.17.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.2.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.3.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.4.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.5.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.1.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod mirror://goproxy//google.golang.org/appengine/@v/v1.6.5.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180831171423-11092d34479b.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181029155118-b69ba1387ce2.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20181202183823-bd91e49a0898.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190306203927-b5d61aea6440.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190307195333-5fe7a883aa19.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190418145605-e7d98fc518a7.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190418145605-e7d98fc518a7.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190425155659-357c62f0e4bb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190502173448-54afdca5d873.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190502173448-54afdca5d873.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190801165951-fa694d86fc64.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190801165951-fa694d86fc64.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190819201941-24fa4b261c55.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190819201941-24fa4b261c55.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20190911173649-1774047e7e51.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190911173649-1774047e7e51.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191108220845-16a3f7862a1a.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191108220845-16a3f7862a1a.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191115194625-c23dd37a84c9.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191115194625-c23dd37a84c9.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191216164720-4f79533eabd1.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191216164720-4f79533eabd1.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20191230161307-f3c370f40bfb.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191230161307-f3c370f40bfb.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20200212174721-66ed5ce911ce.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200212174721-66ed5ce911ce.mod mirror://goproxy//google.golang.org/grpc/@v/v1.14.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.16.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.17.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.20.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.1.mod mirror://goproxy//google.golang.org/grpc/@v/v1.23.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.23.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.26.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.26.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.27.1.zip -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.zip mirror://goproxy//google.golang.org/grpc/@v/v1.27.1.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200109180630-ec00e32a8dfd.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200109180630-ec00e32a8dfd.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200221191635-4d8936d0db64.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200221191635-4d8936d0db64.mod mirror://goproxy//google.golang.org/protobuf/@v/v0.0.0-20200228230310-ab0ca4ff8a60.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200228230310-ab0ca4ff8a60.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.20.1-0.20200309200217-e05f789c0967.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.20.1-0.20200309200217-e05f789c0967.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.21.0.zip -> google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.zip mirror://goproxy//google.golang.org/protobuf/@v/v1.21.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.mod mirror://goproxy//google.golang.org/protobuf/@v/v1.23.0.zip -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.zip mirror://goproxy//google.golang.org/protobuf/@v/v1.23.0.mod -> google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.zip -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.zip mirror://goproxy//gopkg.in/cheggaaa/pb.v1/@v/v1.0.28.mod -> gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.mod mirror://goproxy//gopkg.in/errgo.v2/@v/v2.1.0.mod -> gopkg.in%2Ferrgo.v2%2F@v%2Fv2.1.0.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.zip -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.zip mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/inf.v0/@v/v0.9.1.mod -> gopkg.in%2Finf.v0%2F@v%2Fv0.9.1.mod mirror://goproxy//gopkg.in/src-d/go-cli.v0/@v/v0.0.0-20181105080154-d492247bbc0d.mod -> gopkg.in%2Fsrc-d%2Fgo-cli.v0%2F@v%2Fv0.0.0-20181105080154-d492247bbc0d.mod mirror://goproxy//gopkg.in/src-d/go-log.v1/@v/v1.0.1.mod -> gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.zip -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.5.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.3.0.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.zip -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip mirror://goproxy//gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod -> gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod mirror://goproxy//grpc.go4.org/@v/v0.0.0-20170609214715-11d0a25b4919.mod -> grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20180728063816-88497007e858.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190106161140-3f1c8253044a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190418001031-e561f6794a2a.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190523083050-ea95bdfd59fc.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.zip -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip mirror://goproxy//honnef.co/go/tools/@v/v0.0.1-2019.2.3.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod mirror://goproxy//rsc.io/binaryregexp/@v/v0.2.0.mod -> rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod mirror://goproxy//rsc.io/quote/v3/@v/v3.1.0.mod -> rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod mirror://goproxy//rsc.io/sampler/@v/v1.3.0.mod -> rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod mirror://goproxy//sourcegraph.com/sourcegraph/go-diff/@v/v0.5.0.mod -> sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod mirror://goproxy//sourcegraph.com/sqs/pbtypes/@v/v0.0.0-20180604144634-d3ebe8f20ae4.mod -> sourcegraph.com%2Fsqs%2Fpbtypes%2F@v%2Fv0.0.0-20180604144634-d3ebe8f20ae4.mod +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a2fe50281b42a04350baeeba76100494 diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz index 27ee5d0a9428..6095931f330d 100644 Binary files a/metadata/md5-cache/net-print/Manifest.gz and b/metadata/md5-cache/net-print/Manifest.gz differ diff --git a/metadata/md5-cache/net-print/hplip-3.20.9-r3 b/metadata/md5-cache/net-print/hplip-3.20.9-r3 index aaaf231103ca..b4dfb11ea3b7 100644 --- a/metadata/md5-cache/net-print/hplip-3.20.9-r3 +++ b/metadata/md5-cache/net-print/hplip-3.20.9-r3 @@ -1,15 +1,15 @@ BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 =sys-devel/automake-1.13* >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst prepare setup -DEPEND=net-print/cups virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !minimal? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) sys-apps/dbus !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[python_targets_python3_8(-)] ) ) ) +DEPEND=net-print/cups virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !minimal? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) sys-apps/dbus !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[dbus,python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) DESCRIPTION=HP Linux Imaging and Printing - Print, scan, fax drivers and service tools EAPI=7 HOMEPAGE=https://developers.hp.com/hp-linux-imaging-and-printing IUSE=doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport policykit qt5 scanner +snmp static-ppds X kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=amd64 ~arm arm64 ppc ppc64 x86 LICENSE=GPL-2 -RDEPEND=net-print/cups virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !minimal? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) sys-apps/dbus !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[python_targets_python3_8(-)] ) ) ) app-text/ghostscript-gpl !minimal? ( python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) kernel_linux? ( virtual/udev ) python_single_target_python3_6? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_6(-)] dev-python/distro[python_targets_python3_6(-)] fax? ( dev-python/reportlab[python_targets_python3_6(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_6(-)] libnotify? ( dev-python/notify2[python_targets_python3_6(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_6(-)] >=dev-python/pillow-3.1.1[python_targets_python3_6(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_7? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_7(-)] dev-python/distro[python_targets_python3_7(-)] fax? ( dev-python/reportlab[python_targets_python3_7(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_7(-)] libnotify? ( dev-python/notify2[python_targets_python3_7(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_7(-)] >=dev-python/pillow-3.1.1[python_targets_python3_7(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_8? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_8(-)] dev-python/distro[python_targets_python3_8(-)] fax? ( dev-python/reportlab[python_targets_python3_8(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_8(-)] libnotify? ( dev-python/notify2[python_targets_python3_8(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_8(-)] >=dev-python/pillow-3.1.1[python_targets_python3_8(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) ) policykit? ( sys-auth/polkit ) +RDEPEND=net-print/cups virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !minimal? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) sys-apps/dbus !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[dbus,python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) app-text/ghostscript-gpl !minimal? ( python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) kernel_linux? ( virtual/udev ) python_single_target_python3_6? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_6(-)] dev-python/distro[python_targets_python3_6(-)] fax? ( dev-python/reportlab[python_targets_python3_6(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_6(-)] libnotify? ( dev-python/notify2[python_targets_python3_6(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_6(-)] >=dev-python/pillow-3.1.1[python_targets_python3_6(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_7? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_7(-)] dev-python/distro[python_targets_python3_7(-)] fax? ( dev-python/reportlab[python_targets_python3_7(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_7(-)] libnotify? ( dev-python/notify2[python_targets_python3_7(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_7(-)] >=dev-python/pillow-3.1.1[python_targets_python3_7(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_8? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_8(-)] dev-python/distro[python_targets_python3_8(-)] fax? ( dev-python/reportlab[python_targets_python3_8(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_8(-)] libnotify? ( dev-python/notify2[python_targets_python3_8(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_8(-)] >=dev-python/pillow-3.1.1[python_targets_python3_8(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) ) policykit? ( sys-auth/polkit ) REQUIRED_USE=!minimal? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) SLOT=0 SRC_URI=mirror://sourceforge/hplip/hplip-3.20.9.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.20.9-patches-2.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=2f8545c25a62415cf9b9c8699afe2e83 +_md5_=e5df78999c93f66e6485df37928147b4 diff --git a/metadata/md5-cache/net-print/hplip-3.20.9-r4 b/metadata/md5-cache/net-print/hplip-3.20.9-r4 new file mode 100644 index 000000000000..3691b7d801e1 --- /dev/null +++ b/metadata/md5-cache/net-print/hplip-3.20.9-r4 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 =sys-devel/automake-1.13* >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=net-print/cups sys-apps/dbus virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) !minimal? ( scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[dbus,python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) +DESCRIPTION=HP Linux Imaging and Printing - Print, scan, fax drivers and service tools +EAPI=7 +HOMEPAGE=https://developers.hp.com/hp-linux-imaging-and-printing +IUSE=doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport policykit qt5 scanner +snmp static-ppds X kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=net-print/cups sys-apps/dbus virtual/jpeg:0 hpijs? ( net-print/cups-filters[foomatic] ) !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) !minimal? ( scanner? ( media-gfx/sane-backends ) snmp? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= python_single_target_python3_6? ( net-dns/avahi[dbus,python_targets_python3_6(-)] ) python_single_target_python3_7? ( net-dns/avahi[dbus,python_targets_python3_7(-)] ) python_single_target_python3_8? ( net-dns/avahi[dbus,python_targets_python3_8(-)] ) ) ) app-text/ghostscript-gpl !minimal? ( python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) kernel_linux? ( virtual/udev ) python_single_target_python3_6? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_6(-)] dev-python/distro[python_targets_python3_6(-)] fax? ( dev-python/reportlab[python_targets_python3_6(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_6(-)] libnotify? ( dev-python/notify2[python_targets_python3_6(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_6(-)] >=dev-python/pillow-3.1.1[python_targets_python3_6(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_7? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_7(-)] dev-python/distro[python_targets_python3_7(-)] fax? ( dev-python/reportlab[python_targets_python3_7(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_7(-)] libnotify? ( dev-python/notify2[python_targets_python3_7(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_7(-)] >=dev-python/pillow-3.1.1[python_targets_python3_7(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) python_single_target_python3_8? ( >=dev-python/dbus-python-1.2.0-r1[python_targets_python3_8(-)] dev-python/distro[python_targets_python3_8(-)] fax? ( dev-python/reportlab[python_targets_python3_8(-)] ) qt5? ( >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,python_targets_python3_8(-)] libnotify? ( dev-python/notify2[python_targets_python3_8(-)] ) ) scanner? ( >=dev-python/reportlab-3.2[python_targets_python3_8(-)] >=dev-python/pillow-3.1.1[python_targets_python3_8(-)] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) ) ) policykit? ( sys-auth/polkit ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) +SLOT=0 +SRC_URI=mirror://sourceforge/hplip/hplip-3.20.9.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.20.9-patches-2.tar.xz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 +_md5_=43ddce2420465c20398f43adadc109df diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 7212bb1dd1e3..d3a5c10d920e 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/wireguard-modules-1.0.20200908 b/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20200908 deleted file mode 100644 index bd18cb3d8b98..000000000000 --- a/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20200908 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup -DEPEND=module? ( kernel_linux? ( sys-apps/kmod[tools] ) ) module? ( sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) ) -DESCRIPTION=Simple yet fast and modern VPN that utilizes state-of-the-art cryptography. -EAPI=7 -HOMEPAGE=https://www.wireguard.com/ -IUSE=debug +module module-src kernel_linux kernel_linux module -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86 -LICENSE=GPL-2 -RDEPEND=module? ( kernel_linux? ( sys-apps/kmod[tools] ) ) -SLOT=0 -SRC_URI=https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-1.0.20200908.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=9e0d77070be5f5881dff6070befff3d3 diff --git a/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20201112 b/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20201112 index e17641168c23..4663494a8b5d 100644 --- a/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20201112 +++ b/metadata/md5-cache/net-vpn/wireguard-modules-1.0.20201112 @@ -4,10 +4,10 @@ DESCRIPTION=Simple yet fast and modern VPN that utilizes state-of-the-art crypto EAPI=7 HOMEPAGE=https://www.wireguard.com/ IUSE=debug +module module-src kernel_linux kernel_linux module -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86 LICENSE=GPL-2 RDEPEND=module? ( kernel_linux? ( sys-apps/kmod[tools] ) ) SLOT=0 SRC_URI=https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-1.0.20201112.tar.xz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=601ff7e15558545d694113859cf0efcf +_md5_=9e0d77070be5f5881dff6070befff3d3 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index bf0aaa44789b..cba6cdaf112a 100644 Binary files a/metadata/md5-cache/net-wireless/Manifest.gz and b/metadata/md5-cache/net-wireless/Manifest.gz differ diff --git a/metadata/md5-cache/net-wireless/unifi-6.0.34 b/metadata/md5-cache/net-wireless/unifi-6.0.36 similarity index 81% rename from metadata/md5-cache/net-wireless/unifi-6.0.34 rename to metadata/md5-cache/net-wireless/unifi-6.0.36 index 6e206eb38abc..38bb1011fd4a 100644 --- a/metadata/md5-cache/net-wireless/unifi-6.0.34 +++ b/metadata/md5-cache/net-wireless/unifi-6.0.36 @@ -10,6 +10,6 @@ LICENSE=Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 RDEPEND=acct-group/unifi acct-user/unifi dev-db/mongodb virtual/jre:1.8 RESTRICT=bindist mirror SLOT=0/6.0 -SRC_URI=https://dl.ui.com/unifi/6.0.34-06c6d23a7b/UniFi.unix.zip -> unifi-6.0.34.zip +SRC_URI=https://dl.ui.com/unifi/6.0.36/UniFi.unix.zip -> unifi-6.0.36.zip _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ed91c53db6fae3dd31dbb77e83b7c792 +_md5_=749d67e88f361bf1301db237e7b54684 diff --git a/metadata/md5-cache/net-wireless/unifi-6.0.28 b/metadata/md5-cache/net-wireless/unifi-6.0.37 similarity index 71% rename from metadata/md5-cache/net-wireless/unifi-6.0.28 rename to metadata/md5-cache/net-wireless/unifi-6.0.37 index a0e075046eff..f368b2d32526 100644 --- a/metadata/md5-cache/net-wireless/unifi-6.0.28 +++ b/metadata/md5-cache/net-wireless/unifi-6.0.37 @@ -1,14 +1,15 @@ +BDEPEND=virtual/pkgconfig DEFINED_PHASES=install prepare -DEPEND=app-arch/unzip virtual/pkgconfig +DEPEND=app-arch/unzip DESCRIPTION=A Management Controller for Ubiquiti Networks UniFi APs -EAPI=6 +EAPI=7 HOMEPAGE=https://www.ubnt.com IUSE=systemd -KEYWORDS=amd64 +KEYWORDS=~amd64 LICENSE=Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 MIT ubiquiti RDEPEND=acct-group/unifi acct-user/unifi dev-db/mongodb virtual/jre:1.8 RESTRICT=bindist mirror SLOT=0/6.0 -SRC_URI=https://dl.ui.com/unifi/6.0.28-39f3b98a31/UniFi.unix.zip -> unifi-6.0.28.zip +SRC_URI=https://dl.ui.com/unifi/6.0.37-db4f549ad2/UniFi.unix.zip -> unifi-6.0.37.zip _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=cf68fbd6ffe99d68a9c170bd477737e9 +_md5_=165f460be3eb5c725e03c943b19e92a8 diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz index 3e4986fcb418..fcfb1b1e6175 100644 Binary files a/metadata/md5-cache/sci-electronics/Manifest.gz and b/metadata/md5-cache/sci-electronics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/kicad-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-5.1.8 new file mode 100644 index 000000000000..97ce217a5406 --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-5.1.8 @@ -0,0 +1,15 @@ +BDEPEND=doc? ( app-doc/doxygen ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack +DEPEND=>=dev-libs/boost-1.61:=[context,nls,threads] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] github? ( net-misc/curl:=[ssl] ) ngspice? ( >sci-electronics/ngspice-27[shared] ) occ? ( >=sci-libs/opencascade-6.8.0:= ) oce? ( sci-libs/oce ) python? ( python_single_target_python3_7? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_7(-)] dev-python/wxpython:4.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) 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] ) ) python? ( >=dev-lang/swig-3.0:0 ) +DESCRIPTION=Electronic Schematic and PCB design tools +EAPI=7 +HOMEPAGE=https://www.kicad.org +IUSE=doc examples github +ngspice occ +oce openmp +python python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+ GPL-3+ Boost-1.0 +RDEPEND=>=dev-libs/boost-1.61:=[context,nls,threads] media-libs/freeglut media-libs/glew:0= >=media-libs/glm-0.9.9.1 media-libs/mesa[X(+)] >=x11-libs/cairo-1.8.8:= >=x11-libs/pixman-0.30 x11-libs/wxGTK:3.0-gtk3[X,opengl] github? ( net-misc/curl:=[ssl] ) ngspice? ( >sci-electronics/ngspice-27[shared] ) occ? ( >=sci-libs/opencascade-6.8.0:= ) oce? ( sci-libs/oce ) python? ( python_single_target_python3_7? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_7(-)] dev-python/wxpython:4.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_8(-)] dev-python/wxpython:4.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-libs/boost-1.61:=[context,nls,threads,python,python_targets_python3_9(-)] dev-python/wxpython:4.0[python_targets_python3_9(-)] ) 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] ) ) sci-electronics/electronics-menu +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) ?? ( occ oce ) +SLOT=0 +SRC_URI=https://gitlab.com/kicad/code/kicad/-/archive/5.1.8/kicad-5.1.8.tar.bz2 +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets e1e6e1eb5b3d911b3abd712f611e2312 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=9162473482da80c2b6f9b258e5934fc5 diff --git a/metadata/md5-cache/media-libs/kodi-platform-18.0_pre20190429 b/metadata/md5-cache/sci-electronics/kicad-footprints-5.1.8 similarity index 63% rename from metadata/md5-cache/media-libs/kodi-platform-18.0_pre20190429 rename to metadata/md5-cache/sci-electronics/kicad-footprints-5.1.8 index 5da9e4ec5fb2..7bbcfe6635b5 100644 --- a/metadata/md5-cache/media-libs/kodi-platform-18.0_pre20190429 +++ b/metadata/md5-cache/sci-electronics/kicad-footprints-5.1.8 @@ -1,13 +1,12 @@ BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test -DEPEND==media-tv/kodi-18* =dev-libs/libplatform-2* dev-libs/tinyxml -DESCRIPTION=Kodi platform support library +DESCRIPTION=Electronic Schematic and PCB design tools footprint libraries EAPI=7 -HOMEPAGE=https://kodi.tv +HOMEPAGE=https://kicad.github.io/footprints/ KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND==media-tv/kodi-18* =dev-libs/libplatform-2* dev-libs/tinyxml +LICENSE=CC-BY-SA-4.0 +RDEPEND=>=sci-electronics/kicad-5.1.0 SLOT=0 -SRC_URI=https://github.com/xbmc/kodi-platform/tarball/915da08 -> kodi-platform-18.0_pre20190429.tar.gz +SRC_URI=https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/5.1.8/kicad-footprints-5.1.8.tar.bz2 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ea05261539aac521a344550414c0c60f +_md5_=71135e5d2bc28f741bccb2996f5ae952 diff --git a/metadata/md5-cache/sci-electronics/kicad-i18n-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-i18n-5.1.8 new file mode 100644 index 000000000000..1d2d1c6f6fd2 --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-i18n-5.1.8 @@ -0,0 +1,12 @@ +BDEPEND=sys-devel/gettext dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Electronic Schematic and PCB design tools GUI translations +EAPI=7 +HOMEPAGE=https://gitlab.com/kicad/code/kicad-i18n +KEYWORDS=~amd64 ~x86 +LICENSE=CC-BY-SA-4.0 +RDEPEND=>=sci-electronics/kicad-5.1.6 +SLOT=0 +SRC_URI=https://gitlab.com/kicad/code/kicad-i18n/-/archive/5.1.8/kicad-i18n-5.1.8.tar.bz2 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=2cb9b5205e9d40a9a251216cb5d46bc6 diff --git a/metadata/md5-cache/sci-electronics/kicad-meta-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-meta-5.1.8 new file mode 100644 index 000000000000..5b4ed517694c --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-meta-5.1.8 @@ -0,0 +1,10 @@ +DEFINED_PHASES=- +DESCRIPTION=Electronic Schematic and PCB design tools (meta package) +EAPI=7 +HOMEPAGE=http://www.kicad.org +IUSE=doc minimal nls +KEYWORDS=~amd64 +LICENSE=metapackage +RDEPEND=>=sci-electronics/kicad-5.1.8 >=sci-electronics/kicad-symbols-5.1.8 >=sci-electronics/kicad-footprints-5.1.8 doc? ( >=app-doc/kicad-doc-5.1.8 ) !minimal? ( >=sci-electronics/kicad-packages3d-5.1.8 >=sci-electronics/kicad-templates-5.1.8 ) nls? ( >=sci-electronics/kicad-i18n-5.1.8 ) +SLOT=0 +_md5_=8828957686d8b81cce865576655339bc diff --git a/metadata/md5-cache/sci-electronics/kicad-packages3d-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-packages3d-5.1.8 new file mode 100644 index 000000000000..53e8cf90a287 --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-packages3d-5.1.8 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare pretend setup test +DESCRIPTION=Electronic Schematic and PCB design tools 3D package libraries +EAPI=7 +HOMEPAGE=https://kicad.github.io/packages3d/ +IUSE=occ +oce +KEYWORDS=~amd64 +LICENSE=CC-BY-SA-4.0 +RDEPEND=>=sci-electronics/kicad-5.1.0[occ=,oce=] +REQUIRED_USE=|| ( occ oce ) +SLOT=0 +SRC_URI=https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/5.1.8/kicad-packages3D-5.1.8.tar.bz2 -> kicad-packages3d-5.1.8.tar.bz2 +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=00bab1455da7aee3175d4ca90208d576 diff --git a/metadata/md5-cache/sci-electronics/kicad-symbols-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-symbols-5.1.8 new file mode 100644 index 000000000000..bd12766f01fc --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-symbols-5.1.8 @@ -0,0 +1,12 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Electronic Schematic and PCB design tools symbol libraries +EAPI=7 +HOMEPAGE=https://kicad.github.io/symbols/ +KEYWORDS=~amd64 ~x86 +LICENSE=CC-BY-SA-4.0 +RDEPEND=>=sci-electronics/kicad-5.1.0 +SLOT=0 +SRC_URI=https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/5.1.8/kicad-symbols-5.1.8.tar.bz2 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=cc2bfed18ea279ff56759ac4ec5db0b3 diff --git a/metadata/md5-cache/sci-electronics/kicad-templates-5.1.8 b/metadata/md5-cache/sci-electronics/kicad-templates-5.1.8 new file mode 100644 index 000000000000..e1ed7390aa6d --- /dev/null +++ b/metadata/md5-cache/sci-electronics/kicad-templates-5.1.8 @@ -0,0 +1,12 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Electronic Schematic and PCB design tools project templates +EAPI=7 +HOMEPAGE=https://github.com/kicad/kicad-templates +KEYWORDS=~amd64 ~x86 +LICENSE=CC-BY-SA-4.0 +RDEPEND=>=sci-electronics/kicad-5.1.0 +SLOT=0 +SRC_URI=https://gitlab.com/kicad/libraries/kicad-templates/-/archive/5.1.8/kicad-templates-5.1.8.tar.bz2 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=15a06b10001d2a2e7a15d4e15d877b3b diff --git a/metadata/md5-cache/sci-electronics/voacapl-0.7.6 b/metadata/md5-cache/sci-electronics/voacapl-0.7.6 index 0b3dcf8a7d2f..3b8478010775 100644 --- a/metadata/md5-cache/sci-electronics/voacapl-0.7.6 +++ b/metadata/md5-cache/sci-electronics/voacapl-0.7.6 @@ -3,11 +3,11 @@ DEPEND=virtual/fortran DESCRIPTION=HF propagation prediction tool EAPI=7 HOMEPAGE=https://www.qsl.net/hz1jw/voacapl/index.html -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=all-rights-reserved RDEPEND=virtual/fortran RESTRICT=mirror bindist SLOT=0 SRC_URI=https://github.com/jawatson/voacapl/archive/v.0.7.6.tar.gz -> voacapl-0.7.6.tar.gz _eclasses_=fortran-2 b4796813ccda91c9c0d3463fc90aa969 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dd1cecc842d0006dd9d1ce5b6cfc5f83 +_md5_=0f72766c5b5aea46076386c09b0fd465 diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index 6afe32bedb1c..0d5dd8b26d6f 100644 Binary files a/metadata/md5-cache/sci-geosciences/Manifest.gz and b/metadata/md5-cache/sci-geosciences/Manifest.gz differ diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.10.9 b/metadata/md5-cache/sci-geosciences/qgis-3.10.9 deleted file mode 100644 index 8f2b892af514..000000000000 --- a/metadata/md5-cache/sci-geosciences/qgis-3.10.9 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=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-qt/linguist-tools-5.9.4:5 sys-devel/bison sys-devel/flex dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=app-crypt/qca:2[qt5(+),ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 dev-libs/expat dev-libs/libzip:= dev-libs/qtkeychain[qt5(+)] >=dev-qt/designer-5.9.4:5 >=dev-qt/qtconcurrent-5.9.4:5 >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtgui-5.9.4:5 >=dev-qt/qtnetwork-5.9.4:5[ssl] >=dev-qt/qtpositioning-5.9.4:5 >=dev-qt/qtprintsupport-5.9.4:5 >=dev-qt/qtserialport-5.9.4:5 >=dev-qt/qtsvg-5.9.4:5 >=dev-qt/qtsql-5.9.4:5 >=dev-qt/qtwidgets-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 media-gfx/exiv2:= >=sci-libs/gdal-3.0.4:=[geos] sci-libs/geos sci-libs/libspatialindex:= >=sci-libs/proj-6.3.1:= >=x11-libs/qscintilla-2.10.1:=[qt5(+)] >=x11-libs/qwt-6.1.2:6=[qt5(+),svg] 3d? ( >=dev-qt/qt3d-5.9.4:5 ) georeferencer? ( sci-libs/gsl:= ) grass? ( =sci-geosciences/grass-7*:= ) hdf5? ( sci-libs/hdf5:= ) mapserver? ( dev-libs/fcgi ) netcdf? ( sci-libs/netcdf:= ) opencl? ( virtual/opencl ) oracle? ( dev-db/oracle-instantclient:= sci-libs/gdal:=[oracle] ) polar? ( >=x11-libs/qwtpolar-1.1.1-r1[qt5(+)] ) postgres? ( dev-db/postgresql:= ) python? ( 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/httplib2[python_targets_python3_6(-)] dev-python/jinja[python_targets_python3_6(-)] dev-python/markupsafe[python_targets_python3_6(-)] dev-python/owslib[python_targets_python3_6(-)] dev-python/pygments[python_targets_python3_6(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] dev-python/pytz[python_targets_python3_6(-)] dev-python/pyyaml[python_targets_python3_6(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_6(-)] dev-python/requests[python_targets_python3_6(-)] dev-python/sip:=[python_targets_python3_6(-)] dev-python/six[python_targets_python3_6(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_6(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-python/httplib2[python_targets_python3_7(-)] dev-python/jinja[python_targets_python3_7(-)] dev-python/markupsafe[python_targets_python3_7(-)] dev-python/owslib[python_targets_python3_7(-)] dev-python/pygments[python_targets_python3_7(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] dev-python/pytz[python_targets_python3_7(-)] dev-python/pyyaml[python_targets_python3_7(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] dev-python/sip:=[python_targets_python3_7(-)] dev-python/six[python_targets_python3_7(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/httplib2[python_targets_python3_8(-)] dev-python/jinja[python_targets_python3_8(-)] dev-python/markupsafe[python_targets_python3_8(-)] dev-python/owslib[python_targets_python3_8(-)] dev-python/pygments[python_targets_python3_8(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] dev-python/pytz[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] dev-python/sip:=[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_8(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) ) ) qml? ( >=dev-qt/qtdeclarative-5.9.4:5 ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) >=dev-qt/qttest-5.9.4:5 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=User friendly Geographic Information System -EAPI=7 -HOMEPAGE=https://www.qgis.org/ -IUSE=3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle polar postgres python qml webkit python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ GPL-3+ -RDEPEND=app-crypt/qca:2[qt5(+),ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 dev-libs/expat dev-libs/libzip:= dev-libs/qtkeychain[qt5(+)] >=dev-qt/designer-5.9.4:5 >=dev-qt/qtconcurrent-5.9.4:5 >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtgui-5.9.4:5 >=dev-qt/qtnetwork-5.9.4:5[ssl] >=dev-qt/qtpositioning-5.9.4:5 >=dev-qt/qtprintsupport-5.9.4:5 >=dev-qt/qtserialport-5.9.4:5 >=dev-qt/qtsvg-5.9.4:5 >=dev-qt/qtsql-5.9.4:5 >=dev-qt/qtwidgets-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 media-gfx/exiv2:= >=sci-libs/gdal-3.0.4:=[geos] sci-libs/geos sci-libs/libspatialindex:= >=sci-libs/proj-6.3.1:= >=x11-libs/qscintilla-2.10.1:=[qt5(+)] >=x11-libs/qwt-6.1.2:6=[qt5(+),svg] 3d? ( >=dev-qt/qt3d-5.9.4:5 ) georeferencer? ( sci-libs/gsl:= ) grass? ( =sci-geosciences/grass-7*:= ) hdf5? ( sci-libs/hdf5:= ) mapserver? ( dev-libs/fcgi ) netcdf? ( sci-libs/netcdf:= ) opencl? ( virtual/opencl ) oracle? ( dev-db/oracle-instantclient:= sci-libs/gdal:=[oracle] ) polar? ( >=x11-libs/qwtpolar-1.1.1-r1[qt5(+)] ) postgres? ( dev-db/postgresql:= ) python? ( 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/httplib2[python_targets_python3_6(-)] dev-python/jinja[python_targets_python3_6(-)] dev-python/markupsafe[python_targets_python3_6(-)] dev-python/owslib[python_targets_python3_6(-)] dev-python/pygments[python_targets_python3_6(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] dev-python/pytz[python_targets_python3_6(-)] dev-python/pyyaml[python_targets_python3_6(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_6(-)] dev-python/requests[python_targets_python3_6(-)] dev-python/sip:=[python_targets_python3_6(-)] dev-python/six[python_targets_python3_6(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_6(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-python/httplib2[python_targets_python3_7(-)] dev-python/jinja[python_targets_python3_7(-)] dev-python/markupsafe[python_targets_python3_7(-)] dev-python/owslib[python_targets_python3_7(-)] dev-python/pygments[python_targets_python3_7(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] dev-python/pytz[python_targets_python3_7(-)] dev-python/pyyaml[python_targets_python3_7(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] dev-python/sip:=[python_targets_python3_7(-)] dev-python/six[python_targets_python3_7(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/httplib2[python_targets_python3_8(-)] dev-python/jinja[python_targets_python3_8(-)] dev-python/markupsafe[python_targets_python3_8(-)] dev-python/owslib[python_targets_python3_8(-)] dev-python/pygments[python_targets_python3_8(-)] dev-python/PyQt5[designer,network,sql,svg,webkit?,python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] dev-python/pytz[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] >=dev-python/qscintilla-python-2.10.1[qt5(+),python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] dev-python/sip:=[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_8(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) ) ) qml? ( >=dev-qt/qtdeclarative-5.9.4:5 ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) sci-geosciences/gpsbabel -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) mapserver? ( python ) -RESTRICT=test -SLOT=0 -SRC_URI=https://qgis.org/downloads/qgis-3.10.9.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3289275cba3662616c2f584c0bb96ec3 diff --git a/metadata/md5-cache/sci-geosciences/qgis-3.16.0-r1 b/metadata/md5-cache/sci-geosciences/qgis-3.16.0-r1 index 6bd4cee1e32e..2aa550bf0794 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-3.16.0-r1 +++ b/metadata/md5-cache/sci-geosciences/qgis-3.16.0-r1 @@ -5,7 +5,7 @@ DESCRIPTION=User friendly Geographic Information System EAPI=7 HOMEPAGE=https://www.qgis.org/en/site/ IUSE=3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle polar postgres python qml python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ GPL-3+ RDEPEND=>=app-crypt/qca-2.3.0:2[ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 dev-libs/expat dev-libs/libzip:= dev-libs/protobuf:= dev-libs/qtkeychain:= dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtpositioning:5 dev-qt/qtprintsupport:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/exiv2:= >=sci-libs/gdal-3.0.4:=[geos] sci-libs/geos sci-libs/libspatialindex:= >=sci-libs/proj-6.3.1:= sys-libs/zlib >=x11-libs/qscintilla-2.10.3:= >=x11-libs/qwt-6.1.3-r2:6=[svg] 3d? ( dev-qt/qt3d:5 ) georeferencer? ( sci-libs/gsl:= ) grass? ( =sci-geosciences/grass-7*:= ) hdf5? ( sci-libs/hdf5:= ) mapserver? ( dev-libs/fcgi ) netcdf? ( sci-libs/netcdf:= ) opencl? ( virtual/opencl ) oracle? ( dev-db/oracle-instantclient:= sci-libs/gdal:=[oracle] ) polar? ( >=x11-libs/qwtpolar-1.1.1-r2 ) postgres? ( dev-db/postgresql:= ) python? ( 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_7? ( dev-python/httplib2[python_targets_python3_7(-)] dev-python/jinja[python_targets_python3_7(-)] dev-python/markupsafe[python_targets_python3_7(-)] dev-python/owslib[python_targets_python3_7(-)] dev-python/pygments[python_targets_python3_7(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] dev-python/pytz[python_targets_python3_7(-)] dev-python/pyyaml[python_targets_python3_7(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] dev-python/sip:=[python_targets_python3_7(-)] dev-python/six[python_targets_python3_7(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/httplib2[python_targets_python3_8(-)] dev-python/jinja[python_targets_python3_8(-)] dev-python/markupsafe[python_targets_python3_8(-)] dev-python/owslib[python_targets_python3_8(-)] dev-python/pygments[python_targets_python3_8(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] dev-python/pytz[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] dev-python/sip:=[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_8(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/httplib2[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] dev-python/markupsafe[python_targets_python3_9(-)] dev-python/owslib[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_9(-)] dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/pytz[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] dev-python/sip:=[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_9(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) ) ) qml? ( dev-qt/qtdeclarative:5 ) sci-geosciences/gpsbabel REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) mapserver? ( python ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://qgis.org/downloads/qgis-3.16.0.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7e6c7d359c3710d701300377df9031a1 +_md5_=a086cf10991c4ce3ed9ad34a24439943 diff --git a/metadata/md5-cache/sci-geosciences/qgis-9999 b/metadata/md5-cache/sci-geosciences/qgis-9999 index 1b96a5aaf414..0797f1156026 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-9999 +++ b/metadata/md5-cache/sci-geosciences/qgis-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 RESTRICT=test SLOT=0 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=08d0a7fca5475bf8460cff9541ce6d41 +_md5_=a0de8a0e00feae07cd25c0410301bd52 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 2530b05be0c9..277031f15075 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/libaec-1.0.4 b/metadata/md5-cache/sci-libs/libaec-1.0.4 index 55dd61969d60..0bdc7c5a21b7 100644 --- a/metadata/md5-cache/sci-libs/libaec-1.0.4 +++ b/metadata/md5-cache/sci-libs/libaec-1.0.4 @@ -4,10 +4,10 @@ DESCRIPTION=Adaptive Entropy Coding library EAPI=7 HOMEPAGE=https://gitlab.dkrz.de/k202009/libaec IUSE=+szip -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux LICENSE=BSD-2 RDEPEND=szip? ( !sci-libs/szip ) SLOT=0/2 SRC_URI=https://gitlab.dkrz.de/k202009/libaec/-/archive/v1.0.4/libaec-v1.0.4.tar.gz -> libaec-1.0.4.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=42f8bec273899b3e755b082d73016a04 +_md5_=7d7ecf6f079764d1e426df2560e7e64b diff --git a/metadata/md5-cache/sci-libs/scikit-image-0.17.2 b/metadata/md5-cache/sci-libs/scikit-image-0.17.2 index 6bb86618120a..e41a736669bd 100644 --- a/metadata/md5-cache/sci-libs/scikit-image-0.17.2 +++ b/metadata/md5-cache/sci-libs/scikit-image-0.17.2 @@ -1,15 +1,15 @@ -BDEPEND=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(-)] +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 prepare test -DEPEND=dev-python/imageio[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/networkx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pywavelets[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/scipy[sparse,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] 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(-)] +DEPEND=dev-python/imageio[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/matplotlib[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/networkx[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/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/pywavelets[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/scipy[sparse,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/cython[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[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=Image processing routines for SciPy EAPI=7 HOMEPAGE=https://scikit-image.org/ -IUSE=python_targets_python3_6 python_targets_python3_7 +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=dev-python/imageio[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/networkx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pywavelets[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/scipy[sparse,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(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) +RDEPEND=dev-python/imageio[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/matplotlib[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/networkx[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/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/pywavelets[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/scipy[sparse,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(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/s/scikit-image/scikit-image-0.17.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fa6d848b13bddbaa58d8be02ae677271 +_md5_=948fa657a91924e2cef6ea170bc47796 diff --git a/metadata/md5-cache/sci-libs/shapely-1.7.1 b/metadata/md5-cache/sci-libs/shapely-1.7.1 index 68d9e3e935dc..c6b07946fba6 100644 --- a/metadata/md5-cache/sci-libs/shapely-1.7.1 +++ b/metadata/md5-cache/sci-libs/shapely-1.7.1 @@ -4,7 +4,7 @@ DESCRIPTION=Geometric objects, predicates, and operations EAPI=7 HOMEPAGE=https://pypi.org/project/Shapely/ https://github.com/Toblerity/Shapely IUSE=test doc python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=BSD RDEPEND=dev-python/numpy[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(-)] >=sci-libs/geos-3.3 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_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( 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/Toblerity/Shapely/archive/1.7.1.tar.gz -> shapely-1.7.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b0786592f7e0959642ecd4f404670acb +_md5_=06c62baf15ef9af7b972d4c28e84ff5d diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz index 5c43b8c6616b..be72efd0353f 100644 Binary files a/metadata/md5-cache/sci-physics/Manifest.gz and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/clhep-2.2.0.5 b/metadata/md5-cache/sci-physics/clhep-2.2.0.5 deleted file mode 100644 index dd1a17effefe..000000000000 --- a/metadata/md5-cache/sci-physics/clhep-2.2.0.5 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=doc? ( virtual/latex-base ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=High Energy Physics C++ library -EAPI=7 -HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ -IUSE=doc static-libs test -KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~x64-macos -LICENSE=GPL-3 LGPL-3 -RESTRICT=!test? ( test ) -SLOT=2/2.2.0.5 -SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/clhep-2.2.0.5.tgz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f0455eb5af79f17febebb6e76ad39078 diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.0.4 b/metadata/md5-cache/sci-physics/clhep-2.4.0.4 deleted file mode 100644 index c5024ba67544..000000000000 --- a/metadata/md5-cache/sci-physics/clhep-2.4.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=High Energy Physics C++ library -EAPI=7 -HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ -IUSE=doc test threads -KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos -LICENSE=GPL-3 LGPL-3 -RESTRICT=!test? ( test ) -SLOT=2/2.4.0.4 -SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/clhep-2.4.0.4.tgz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4606688e81ce5b35cba06dd31d023ae3 diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.1.2 b/metadata/md5-cache/sci-physics/clhep-2.4.1.2 deleted file mode 100644 index 67e9692073b9..000000000000 --- a/metadata/md5-cache/sci-physics/clhep-2.4.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=High Energy Physics C++ library -EAPI=7 -HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ -IUSE=doc test threads -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos -LICENSE=GPL-3 LGPL-3 -RESTRICT=!test? ( test ) -SLOT=2/2.4.1.2 -SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.1.2.tgz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5a7c73b26c76c95a9e70521f3547c94e diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r1 b/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r1 deleted file mode 100644 index c1e3f7d4d6f5..000000000000 --- a/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=High Energy Physics C++ library -EAPI=7 -HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ -IUSE=doc test threads -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos -LICENSE=GPL-3 LGPL-3 -RESTRICT=!test? ( test ) -SLOT=2/2.4.1.3 -SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.1.3.tgz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0e4da822f32b45a3ab4965ed100b3659 diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r2 b/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r2 new file mode 100644 index 000000000000..3f906cea80e4 --- /dev/null +++ b/metadata/md5-cache/sci-physics/clhep-2.4.1.3-r2 @@ -0,0 +1,13 @@ +BDEPEND=doc? ( app-doc/doxygen dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=High Energy Physics C++ library +EAPI=7 +HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ +IUSE=doc test threads +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~x64-macos +LICENSE=GPL-3 LGPL-3 +RESTRICT=!test? ( test ) +SLOT=2/2.4.1.3 +SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.1.3.tgz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=6884429d485c11c3a303f9f18b83246e diff --git a/metadata/md5-cache/sci-physics/clhep-2.4.4.0 b/metadata/md5-cache/sci-physics/clhep-2.4.4.0 new file mode 100644 index 000000000000..fcacaed3c9d6 --- /dev/null +++ b/metadata/md5-cache/sci-physics/clhep-2.4.4.0 @@ -0,0 +1,13 @@ +BDEPEND=doc? ( app-doc/doxygen dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=High Energy Physics C++ library +EAPI=7 +HOMEPAGE=http://proj-clhep.web.cern.ch/proj-clhep/ +IUSE=doc test threads +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos +LICENSE=GPL-3 LGPL-3 +RESTRICT=!test? ( test ) +SLOT=2/2.4.4.0 +SRC_URI=http://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-2.4.4.0.tgz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=2da5c9b83fc76c8d898d984c256a754f diff --git a/metadata/md5-cache/sci-physics/geant-4.10.05_p01 b/metadata/md5-cache/sci-physics/geant-4.10.05_p01 deleted file mode 100644 index d38bbccdc406..000000000000 --- a/metadata/md5-cache/sci-physics/geant-4.10.05_p01 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-libs/expat >=sci-physics/clhep-2.3.3.0:2= dawn? ( media-gfx/dawn ) gdml? ( dev-libs/xerces-c ) inventor? ( media-libs/SoXt ) motif? ( x11-libs/motif:0 ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) raytracerx? ( x11-libs/libX11 x11-libs/libXmu ) zlib? ( sys-libs/zlib ) prefix? ( app-shells/tcsh ) sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Toolkit for simulation of passage of particles through matter -EAPI=6 -HOMEPAGE=http://geant4.web.cern.ch/ -IUSE=+data dawn doc examples gdml geant3 inventor motif opengl qt5 raytracerx static-libs threads vrml zlib -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -PDEPEND=data? ( ~sci-physics/geant-data-4.10.05 ) doc? ( ~app-doc/geant-docs-4.10.05 ) -RDEPEND=dev-libs/expat >=sci-physics/clhep-2.3.3.0:2= dawn? ( media-gfx/dawn ) gdml? ( dev-libs/xerces-c ) inventor? ( media-libs/SoXt ) motif? ( x11-libs/motif:0 ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) raytracerx? ( x11-libs/libX11 x11-libs/libXmu ) zlib? ( sys-libs/zlib ) -SLOT=4 -SRC_URI=http://geant4.cern.ch/support/source/geant4.10.05.p01.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c9aa58fcb6dc487247cb1dedf8bb7ed6 diff --git a/metadata/md5-cache/sci-physics/geant-4.10.6.3 b/metadata/md5-cache/sci-physics/geant-4.10.6.3 new file mode 100644 index 000000000000..e47128212511 --- /dev/null +++ b/metadata/md5-cache/sci-physics/geant-4.10.6.3 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Toolkit for simulation of passage of particles through matter +EAPI=7 +HOMEPAGE=https://geant4.web.cern.ch/ +IUSE=+c++11 c++14 c++17 +data dawn doc examples freetype gdml geant3 hdf5 inventor motif opengl qt5 raytracerx static-libs threads vrml +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=geant4 +RDEPEND=dev-libs/expat >=sci-physics/clhep-2.4.1.3:2=[threads?] data? ( ~sci-physics/geant-data-4.10.6.3 ) dawn? ( media-gfx/dawn ) doc? ( =app-doc/geant-docs-4.10.6* ) gdml? ( dev-libs/xerces-c ) hdf5? ( sci-libs/hdf5[threads?] ) inventor? ( media-libs/SoXt ) motif? ( x11-libs/motif:0 ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) raytracerx? ( x11-libs/libX11 x11-libs/libXmu ) +REQUIRED_USE=^^ ( c++11 c++14 c++17 ) +SLOT=4 +SRC_URI=https://geant4-data.web.cern.ch/geant4-data/releases/geant4.10.06.p03.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=25abac0455ce7d1bd438a648a9588ec6 diff --git a/metadata/md5-cache/sci-physics/geant-4.10.6_beta1-r1 b/metadata/md5-cache/sci-physics/geant-4.10.6_beta1-r1 deleted file mode 100644 index c31dbc649164..000000000000 --- a/metadata/md5-cache/sci-physics/geant-4.10.6_beta1-r1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Toolkit for simulation of passage of particles through matter -EAPI=7 -HOMEPAGE=https://geant4.web.cern.ch/ -IUSE=+c++11 c++14 c++17 +data dawn doc examples freetype gdml geant3 hdf5 inventor motif opengl qt5 raytracerx static-libs threads vrml -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -RDEPEND=dev-libs/expat >=sci-physics/clhep-2.4.1.3:2=[threads?] data? ( ~sci-physics/geant-data-4.10.6_beta1 ) dawn? ( media-gfx/dawn ) doc? ( ~app-doc/geant-docs-4.10.6 ) gdml? ( dev-libs/xerces-c ) hdf5? ( sci-libs/hdf5[threads?] ) inventor? ( media-libs/SoXt ) motif? ( x11-libs/motif:0 ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) raytracerx? ( x11-libs/libX11 x11-libs/libXmu ) -REQUIRED_USE=^^ ( c++11 c++14 c++17 ) -SLOT=4 -SRC_URI=https://geant4-data.web.cern.ch/geant4-data/releases/geant4.10.06.b01.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c8502a738676402d09eebd3740126e60 diff --git a/metadata/md5-cache/sci-physics/geant-data-4.10.05 b/metadata/md5-cache/sci-physics/geant-data-4.10.05 deleted file mode 100644 index 70046c308514..000000000000 --- a/metadata/md5-cache/sci-physics/geant-data-4.10.05 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install unpack -DEPEND=>=sci-physics/geant-4.10.05:4 -DESCRIPTION=Data files for Geant4 physical processes -EAPI=6 -HOMEPAGE=http://geant4.cern.ch/ -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -RDEPEND=>=sci-physics/geant-4.10.05:4 -SLOT=4 -SRC_URI=http://geant4.cern.ch/support/source/G4NDL.4.5.tar.gz http://geant4.cern.ch/support/source/G4EMLOW.7.7.tar.gz http://geant4.cern.ch/support/source/G4PhotonEvaporation.5.3.tar.gz http://geant4.cern.ch/support/source/G4RadioactiveDecay.5.3.tar.gz http://geant4.cern.ch/support/source/G4SAIDDATA.2.0.tar.gz http://geant4.cern.ch/support/source/G4PARTICLEXS.1.1.tar.gz http://geant4.cern.ch/support/source/G4ABLA.3.1.tar.gz http://geant4.cern.ch/support/source/G4INCL.1.0.tar.gz http://geant4.cern.ch/support/source/G4PII.1.3.tar.gz http://geant4.cern.ch/support/source/G4ENSDFSTATE.2.2.tar.gz http://geant4.cern.ch/support/source/G4RealSurface.2.1.1.tar.gz http://geant4.cern.ch/support/source/G4TENDL.1.3.2.tar.gz -_md5_=0a6137f7fff420d9189aa552613f6490 diff --git a/metadata/md5-cache/sci-physics/geant-data-4.10.6-r1 b/metadata/md5-cache/sci-physics/geant-data-4.10.6-r1 index f53b1521c527..40b92498063c 100644 --- a/metadata/md5-cache/sci-physics/geant-data-4.10.6-r1 +++ b/metadata/md5-cache/sci-physics/geant-data-4.10.6-r1 @@ -2,8 +2,8 @@ DEFINED_PHASES=install unpack DESCRIPTION=Data files for Geant4 physical processes EAPI=7 HOMEPAGE=https://geant4.web.cern.ch -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=geant4 SLOT=4 SRC_URI=https://geant4-data.web.cern.ch/geant4-data/datasets/G4ENSDFSTATE.2.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.3.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4EMLOW.7.9.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4INCL.1.0.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4NDL.4.6.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RadioactiveDecay.5.4.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4TENDL.1.3.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RealSurface.2.1.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PII.1.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PARTICLEXS.2.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PhotonEvaporation.5.5.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4SAIDDATA.2.0.tar.gz -_md5_=46193dfe861e95cd2e1e087d1133aa32 +_md5_=52521c08ed620fee1e950d254134d85a diff --git a/metadata/md5-cache/sci-physics/geant-data-4.10.6.3 b/metadata/md5-cache/sci-physics/geant-data-4.10.6.3 new file mode 100644 index 000000000000..213aaf299e8b --- /dev/null +++ b/metadata/md5-cache/sci-physics/geant-data-4.10.6.3 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=Data files for Geant4 physical processes +EAPI=7 +HOMEPAGE=https://geant4.web.cern.ch +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux +LICENSE=geant4 +SLOT=4 +SRC_URI=https://geant4-data.web.cern.ch/geant4-data/datasets/G4ENSDFSTATE.2.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.3.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4EMLOW.7.9.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4INCL.1.0.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4NDL.4.6.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RadioactiveDecay.5.4.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4TENDL.1.3.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RealSurface.2.1.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PII.1.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PARTICLEXS.2.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PhotonEvaporation.5.5.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4SAIDDATA.2.0.tar.gz +_md5_=aef692c300514d66b934f6349b500e34 diff --git a/metadata/md5-cache/sci-physics/geant-data-4.10.6_beta1-r1 b/metadata/md5-cache/sci-physics/geant-data-4.10.6_beta1-r1 deleted file mode 100644 index a7ae64a0f405..000000000000 --- a/metadata/md5-cache/sci-physics/geant-data-4.10.6_beta1-r1 +++ /dev/null @@ -1,9 +0,0 @@ -DEFINED_PHASES=install unpack -DESCRIPTION=Data files for Geant4 physical processes -EAPI=7 -HOMEPAGE=https://geant4.web.cern.ch -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux -LICENSE=geant4 -SLOT=4 -SRC_URI=https://geant4-data.web.cern.ch/geant4-data/datasets/G4ENSDFSTATE.2.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.3.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4EMLOW.7.7.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4INCL.1.0.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4NDL.4.5.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RadioactiveDecay.5.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4TENDL.1.3.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RealSurface.2.1.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PII.1.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PARTICLEXS.2.0.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PhotonEvaporation.5.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4SAIDDATA.2.0.tar.gz -_md5_=f3412e4390955a761f42871f776b7596 diff --git a/metadata/md5-cache/sci-physics/geant-data-4.10.6_p1-r1 b/metadata/md5-cache/sci-physics/geant-data-4.10.6_p1-r1 index 0530b6793341..213aaf299e8b 100644 --- a/metadata/md5-cache/sci-physics/geant-data-4.10.6_p1-r1 +++ b/metadata/md5-cache/sci-physics/geant-data-4.10.6_p1-r1 @@ -2,8 +2,8 @@ DEFINED_PHASES=install unpack DESCRIPTION=Data files for Geant4 physical processes EAPI=7 HOMEPAGE=https://geant4.web.cern.ch -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=geant4 SLOT=4 SRC_URI=https://geant4-data.web.cern.ch/geant4-data/datasets/G4ENSDFSTATE.2.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.3.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4EMLOW.7.9.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4INCL.1.0.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4NDL.4.6.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RadioactiveDecay.5.4.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4TENDL.1.3.2.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4RealSurface.2.1.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PII.1.3.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PARTICLEXS.2.1.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4PhotonEvaporation.5.5.tar.gz https://geant4-data.web.cern.ch/geant4-data/datasets/G4SAIDDATA.2.0.tar.gz -_md5_=22cee1cc1ec90f8e331e4ee56b70a3d0 +_md5_=aef692c300514d66b934f6349b500e34 diff --git a/metadata/md5-cache/sci-physics/root-6.18.04-r3 b/metadata/md5-cache/sci-physics/root-6.18.04-r3 deleted file mode 100644 index 83421636ff55..000000000000 --- a/metadata/md5-cache/sci-physics/root-6.18.04-r3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=app-arch/lz4 app-arch/xz-utils fortran? ( dev-lang/cfortran ) dev-libs/libpcre:3 dev-libs/xxhash media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0= sys-libs/ncurses:= sys-libs/zlib X? ( x11-libs/libX11:0 x11-libs/libXext:0 x11-libs/libXft:0 x11-libs/libXpm:0 opengl? ( media-libs/ftgl:0= media-libs/glew:0= virtual/opengl virtual/glu x11-libs/gl2ps:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwebengine:5[widgets] ) ) asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) jemalloc? ( dev-libs/jemalloc ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/cmake-3.9.6 fortran? ( virtual/fortran ) -DESCRIPTION=C++ data analysis framework and interpreter from CERN -EAPI=6 -HOMEPAGE=https://root.cern -IUSE=+X aqua +asimage +c++11 c++14 c++17 cuda +davix debug emacs +examples fits fftw fortran +gdml graphviz +gsl http jemalloc libcxx memstat +minuit mysql nosplash odbc +opengl oracle postgres prefix pythia6 pythia8 +python qt5 R +roofit root7 shadow sqlite +ssl +tbb test +threads +tiff +tmva +unuran vc +vmc +xml xrootd python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 freedist MSttfEULA LGPL-3 libpng UoI-NCSA -RDEPEND=app-arch/lz4 app-arch/xz-utils fortran? ( dev-lang/cfortran ) dev-libs/libpcre:3 dev-libs/xxhash media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0= sys-libs/ncurses:= sys-libs/zlib X? ( x11-libs/libX11:0 x11-libs/libXext:0 x11-libs/libXft:0 x11-libs/libXpm:0 opengl? ( media-libs/ftgl:0= media-libs/glew:0= virtual/opengl virtual/glu x11-libs/gl2ps:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwebengine:5[widgets] ) ) asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) jemalloc? ( dev-libs/jemalloc ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( net-libs/xrootd:0= ) virtual/pkgconfig fortran? ( virtual/fortran ) DESCRIPTION=C++ data analysis framework and interpreter from CERN EAPI=7 HOMEPAGE=https://root.cern -IUSE=+X aqua +asimage +c++11 c++14 c++17 cuda cudnn +davix debug emacs +examples fits fftw fortran +gdml graphviz +gsl http libcxx +minuit mpi mysql odbc +opengl oracle postgres prefix pythia6 pythia8 +python qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva +unuran vc vmc +xml xrootd python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +IUSE=+X aqua +asimage +c++11 c++14 c++17 cuda cudnn +davix debug emacs +examples fits fftw fortran +gdml graphviz +gsl http libcxx +minuit mpi mysql odbc +opengl oracle postgres prefix pythia6 pythia8 +python qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva +unuran vc vmc +xml xrootd python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 freedist MSttfEULA LGPL-3 libpng UoI-NCSA -RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortran ) dev-libs/libpcre:3 dev-libs/xxhash media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0= sys-libs/ncurses:= sys-libs/zlib X? ( x11-libs/libX11:0 x11-libs/libXext:0 x11-libs/libXft:0 x11-libs/libXpm:0 opengl? ( media-libs/ftgl:0= media-libs/glew:0= virtual/opengl virtual/glu x11-libs/gl2ps:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwebengine:5[widgets] ) ) asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( =dev-util/nvidia-cuda-toolkit-9.0 ) cudnn? ( dev-libs/cudnn ) davix? ( net-libs/davix ) emacs? ( >=app-editors/emacs-23.1:* ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:0= ) graphviz? ( media-gfx/graphviz ) gsl? ( sci-libs/gsl:= ) http? ( dev-libs/fcgi:0= ) libcxx? ( sys-libs/libcxx ) unuran? ( sci-mathematics/unuran:0= ) minuit? ( !sci-libs/minuit ) mpi? ( virtual/mpi ) mysql? ( dev-db/mysql-connector-c ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) oracle? ( dev-db/oracle-instantclient-basic ) postgres? ( dev-db/postgresql:= ) pythia6? ( sci-physics/pythia:6 ) pythia8? ( sci-physics/pythia:8 ) 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] ) ) R? ( dev-lang/R ) shadow? ( sys-apps/shadow ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:0= ) tbb? ( >=dev-cpp/tbb-2018 ) tmva? ( python_single_target_python3_6? ( dev-python/numpy[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/numpy[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/numpy[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/numpy[python_targets_python3_9(-)] ) ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) xrootd? ( net-libs/xrootd:0= ) fortran? ( virtual/fortran ) +REQUIRED_USE=^^ ( c++11 c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) qt5? ( root7 ) root7? ( || ( c++14 c++17 ) ) tmva? ( gsl ) RESTRICT=!test? ( test ) -SLOT=6.20/06 -SRC_URI=https://root.cern/download/root_v6.20.06.source.tar.gz +SLOT=6.22/04 +SRC_URI=https://root.cern/download/root_v6.22.04.source.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cuda c2f1b334711bbbf2130f339636dc7515 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=dd40366ee8a9079e0dda3226be544789 +_md5_=bbefa6d989788d6b08c477b59fd8b596 diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 735463859c62..8d14f652be27 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/dbus-1.12.20 b/metadata/md5-cache/sys-apps/dbus-1.12.20 index c2de803e0bc9..66edbc22e9d8 100644 --- a/metadata/md5-cache/sys-apps/dbus-1.12.20 +++ b/metadata/md5-cache/sys-apps/dbus-1.12.20 @@ -5,7 +5,7 @@ DESCRIPTION=A message bus system, a simple way for applications to talk to each EAPI=7 HOMEPAGE=https://dbus.freedesktop.org/ IUSE=debug doc elogind kernel_linux selinux static-libs systemd test user-session X kernel_linux 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 ~m68k ~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 ~m68k ~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=|| ( AFL-2.1 GPL-2 ) RDEPEND=>=dev-libs/expat-2.1.0 elogind? ( sys-auth/elogind ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd:0= ) X? ( x11-libs/libX11 x11-libs/libXt ) acct-user/messagebus selinux? ( sec-policy/selinux-dbus ) REQUIRED_USE=?? ( elogind systemd ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dbus.freedesktop.org/releases/dbus/dbus-1.12.20.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=0d1c2549aa8196f4c7ea6120925e494b +_md5_=94cdfa10688fc511be6fd43ca3450266 diff --git a/metadata/md5-cache/sys-apps/gentoo-functions-0.14 b/metadata/md5-cache/sys-apps/gentoo-functions-0.14 new file mode 100644 index 000000000000..6b679b02a2d6 --- /dev/null +++ b/metadata/md5-cache/sys-apps/gentoo-functions-0.14 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure +DESCRIPTION=base functions required by all Gentoo systems +EAPI=7 +HOMEPAGE=https://gitweb.gentoo.org/proj/gentoo-functions.git +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 ~x86-winnt +LICENSE=GPL-2 +SLOT=0 +SRC_URI=https://gitweb.gentoo.org/proj/gentoo-functions.git/snapshot/gentoo-functions-0.14.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=ab2f9b2411619bb38d07621ae24bb842 diff --git a/metadata/md5-cache/sys-apps/less-551 b/metadata/md5-cache/sys-apps/less-551 deleted file mode 100644 index 29ed588d7f85..000000000000 --- a/metadata/md5-cache/sys-apps/less-551 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install preinst -DEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -DESCRIPTION=Excellent text file viewer -EAPI=7 -HOMEPAGE=http://www.greenwoodsoftware.com/less/ -IUSE=pcre unicode -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=|| ( GPL-3 BSD-2 ) -RDEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -SLOT=0 -SRC_URI=http://www.greenwoodsoftware.com/less/less-551.tar.gz -_md5_=7588d8876eb64cf0f7a61e0024f82b32 diff --git a/metadata/md5-cache/sys-apps/less-562 b/metadata/md5-cache/sys-apps/less-562 deleted file mode 100644 index 3dd30f658586..000000000000 --- a/metadata/md5-cache/sys-apps/less-562 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install preinst -DEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -DESCRIPTION=Excellent text file viewer -EAPI=7 -HOMEPAGE=http://www.greenwoodsoftware.com/less/ -IUSE=pcre unicode -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=|| ( GPL-3 BSD-2 ) -RDEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -SLOT=0 -SRC_URI=http://www.greenwoodsoftware.com/less/less-562.tar.gz -_md5_=0913442a44d0beec1821151708372026 diff --git a/metadata/md5-cache/sys-apps/less-563 b/metadata/md5-cache/sys-apps/less-563 deleted file mode 100644 index c5fd8b49b89d..000000000000 --- a/metadata/md5-cache/sys-apps/less-563 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install preinst -DEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -DESCRIPTION=Excellent text file viewer -EAPI=7 -HOMEPAGE=http://www.greenwoodsoftware.com/less/ -IUSE=pcre unicode -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=|| ( GPL-3 BSD-2 ) -RDEPEND=>=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= pcre? ( dev-libs/libpcre2 ) -SLOT=0 -SRC_URI=http://www.greenwoodsoftware.com/less/less-563.tar.gz -_md5_=0913442a44d0beec1821151708372026 diff --git a/metadata/md5-cache/sys-apps/portage-3.0.9 b/metadata/md5-cache/sys-apps/portage-3.0.9 index 28a7c84cf4f2..d4be107332e4 100644 --- a/metadata/md5-cache/sys-apps/portage-3.0.9 +++ b/metadata/md5-cache/sys-apps/portage-3.0.9 @@ -5,7 +5,7 @@ DESCRIPTION=Portage is the package management and distribution system for Gentoo EAPI=7 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage IUSE=apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 kernel_linux -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=GPL-2 PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) RDEPEND=app-arch/zstd >=app-arch/tar-1.27 dev-lang/python-exec:2 >=sys-apps/findutils-4.4 !build? ( >=sys-apps/sed-4.0.5 app-shells/bash:0[readline] >=app-admin/eselect-1.2 rsync-verify? ( >=app-portage/gemato-14.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(-)] >=app-crypt/openpgp-keys-gentoo-release-20180706 >=app-crypt/gnupg-2.2.4-r2[ssl(-)] ) ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_musl? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) kernel_linux? ( sys-apps/util-linux ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,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(-)] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 ) ) !=dev-python/pypy3-7.3.0:0=[bzip2(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[bzip2(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[bzip2(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[bzip2(+),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(-)] virtual/tmpfiles @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gentoo/portage-3.0.9.tar.bz2 https://dev.gentoo.org/~zmedico/portage/archives/portage-3.0.9.tar.bz2 _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 prefix c2993e4c430c1ee24f278983d6189501 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2021e0513d2104d23f088e3441c5bcf7 +_md5_=edf3d6eb9a02926006915b3135815dcc diff --git a/metadata/md5-cache/sys-apps/sysvinit-2.97 b/metadata/md5-cache/sys-apps/sysvinit-2.97 index 162b68e04e36..4e5ce891a4f3 100644 --- a/metadata/md5-cache/sys-apps/sysvinit-2.97 +++ b/metadata/md5-cache/sys-apps/sysvinit-2.97 @@ -4,10 +4,10 @@ DESCRIPTION=/sbin/init - parent of all processes EAPI=7 HOMEPAGE=https://savannah.nongnu.org/projects/sysvinit IUSE=selinux ibm static kernel_FreeBSD -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 LICENSE=GPL-2 RDEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) selinux? ( sec-policy/selinux-shutdown ) ! unetbootin-661.tar.gz https://dev.gentoo.org/~asturm/distfiles/unetbootin-661-qt5.patch.tar.xz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=41c5acd970639d82f79dfe2d8329f063 diff --git a/metadata/md5-cache/sys-boot/unetbootin-700 b/metadata/md5-cache/sys-boot/unetbootin-700 index 7f979cb149d5..daa64da06257 100644 --- a/metadata/md5-cache/sys-boot/unetbootin-700 +++ b/metadata/md5-cache/sys-boot/unetbootin-700 @@ -5,10 +5,10 @@ DESCRIPTION=UNetbootin installs Linux/BSD distributions to a partition or USB dr EAPI=7 HOMEPAGE=https://github.com/unetbootin/unetbootin IUSE=l10n_am l10n_ar l10n_ast l10n_be l10n_bg l10n_bn l10n_ca l10n_cs l10n_da l10n_de l10n_el l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fo l10n_fr l10n_gl l10n_he l10n_hr l10n_hu l10n_id l10n_it l10n_ja l10n_lt l10n_lv l10n_ml l10n_ms l10n_nan l10n_nb l10n_nl l10n_nn l10n_pl l10n_pt-BR l10n_pt l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_sr l10n_sv l10n_sw l10n_tr l10n_uk l10n_ur l10n_vi l10n_zh-CN l10n_zh-TW -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 app-arch/p7zip sys-boot/syslinux sys-fs/mtools SLOT=0 SRC_URI=https://github.com/unetbootin/unetbootin/archive/700.tar.gz -> unetbootin-700.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=454a3ac624818b90b787f3bcbce3805b +_md5_=bc7864837270fc385657e11c815da0b9 diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index e58d08de41bb..f39a40161a75 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/ceph-12.2.12-r3 b/metadata/md5-cache/sys-cluster/ceph-12.2.12-r3 deleted file mode 100644 index 64066b3f29d5..000000000000 --- a/metadata/md5-cache/sys-cluster/ceph-12.2.12-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare pretend setup test -DEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-misc/jq:= =dev-util/google-perftools-2.4:= ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] app-arch/cpio amd64? ( dev-lang/yasm ) x86? ( dev-lang/yasm ) dev-python/cython[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-python/sphinx dev-util/gperf dev-util/valgrind sys-apps/which sys-devel/bc virtual/pkgconfig test? ( dev-python/virtualenv[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] sys-apps/grep[pcre] sys-fs/btrfs-progs ) -DESCRIPTION=Ceph distributed filesystem -EAPI=7 -HOMEPAGE=https://ceph.com/ -IUSE=babeltrace cephfs fuse jemalloc ldap lttng +mgr nss +radosgw +ssl +system-boost systemd +tcmalloc test xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python3_6 -LICENSE=LGPL-2.1 CC-BY-SA-3.0 GPL-2 BSD Boost-1.0 MIT -RDEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-misc/jq:= =dev-util/google-perftools-2.4:= ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] net-misc/socat sys-apps/gptfdisk sys-block/parted sys-fs/e2fsprogs sys-fs/cryptsetup sys-fs/lvm2 !=dev-util/cmake-3.5.0 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/sphinx dev-util/cunit dev-util/gperf dev-util/ragel dev-util/valgrind sys-apps/coreutils sys-apps/findutils sys-apps/grep sys-apps/sed sys-apps/which sys-devel/bc sys-devel/patch virtual/pkgconfig test? ( 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/virtualenv[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/requests-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(-)] sys-apps/grep[pcre] sys-fs/btrfs-progs ) sys-devel/make dev-util/cmake virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare pretend setup test +DEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/rocksdb:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/libaio:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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=Ceph distributed filesystem +EAPI=7 +HOMEPAGE=https://ceph.com/ +IUSE=babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana jemalloc kafka kerberos ldap libressl lttng +mgr numa +openssl rabbitmq +radosgw +ssl spdk system-boost systemd +tcmalloc test xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 +LICENSE=Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 GPL-3 BSD Boost-1.0 MIT public-domain +RDEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/rocksdb:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/libaio:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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(-)] app-admin/sudo net-misc/socat sys-apps/gptfdisk >=sys-apps/smartmontools-7.0 sys-block/parted sys-fs/cryptsetup sys-fs/lsscsi sys-fs/lvm2[-device-mapper-only(-)] virtual/awk dev-python/bcrypt[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/cherrypy[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/flask[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/jinja[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/pecan[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/prettytable[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[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/requests[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/werkzeug[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(-)] mgr? ( dev-python/more-itertools[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/numpy[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/pyjwt[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/pyyaml[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/routes[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(-)] diskprediction? ( python_targets_python3_6? ( =dev-util/cmake-3.5.0 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/sphinx dev-util/cunit dev-util/gperf dev-util/ragel dev-util/valgrind sys-apps/coreutils sys-apps/findutils sys-apps/grep sys-apps/sed sys-apps/which sys-devel/bc sys-devel/patch virtual/pkgconfig test? ( 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/virtualenv[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/requests-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(-)] sys-apps/grep[pcre] sys-fs/btrfs-progs ) sys-devel/make dev-util/cmake virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare pretend setup test -DEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) uring? ( sys-libs/liburing:= ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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=Ceph distributed filesystem -EAPI=7 -HOMEPAGE=https://ceph.com/ -IUSE=babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana jemalloc kafka kerberos ldap libressl lttng +mgr numa +openssl pmdk rabbitmq +radosgw rbd-rwl +ssl spdk system-boost systemd +tcmalloc test uring xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~arm64 ~ppc64 -LICENSE=Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 GPL-3 BSD Boost-1.0 MIT public-domain -RDEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) uring? ( sys-libs/liburing:= ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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(-)] app-admin/sudo net-misc/socat sys-apps/gptfdisk sys-apps/nvme-cli >=sys-apps/smartmontools-7.0 sys-block/parted sys-fs/cryptsetup sys-fs/lsscsi sys-fs/lvm2[-device-mapper-only(-)] virtual/awk dev-python/bcrypt[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/cherrypy[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-dateutil[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/flask[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/jinja[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/pecan[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/prettytable[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[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/requests[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/werkzeug[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(-)] mgr? ( dev-python/jsonpatch[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/more-itertools[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/numpy[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/pyjwt[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/pyyaml[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/routes[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(-)] diskprediction? ( python_targets_python3_6? ( =dev-util/cmake-3.5.0 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/sphinx dev-util/cunit dev-util/gperf dev-util/ragel dev-util/valgrind sys-apps/coreutils sys-apps/findutils sys-apps/grep sys-apps/sed sys-apps/which sys-devel/bc sys-devel/patch virtual/pkgconfig test? ( 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/virtualenv[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/requests-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(-)] sys-apps/grep[pcre] sys-fs/btrfs-progs ) sys-devel/make dev-util/cmake virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare pretend setup test +DEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/rocksdb:= dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) uring? ( sys-libs/liburing:= ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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=Ceph distributed filesystem +EAPI=7 +HOMEPAGE=https://ceph.com/ +IUSE=babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana jemalloc kafka kerberos ldap libressl lttng +mgr numa +openssl pmdk rabbitmq +radosgw rbd-rwl +ssl spdk system-boost systemd +tcmalloc test uring xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 +LICENSE=Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 GPL-3 BSD Boost-1.0 MIT public-domain +RDEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/rocksdb:= dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,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(-)] ) uring? ( sys-libs/liburing:= ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) 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(-)] app-admin/sudo net-misc/socat sys-apps/gptfdisk sys-apps/nvme-cli >=sys-apps/smartmontools-7.0 sys-block/parted sys-fs/cryptsetup sys-fs/lsscsi sys-fs/lvm2[-device-mapper-only(-)] virtual/awk dev-python/bcrypt[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/cherrypy[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-dateutil[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/flask[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/jinja[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/pecan[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/prettytable[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[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/requests[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/werkzeug[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(-)] mgr? ( dev-python/jsonpatch[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/more-itertools[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/numpy[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/pyjwt[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/pyyaml[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/routes[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(-)] diskprediction? ( python_targets_python3_6? ( =dev-lang/go-1.12 app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install postinst unpack +DESCRIPTION=A simple and flexible workload orchestrator +EAPI=7 +HOMEPAGE=https://nomadproject.io +IUSE=nvidia +KEYWORDS=~amd64 +LICENSE=MPL-2.0 +RESTRICT=strip test +SLOT=0 +SRC_URI=https://github.com/hashicorp/nomad/archive/v0.12.8.tar.gz -> nomad-0.12.8.tar.gz +_eclasses_=go-module 92660621959e7fab813173772987588b multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a5d68b971d7c18a45166885c42823004 diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index c0f2a1e90b51..ed4f9094bd63 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/automake-1.16.2-r1 b/metadata/md5-cache/sys-devel/automake-1.16.2-r1 new file mode 100644 index 000000000000..f8b012929617 --- /dev/null +++ b/metadata/md5-cache/sys-devel/automake-1.16.2-r1 @@ -0,0 +1,15 @@ +BDEPEND=app-arch/gzip sys-apps/help2man test? ( || ( dev-lang/python:3.7 dev-lang/python:3.6 ) ) +DEFINED_PHASES=install prepare setup +DEPEND=dev-lang/perl >=sys-devel/automake-wrapper-11 >=sys-devel/autoconf-2.69:* sys-devel/gnuconfig +DESCRIPTION=Used to generate Makefile.in from Makefile.am +EAPI=7 +HOMEPAGE=https://www.gnu.org/software/automake/ +IUSE=test +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=GPL-2 +RDEPEND=dev-lang/perl >=sys-devel/automake-wrapper-11 >=sys-devel/autoconf-2.69:* sys-devel/gnuconfig +RESTRICT=!test? ( test ) +SLOT=1.16 +SRC_URI=mirror://gnu/automake/automake-1.16.2.tar.xz https://alpha.gnu.org/pub/gnu/automake/automake-1.16.2.tar.xz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c87568c535a2aa04b9a614347c54ad1e diff --git a/metadata/md5-cache/sys-devel/automake-1.16.2 b/metadata/md5-cache/sys-devel/automake-1.16.3-r1 similarity index 86% rename from metadata/md5-cache/sys-devel/automake-1.16.2 rename to metadata/md5-cache/sys-devel/automake-1.16.3-r1 index 60f16338e824..97962b4d76eb 100644 --- a/metadata/md5-cache/sys-devel/automake-1.16.2 +++ b/metadata/md5-cache/sys-devel/automake-1.16.3-r1 @@ -10,6 +10,6 @@ LICENSE=GPL-2 RDEPEND=dev-lang/perl >=sys-devel/automake-wrapper-11 >=sys-devel/autoconf-2.69:* sys-devel/gnuconfig RESTRICT=!test? ( test ) SLOT=1.16 -SRC_URI=mirror://gnu/automake/automake-1.16.2.tar.xz https://alpha.gnu.org/pub/gnu/automake/automake-1.16.2.tar.xz +SRC_URI=mirror://gnu/automake/automake-1.16.3.tar.xz https://alpha.gnu.org/pub/gnu/automake/automake-1.16.3.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8c0e5e363d9f6d15c04218b653c8f1e7 +_md5_=22d884d1bed5025a2268087bf89e84c0 diff --git a/metadata/md5-cache/sys-devel/gcc-config-2.3.2 b/metadata/md5-cache/sys-devel/gcc-config-2.3.2-r1 similarity index 86% rename from metadata/md5-cache/sys-devel/gcc-config-2.3.2 rename to metadata/md5-cache/sys-devel/gcc-config-2.3.2-r1 index 21c7c0f014dc..9ddd70d10c9d 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-2.3.2 +++ b/metadata/md5-cache/sys-devel/gcc-config-2.3.2-r1 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install postinst DESCRIPTION=Utility to manage compilers EAPI=7 HOMEPAGE=https://gitweb.gentoo.org/proj/gcc-config.git/ -IUSE=+native-symlinks +IUSE=+cc-wrappers +native-symlinks KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 LICENSE=GPL-2 RDEPEND=>=sys-apps/gentoo-functions-0.10 SLOT=0 SRC_URI=https://dev.gentoo.org/~slyfox/distfiles/gcc-config-2.3.2.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4882c321a1315cd3745e149e77f21e7f +_md5_=7f752f5a5e9b4c99b5dcbdcb2e28383a diff --git a/metadata/md5-cache/sys-devel/gcc-config-9999 b/metadata/md5-cache/sys-devel/gcc-config-9999 index 5d0ed786826e..aaa77869aab8 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-9999 +++ b/metadata/md5-cache/sys-devel/gcc-config-9999 @@ -9,4 +9,4 @@ PROPERTIES=live RDEPEND=>=sys-apps/gentoo-functions-0.10 SLOT=0 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=05c8653528fa62482d64f18e74cc5f02 +_md5_=9282dffcdcf33bb45186aad488afbeae diff --git a/metadata/md5-cache/sys-devel/llvm-roc-3.9.0 b/metadata/md5-cache/sys-devel/llvm-roc-3.9.0 index c8fea75ecda8..b450f772f0a5 100644 --- a/metadata/md5-cache/sys-devel/llvm-roc-3.9.0 +++ b/metadata/md5-cache/sys-devel/llvm-roc-3.9.0 @@ -12,4 +12,4 @@ RDEPEND=virtual/cblas dev-libs/libxml2 sys-libs/zlib sys-libs/ncurses:= SLOT=0 SRC_URI=https://github.com/RadeonOpenCompute/llvm-project/archive/rocm-3.9.0.tar.gz -> llvm-rocm-ocl-3.9.0.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6d8372a2e8ac6ba1aa04d73e82a99aee +_md5_=32baf0b76ed9f56f86f1e07371ebc565 diff --git a/metadata/md5-cache/sys-firmware/Manifest.gz b/metadata/md5-cache/sys-firmware/Manifest.gz index a1f336e8cb6e..96ff989c03fd 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/intel-microcode-20200616_p20200617 b/metadata/md5-cache/sys-firmware/intel-microcode-20200616_p20200617 deleted file mode 100644 index 6ecb5b5801df..000000000000 --- a/metadata/md5-cache/sys-firmware/intel-microcode-20200616_p20200617 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=sys-apps/iucode_tool-2.3 -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend setup -DESCRIPTION=Intel IA32/IA64 microcode update data -EAPI=7 -HOMEPAGE=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/ -IUSE=hostonly initramfs +split-ucode vanilla kernel_linux -KEYWORDS=-* amd64 x86 -LICENSE=intel-ucode -RDEPEND=hostonly? ( sys-apps/iucode_tool ) -REQUIRED_USE=|| ( initramfs split-ucode ) -RESTRICT=binchecks bindist mirror strip -SLOT=0 -SRC_URI=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-20200616.tar.gz https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-20200617.tar.xz -_eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=464bd7dd81528880330132f0856a6f5e diff --git a/metadata/md5-cache/sys-firmware/intel-microcode-20200616_p20200921 b/metadata/md5-cache/sys-firmware/intel-microcode-20200616_p20200921 deleted file mode 100644 index 618ad3084f12..000000000000 --- a/metadata/md5-cache/sys-firmware/intel-microcode-20200616_p20200921 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=sys-apps/iucode_tool-2.3 -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend setup -DESCRIPTION=Intel IA32/IA64 microcode update data -EAPI=7 -HOMEPAGE=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/ -IUSE=hostonly initramfs +split-ucode vanilla kernel_linux -KEYWORDS=-* amd64 x86 -LICENSE=intel-ucode -RDEPEND=hostonly? ( sys-apps/iucode_tool ) -REQUIRED_USE=|| ( initramfs split-ucode ) -RESTRICT=binchecks bindist mirror strip -SLOT=0 -SRC_URI=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-20200616.tar.gz https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-20200921.tar.xz -_eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=464bd7dd81528880330132f0856a6f5e diff --git a/metadata/md5-cache/sys-firmware/intel-microcode-20201110_p20201110 b/metadata/md5-cache/sys-firmware/intel-microcode-20201110_p20201110 deleted file mode 100644 index 2289ef766f33..000000000000 --- a/metadata/md5-cache/sys-firmware/intel-microcode-20201110_p20201110 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=sys-apps/iucode_tool-2.3 -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend setup -DESCRIPTION=Intel IA32/IA64 microcode update data -EAPI=7 -HOMEPAGE=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/ -IUSE=hostonly initramfs +split-ucode vanilla kernel_linux -KEYWORDS=-* amd64 x86 -LICENSE=intel-ucode -RDEPEND=hostonly? ( sys-apps/iucode_tool ) -REQUIRED_USE=|| ( initramfs split-ucode ) -RESTRICT=binchecks bindist mirror strip -SLOT=0 -SRC_URI=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-20201110.tar.gz https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-20201110.tar.xz -_eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=07ade4d29f5a4213666e5f2aefe8d734 diff --git a/metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116 b/metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116-r1 similarity index 96% rename from metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116 rename to metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116-r1 index 6ba1425c00ed..2a7583495c4b 100644 --- a/metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116 +++ b/metadata/md5-cache/sys-firmware/intel-microcode-20201112_p20201116-r1 @@ -12,4 +12,4 @@ RESTRICT=binchecks bindist mirror strip SLOT=0 SRC_URI=https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-20201112.tar.gz https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-20201116.tar.xz _eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=07ade4d29f5a4213666e5f2aefe8d734 +_md5_=5d4c59c2ca809d0a52c3d675c2ba165e diff --git a/metadata/md5-cache/sys-fs/Manifest.gz b/metadata/md5-cache/sys-fs/Manifest.gz index 6ea7b8c76b5e..991431020719 100644 Binary files a/metadata/md5-cache/sys-fs/Manifest.gz and b/metadata/md5-cache/sys-fs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fs/diskdev_cmds-332.14_p1-r3 b/metadata/md5-cache/sys-fs/diskdev_cmds-332.14_p1-r3 deleted file mode 100644 index 229f2a40e396..000000000000 --- a/metadata/md5-cache/sys-fs/diskdev_cmds-332.14_p1-r3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) -DESCRIPTION=HFS and HFS+ utils ported from OSX, supplies mkfs and fsck -EAPI=7 -HOMEPAGE=http://opendarwin.org -IUSE=libressl -KEYWORDS=amd64 ~arm ppc ppc64 x86 -LICENSE=APSL-2 -RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) -SLOT=0 -SRC_URI=http://darwinsource.opendarwin.org/tarballs/apsl/diskdev_cmds-332.14.tar.gz mirror://gentoo/diskdev_cmds-332.14_p1.patch.bz2 -_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f35fb888e1896da58ecf2ff48a6b6c08 diff --git a/metadata/md5-cache/sys-fs/fatsort-1.6.2.605 b/metadata/md5-cache/sys-fs/fatsort-1.6.2.605 deleted file mode 100644 index 3ddc623cb281..000000000000 --- a/metadata/md5-cache/sys-fs/fatsort-1.6.2.605 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile prepare test -DESCRIPTION=Sorts files on FAT16/32 partitions, ideal for basic audio players -EAPI=7 -HOMEPAGE=http://fatsort.sourceforge.net/ -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=mirror://sourceforge/fatsort/fatsort-1.6.2.605.tar.xz -_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=db1ab6df8eebae9eef796a996acfc286 diff --git a/metadata/md5-cache/sys-fs/lxcfs-4.0.5 b/metadata/md5-cache/sys-fs/lxcfs-4.0.5 deleted file mode 100644 index 27545a715602..000000000000 --- a/metadata/md5-cache/sys-fs/lxcfs-4.0.5 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=sys-apps/help2man >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=configure install prepare test -DEPEND=dev-libs/glib:2 sys-fs/fuse:0 -DESCRIPTION=FUSE filesystem for LXC -EAPI=7 -HOMEPAGE=https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/ -KEYWORDS=amd64 -LICENSE=Apache-2.0 -RDEPEND=dev-libs/glib:2 sys-fs/fuse:0 -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/lxc/lxcfs/archive/lxcfs-4.0.5.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ff6bf760bf9e12c4babb0e18d1c41828 diff --git a/metadata/md5-cache/sys-fs/lxcfs-4.0.6 b/metadata/md5-cache/sys-fs/lxcfs-4.0.6 index 45240e75835d..9a9a36dd4b5c 100644 --- a/metadata/md5-cache/sys-fs/lxcfs-4.0.6 +++ b/metadata/md5-cache/sys-fs/lxcfs-4.0.6 @@ -5,11 +5,11 @@ DESCRIPTION=FUSE filesystem for LXC EAPI=7 HOMEPAGE=https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/ IUSE=verify-sig -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=Apache-2.0 RDEPEND=dev-libs/glib:2 sys-fs/fuse:3 RESTRICT=test SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/lxcfs/lxcfs-4.0.6.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxcfs/lxcfs-4.0.6.tar.gz.asc ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=ade7163964b2d62e95c7c91470cd5dc3 +_md5_=379aac77e85ffec7c5a458093c55db43 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index a09fa39918fe..ad7cfd331d8c 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.78 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.78 new file mode 100644 index 000000000000..431d61bcab3e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.78 @@ -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.78 !sys-kernel/vanilla-kernel-bin:5.4.78 || ( 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.78 +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-79.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-79.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 98584e405e2b0264d37e8f728327fed1 portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6e3e262157fa61eec5c26df11c5d9c70 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.9 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.9 new file mode 100644 index 000000000000..44cff95cc091 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.9 @@ -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.9 !sys-kernel/vanilla-kernel-bin:5.9.9 || ( 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.9 +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-9.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-9.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/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.9.2 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.9.2 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.9.2 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.9.2 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3bb6b661289c30af426aafc1ca21e58c diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78 new file mode 100644 index 000000000000..d4897f5b8609 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78 @@ -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.78 !sys-kernel/vanilla-kernel:5.4.78 !sys-kernel/vanilla-kernel-bin:5.4.78 || ( 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.78 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78-1.xpak -> gentoo-kernel-5.4.78-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78-1.xpak -> gentoo-kernel-5.4.78-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a20bdd6958940f81fa50e2ccd2ec6d97 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78-r1 new file mode 100644 index 000000000000..65eef63a7f2e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.78-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.78 !sys-kernel/vanilla-kernel:5.4.78 !sys-kernel/vanilla-kernel-bin:5.4.78 || ( 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.78 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78-1.xpak -> gentoo-kernel-5.4.78-1.amd64.xpak ) arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78-1.xpak -> gentoo-kernel-5.4.78-1.arm64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78-1.xpak -> gentoo-kernel-5.4.78-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a233ac0f8da53036540d5f704213ef4e diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9 new file mode 100644 index 000000000000..28c84cdf0b8d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9 @@ -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.9 !sys-kernel/vanilla-kernel:5.9.9 !sys-kernel/vanilla-kernel-bin:5.9.9 || ( 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.9 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.9-1.xpak -> gentoo-kernel-5.9.9-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.9-1.xpak -> gentoo-kernel-5.9.9-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=090591d3b01a83132e35a9ff23d3d8a6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9-r1 new file mode 100644 index 000000000000..47b482acf62a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.9-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.9 !sys-kernel/vanilla-kernel:5.9.9 !sys-kernel/vanilla-kernel-bin:5.9.9 || ( 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.9 +SRC_URI=arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.9-1.xpak -> gentoo-kernel-5.9.9-1.arm64.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1c986217f742976ad581aba3fa686aaa diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 new file mode 100644 index 000000000000..0539dfeaa939 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.14 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.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 ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=329608b1b9cc721c09aace6fbc387e63 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 new file mode 100644 index 000000000000..39d268f15b1e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=197e9f14879f716415506b90aa466692 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 new file mode 100644 index 000000000000..da43bc495bcb --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=d94fee4abbe5f36568cf1d8113d9e1e0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 new file mode 100644 index 000000000000..db0bb3e5e31a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=2015c4c0e797df35913aef9d856881bd diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 new file mode 100644 index 000000000000..c8d1088e1858 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 5.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=ac414fe59711b94bcbf3e3a747ca229f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 new file mode 100644 index 000000000000..15f22122cbee --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 5.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4d13e106ceaec45161e95d973f69e0b4 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20201022-r2 b/metadata/md5-cache/sys-kernel/linux-firmware-20201022-r2 index f8c8a3b61f4e..04daa5f6cf38 100644 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20201022-r2 +++ b/metadata/md5-cache/sys-kernel/linux-firmware-20201022-r2 @@ -12,4 +12,4 @@ RESTRICT=binchecks strip test unknown-license? ( bindist ) SLOT=0 SRC_URI=https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/linux-firmware-20201022.tar.xz _eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=4ee78dde81b52b6fe7ca6a27e573d111 +_md5_=63e43d47cc1a20dd86d7f9cffe778271 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-99999999 b/metadata/md5-cache/sys-kernel/linux-firmware-99999999 index 764e20d9b276..4459a749ff4a 100644 --- a/metadata/md5-cache/sys-kernel/linux-firmware-99999999 +++ b/metadata/md5-cache/sys-kernel/linux-firmware-99999999 @@ -11,4 +11,4 @@ REQUIRED_USE=initramfs? ( redistributable ) RESTRICT=binchecks strip test unknown-license? ( bindist ) SLOT=0 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=4ee78dde81b52b6fe7ca6a27e573d111 +_md5_=63e43d47cc1a20dd86d7f9cffe778271 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.78 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.78 new file mode 100644 index 000000000000..b1ed1c7793bc --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.78 @@ -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.78 || ( 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.78 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.78.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.78.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 98584e405e2b0264d37e8f728327fed1 portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=270127bc525d061891eea08f7b769945 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.9 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.9 new file mode 100644 index 000000000000..07b4545e6c27 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.9 @@ -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.9 || ( 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.9 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.9.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.9.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.9.2 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.9.2 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.9.2 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/94a4277f8827d1b2c911deabe56e7d929dc93146/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.9.2 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib 98584e405e2b0264d37e8f728327fed1 portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=ab05edaa61e2c7b33ec81d910edd2658 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.206 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.207 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.14.206 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.14.207 index 860a82f3320f..b73850285079 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.206 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.207 @@ -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.206 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.206.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz +SLOT=4.14.207 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.207.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.157 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.158 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.19.157 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.19.158 index 4e2f8c12964d..8bb253adb5a5 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.157 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.158 @@ -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.157 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.157.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz +SLOT=4.19.158 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.158.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.243 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.244 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.4.243 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.4.244 index 7cfede497187..b595212e074d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.243 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.244 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~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/patch-4.4.243.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz +SLOT=4.4.244 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.244.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6f4c9c7dfd6c9ad338d0aac3b2d3c582 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.243 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.244 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.9.243 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.9.244 index 96437d21e6cb..c509dc7d6a3b 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.243 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.244 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~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/patch-4.9.243.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz +SLOT=4.9.244 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.244.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6f4c9c7dfd6c9ad338d0aac3b2d3c582 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.77 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.78 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.4.77 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.4.78 index 690560b748a9..31d2a7b2b3a6 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.77 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.78 @@ -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.77 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.77.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz +SLOT=5.4.78 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.78.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.8.17 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.8.18 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.8.17 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.8.18 index f2ead37a27de..b88073206eb3 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.8.17 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.8.18 @@ -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.8.17 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.8.17.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.8.tar.xz +SLOT=5.8.18 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.8.18.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.8.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.8 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.9 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.9.8 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.9.9 index a0726701bb35..e63a3bff0f03 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.8 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.9 @@ -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.8 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.9.8.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz +SLOT=5.9.9 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.9.9.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 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index ba4cf8ece8f5..4409ab792bfc 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/gdbm-1.18.1-r1 b/metadata/md5-cache/sys-libs/gdbm-1.18.1-r1 index 308b7ddcff35..1138dcc12624 100644 --- a/metadata/md5-cache/sys-libs/gdbm-1.18.1-r1 +++ b/metadata/md5-cache/sys-libs/gdbm-1.18.1-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Standard GNU database libraries EAPI=7 HOMEPAGE=https://www.gnu.org/software/gdbm/ IUSE=+berkdb nls +readline 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 -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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=readline? ( sys-libs/readline: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(-)?] ) SLOT=0/6 SRC_URI=mirror://gnu/gdbm/gdbm-1.18.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b4b2ba0b09e1c0bb0c3dc2f9a01ded9b +_md5_=bb7e4df012e1a20485476b13122458f3 diff --git a/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 b/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 index 10c89eaded5d..39d5518d7f3f 100644 --- a/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 +++ b/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 @@ -5,11 +5,11 @@ 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 +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.11.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a70073dc664ac2af6c4350b5fc35fb57 +_md5_=d1cc54556d2dafd3bc766075c0fd0c3a diff --git a/metadata/md5-cache/sys-libs/libcap-ng-0.8.1 b/metadata/md5-cache/sys-libs/libcap-ng-0.8.1 new file mode 100644 index 000000000000..8b41ac69960a --- /dev/null +++ b/metadata/md5-cache/sys-libs/libcap-ng-0.8.1 @@ -0,0 +1,15 @@ +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.8.1.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=a70073dc664ac2af6c4350b5fc35fb57 diff --git a/metadata/md5-cache/sys-libs/libseccomp-2.4.4 b/metadata/md5-cache/sys-libs/libseccomp-2.4.4 index bf7b751b88f9..e6fcb3283912 100644 --- a/metadata/md5-cache/sys-libs/libseccomp-2.4.4 +++ b/metadata/md5-cache/sys-libs/libseccomp-2.4.4 @@ -4,9 +4,9 @@ DESCRIPTION=high level interface to Linux seccomp filter EAPI=7 HOMEPAGE=https://github.com/seccomp/libseccomp IUSE=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 -KEYWORDS=-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=-* amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 SLOT=0 SRC_URI=https://github.com/seccomp/libseccomp/releases/download/v2.4.4/libseccomp-2.4.4.tar.gz _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=893fc71d79b323ce62889d892e33b2c5 +_md5_=d05a162952846d309477b31866da1074 diff --git a/metadata/md5-cache/sys-libs/libseccomp-2.5.1 b/metadata/md5-cache/sys-libs/libseccomp-2.5.1 new file mode 100644 index 000000000000..496ce11a2b56 --- /dev/null +++ b/metadata/md5-cache/sys-libs/libseccomp-2.5.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/gperf 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 ) 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(-)] ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-util/gperf 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 ) 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(-)] ) >=sys-kernel/linux-headers-4.3 +DESCRIPTION=high level interface to Linux seccomp filter +EAPI=7 +HOMEPAGE=https://github.com/seccomp/libseccomp +IUSE=python static-libs python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 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 -mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1 +RDEPEND=dev-util/gperf 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 ) 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? ( static-libs || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) ) +SLOT=0 +SRC_URI=https://github.com/seccomp/libseccomp/archive/v2.5.1.tar.gz -> libseccomp-2.5.1.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=824970a0ddcaf829d9861edb8f048183 diff --git a/metadata/md5-cache/sys-libs/ncurses-compat-5.9 b/metadata/md5-cache/sys-libs/ncurses-compat-5.9 deleted file mode 100644 index 8ae7636d9865..000000000000 --- a/metadata/md5-cache/sys-libs/ncurses-compat-5.9 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=gpm? ( sys-libs/gpm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -DESCRIPTION=console display library -EAPI=5 -HOMEPAGE=https://www.gnu.org/software/ncurses/ https://invisible-island.net/ncurses/ -IUSE=gpm tinfo unicode 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 s390 sparc x86 -LICENSE=MIT -RDEPEND=gpm? ( sys-libs/gpm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !=sys-libs/ncurses-5.9-r3:0=[static-libs?,unicode?,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/8.1 -SRC_URI=ftp://ftp.cwru.edu/pub/bash/readline-8.1-rc2.tar.gz +SLOT=0/8 +SRC_URI=ftp://ftp.cwru.edu/pub/bash/readline-8.1-rc3.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bd2cd6b38cfa0325a1998c602f3c45b2 +_md5_=955626ca63d093c0df26a433bd253f23 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index 81b664e3607c..feaaf6b11d74 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/udev-215 b/metadata/md5-cache/virtual/udev-215 deleted file mode 100644 index 4237e8931ced..000000000000 --- a/metadata/md5-cache/virtual/udev-215 +++ /dev/null @@ -1,8 +0,0 @@ -DEFINED_PHASES=- -DESCRIPTION=Virtual to select between different udev daemon providers -EAPI=5 -IUSE=systemd -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 -RDEPEND=!systemd? ( || ( >=sys-fs/eudev-1.3 >=sys-fs/udev-208-r1 ) ) systemd? ( >=sys-apps/systemd-208:0 ) -SLOT=0 -_md5_=4c8c2281ebed8d3d1d405a189193382f diff --git a/metadata/md5-cache/virtual/udev-217 b/metadata/md5-cache/virtual/udev-217 deleted file mode 100644 index 29d9ebee31cb..000000000000 --- a/metadata/md5-cache/virtual/udev-217 +++ /dev/null @@ -1,8 +0,0 @@ -DEFINED_PHASES=- -DESCRIPTION=Virtual to select between different udev daemon providers -EAPI=5 -IUSE=systemd -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 -RDEPEND=!systemd? ( || ( >=sys-fs/eudev-2.1.1 >=sys-fs/udev-217 ) ) systemd? ( >=sys-apps/systemd-217:0 ) -SLOT=0 -_md5_=02476285b442ca8495c3fc9a1be555cd diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz index b93e4b3ac03a..755be0cac8f1 100644 Binary files a/metadata/md5-cache/www-apache/Manifest.gz and b/metadata/md5-cache/www-apache/Manifest.gz differ diff --git a/metadata/md5-cache/www-apache/mod_qos-11.66 b/metadata/md5-cache/www-apache/mod_qos-11.66 index 28237a2f88ab..914e747f5717 100644 --- a/metadata/md5-cache/www-apache/mod_qos-11.66 +++ b/metadata/md5-cache/www-apache/mod_qos-11.66 @@ -4,10 +4,11 @@ DEPEND==www-servers/apache-2* DESCRIPTION=A QOS module for the apache webserver EAPI=7 HOMEPAGE=http://mod-qos.sourceforge.net/ +IUSE=libressl KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/libpcre:3 dev-libs/openssl:0= media-libs/libpng:0= sys-libs/zlib:0= =www-servers/apache-2* +RDEPEND=dev-libs/libpcre:3 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) media-libs/libpng:0= sys-libs/zlib:0= =www-servers/apache-2* SLOT=0 SRC_URI=mirror://sourceforge/mod-qos/mod_qos-11.66.tar.gz _eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 autotools 7d999b62b8749fad43fff00620cedf47 depend.apache 94458fe4e9466f4803360408e60e11fd libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=cc7ad245e08438861f0ebd38729ce772 +_md5_=c224e1e7162a99b0a0c1cb0c189996c5 diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index c26db9b8b2b0..1846a2dfa61d 100644 Binary files a/metadata/md5-cache/www-apps/Manifest.gz and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/drupal-7.73 b/metadata/md5-cache/www-apps/drupal-7.74 similarity index 89% rename from metadata/md5-cache/www-apps/drupal-7.73 rename to metadata/md5-cache/www-apps/drupal-7.74 index 0616f0d62b8e..3090bf8de200 100644 --- a/metadata/md5-cache/www-apps/drupal-7.73 +++ b/metadata/md5-cache/www-apps/drupal-7.74 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=7.73 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-7.73.tar.gz +SLOT=7.74 +SRC_URI=https://ftp.drupal.org/files/projects/drupal-7.74.tar.gz _eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 _md5_=8fd0a0e8a0c8d711caf044c21e4ee876 diff --git a/metadata/md5-cache/www-apps/drupal-8.8.10 b/metadata/md5-cache/www-apps/drupal-8.8.11 similarity index 89% rename from metadata/md5-cache/www-apps/drupal-8.8.10 rename to metadata/md5-cache/www-apps/drupal-8.8.11 index ccc87fce444e..bdafe6c4adaa 100644 --- a/metadata/md5-cache/www-apps/drupal-8.8.10 +++ b/metadata/md5-cache/www-apps/drupal-8.8.11 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=8.8.10 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.8.10.tar.gz +SLOT=8.8.11 +SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.8.11.tar.gz _eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 _md5_=47107bdd2978241763cd87948858fd51 diff --git a/metadata/md5-cache/www-apps/drupal-8.9.7 b/metadata/md5-cache/www-apps/drupal-8.9.7 deleted file mode 100644 index 3ee41f37c2c9..000000000000 --- a/metadata/md5-cache/www-apps/drupal-8.9.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=PHP-based open-source platform and content management system -EAPI=6 -HOMEPAGE=https://www.drupal.org/ -IUSE=+mysql postgres sqlite +uploadprogress vhosts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 -REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=8.9.7 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.9.7.tar.gz -_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 -_md5_=47107bdd2978241763cd87948858fd51 diff --git a/metadata/md5-cache/www-apps/drupal-8.9.6 b/metadata/md5-cache/www-apps/drupal-8.9.9 similarity index 89% rename from metadata/md5-cache/www-apps/drupal-8.9.6 rename to metadata/md5-cache/www-apps/drupal-8.9.9 index f5b635fab140..af570d318b2b 100644 --- a/metadata/md5-cache/www-apps/drupal-8.9.6 +++ b/metadata/md5-cache/www-apps/drupal-8.9.9 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=8.9.6 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.9.6.tar.gz +SLOT=8.9.9 +SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.9.9.tar.gz _eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 _md5_=47107bdd2978241763cd87948858fd51 diff --git a/metadata/md5-cache/www-apps/drupal-9.0.7 b/metadata/md5-cache/www-apps/drupal-9.0.7 deleted file mode 100644 index 55b52d6178c9..000000000000 --- a/metadata/md5-cache/www-apps/drupal-9.0.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=PHP-based open-source platform and content management system -EAPI=6 -HOMEPAGE=https://www.drupal.org/ -IUSE=+mysql postgres sqlite +uploadprogress vhosts -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 -REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=9.0.7 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-9.0.7.tar.gz -_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 -_md5_=47107bdd2978241763cd87948858fd51 diff --git a/metadata/md5-cache/www-apps/drupal-9.0.6 b/metadata/md5-cache/www-apps/drupal-9.0.8 similarity index 89% rename from metadata/md5-cache/www-apps/drupal-9.0.6 rename to metadata/md5-cache/www-apps/drupal-9.0.8 index 859022f9ddda..06b02a0ea673 100644 --- a/metadata/md5-cache/www-apps/drupal-9.0.6 +++ b/metadata/md5-cache/www-apps/drupal-9.0.8 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] virtual/httpd-php uploadprogress? ( dev-php/pecl-uploadprogress ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( mysql postgres sqlite ) -SLOT=9.0.6 -SRC_URI=https://ftp.drupal.org/files/projects/drupal-9.0.6.tar.gz +SLOT=9.0.8 +SRC_URI=https://ftp.drupal.org/files/projects/drupal-9.0.8.tar.gz _eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 _md5_=47107bdd2978241763cd87948858fd51 diff --git a/metadata/md5-cache/www-apps/grafana-bin-7.3.3 b/metadata/md5-cache/www-apps/grafana-bin-7.3.3 new file mode 100644 index 000000000000..ee8858bd5199 --- /dev/null +++ b/metadata/md5-cache/www-apps/grafana-bin-7.3.3 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install +DEPEND=acct-group/grafana acct-user/grafana +DESCRIPTION=Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB +EAPI=7 +HOMEPAGE=https://grafana.org +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=acct-group/grafana acct-user/grafana media-libs/fontconfig +SLOT=0 +SRC_URI=https://dl.grafana.com/oss/release/grafana-7.3.3.linux-amd64.tar.gz -> grafana-bin-7.3.3.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e61e4d40ee1bcbd20f538dee09abafe8 diff --git a/metadata/md5-cache/www-apps/nikola-8.1.2 b/metadata/md5-cache/www-apps/nikola-8.1.2 new file mode 100644 index 000000000000..836da1b421c7 --- /dev/null +++ b/metadata/md5-cache/www-apps/nikola-8.1.2 @@ -0,0 +1,16 @@ +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 ) >=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(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/docutils-0.13[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 static website and blog generator +EAPI=7 +HOMEPAGE=https://getnikola.com/ +IUSE=assets charts hyphenation ipython jinja server watchdog webmedia python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 +LICENSE=MIT Apache-2.0 CC0-1.0 public-domain +RDEPEND=>=dev-python/docutils-0.13[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/Babel-2.6.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(-)] >=dev-python/blinker-1.3[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/doit-0.32[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/lxml-3.3.5[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/mako-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(-)] >=dev-python/markdown-3.0.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(-)] >=dev-python/natsort-3.5.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/piexif-1.0.3[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/pygments-1.6[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/PyRSS2Gen-1.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(-)] >=dev-python/python-dateutil-2.6.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(-)] >=dev-python/requests-2.2.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(-)] >=dev-python/unidecode-0.04.16[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/yapsy-1.11.223[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/pillow[jpeg,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/cloudpickle[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(-)] assets? ( >=dev-python/webassets-0.10.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(-)] ) charts? ( >=dev-python/pygal-2.0.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(-)] ) hyphenation? ( >=dev-python/pyphen-0.9.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(-)] ) ipython? ( >=dev-python/ipython-2.0.0[notebook,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(-)] ) jinja? ( >=dev-python/jinja-2.7.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(-)] ) server? ( dev-python/aiohttp[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(-)] ) watchdog? ( >=dev-python/watchdog-0.8.3[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(-)] ) webmedia? ( >=dev-python/micawber-0.3.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(-)] >=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(-)] +REQUIRED_USE=server? ( watchdog ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/N/Nikola/Nikola-8.1.2.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=9fb2f3e6e2437fd4e6b45713d3082829 diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index fe9fca4185fb..60d9584d7a30 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-87.0.4280.63 b/metadata/md5-cache/www-client/chromium-87.0.4280.66 similarity index 97% rename from metadata/md5-cache/www-client/chromium-87.0.4280.63 rename to metadata/md5-cache/www-client/chromium-87.0.4280.66 index 929fdc6ea09e..f56b14a741ce 100644 --- a/metadata/md5-cache/www-client/chromium-87.0.4280.63 +++ b/metadata/md5-cache/www-client/chromium-87.0.4280.66 @@ -5,12 +5,12 @@ DESCRIPTION=Open-source version of Google Chrome web browser EAPI=7 HOMEPAGE=https://chromium.org/ IUSE=component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +tcmalloc vaapi wayland widevine kernel_linux custom-cflags +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=BSD RDEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= dev-libs/glib:2 >=dev-libs/libxml2-2.9.4-r3:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= >=media-libs/alsa-lib-1.0.19:= media-libs/fontconfig:= media-libs/freetype:= >=media-libs/harfbuzz-2.4.0:0=[icu(-)] media-libs/libjpeg-turbo:= media-libs/libpng:= pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( >=media-video/ffmpeg-4.3:= || ( media-video/ffmpeg[-samba] >=net-fs/samba-4.5.10-r1[-debug(-)] ) >=media-libs/opus-1.3.1:= ) sys-apps/dbus:= sys-apps/pciutils:= virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= media-libs/flac:= >=media-libs/libwebp-0.4.0:= sys-libs/zlib:=[minizip] kerberos? ( virtual/krb5 ) !headless? ( media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= vaapi? ( >=x11-libs/libva-2.7:=[X,drm] ) >=app-accessibility/at-spi2-atk-2.26:2 >=app-accessibility/at-spi2-core-2.26:2 >=dev-libs/atk-2.26 x11-libs/gtk+:3[X] wayland? ( dev-libs/wayland:= dev-libs/libffi:= x11-libs/gtk+:3[wayland,X] x11-libs/libdrm:= x11-libs/libxkbcommon:= ) ) x11-misc/xdg-utils virtual/opengl virtual/ttf-fonts selinux? ( sec-policy/selinux-chromium ) tcmalloc? ( !=dev-libs/re2-0.2019.08.01:= >=media-libs/openh264-1.6.0:= system-icu? ( >=dev-libs/icu-67.1:= ) REQUIRED_USE=component-build? ( !suid ) RESTRICT=!system-ffmpeg? ( proprietary-codecs? ( bindist ) ) SLOT=0 -SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-87.0.4280.63.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-87-patchset-9/chromium-87-patchset-9.tar.xz +SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-87.0.4280.66.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-87-patchset-9/chromium-87-patchset-9.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 98584e405e2b0264d37e8f728327fed1 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_=e4adcb2b5a41271254f6653dd263e412 +_md5_=ed05b8300cbf863f1bdcb8ef76354576 diff --git a/metadata/md5-cache/www-client/firefox-78.4.1 b/metadata/md5-cache/www-client/firefox-78.4.1 deleted file mode 100644 index 6f7e25b94215..000000000000 --- a/metadata/md5-cache/www-client/firefox-78.4.1 +++ /dev/null @@ -1,15 +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.14.3 >=net-libs/nodejs-10.19.0 virtual/pkgconfig >=virtual/rust-1.41.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.53.1 >=dev-libs/nspr-4.25 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 -KEYWORDS=amd64 arm64 ~ppc64 x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.53.1 >=dev-libs/nspr-4.25 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=screencast? ( wayland ) -SLOT=0/esr78 -SRC_URI=https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/source/firefox-78.4.1esr.source.tar.xz -> firefox-78.4.1esr.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-78esr-patches-04.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-78esr-patches-04.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-78esr-patches-04.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ach.xpi -> firefox-78.4.1esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/af.xpi -> firefox-78.4.1esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/an.xpi -> firefox-78.4.1esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ar.xpi -> firefox-78.4.1esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ast.xpi -> firefox-78.4.1esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/az.xpi -> firefox-78.4.1esr-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/be.xpi -> firefox-78.4.1esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bg.xpi -> firefox-78.4.1esr-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bn.xpi -> firefox-78.4.1esr-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/br.xpi -> firefox-78.4.1esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bs.xpi -> firefox-78.4.1esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-78.4.1esr-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ca.xpi -> firefox-78.4.1esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cak.xpi -> firefox-78.4.1esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cs.xpi -> firefox-78.4.1esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cy.xpi -> firefox-78.4.1esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/da.xpi -> firefox-78.4.1esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/de.xpi -> firefox-78.4.1esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/dsb.xpi -> firefox-78.4.1esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/el.xpi -> firefox-78.4.1esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/en-CA.xpi -> firefox-78.4.1esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/en-GB.xpi -> firefox-78.4.1esr-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/eo.xpi -> firefox-78.4.1esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-AR.xpi -> firefox-78.4.1esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-CL.xpi -> firefox-78.4.1esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-ES.xpi -> firefox-78.4.1esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-MX.xpi -> firefox-78.4.1esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/et.xpi -> firefox-78.4.1esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/eu.xpi -> firefox-78.4.1esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fa.xpi -> firefox-78.4.1esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ff.xpi -> firefox-78.4.1esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fi.xpi -> firefox-78.4.1esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fr.xpi -> firefox-78.4.1esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-78.4.1esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-78.4.1esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gd.xpi -> firefox-78.4.1esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gl.xpi -> firefox-78.4.1esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gn.xpi -> firefox-78.4.1esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-78.4.1esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/he.xpi -> firefox-78.4.1esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-78.4.1esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hr.xpi -> firefox-78.4.1esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hsb.xpi -> firefox-78.4.1esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hu.xpi -> firefox-78.4.1esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-78.4.1esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ia.xpi -> firefox-78.4.1esr-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/id.xpi -> firefox-78.4.1esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/is.xpi -> firefox-78.4.1esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/it.xpi -> firefox-78.4.1esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ja.xpi -> firefox-78.4.1esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ka.xpi -> firefox-78.4.1esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kab.xpi -> firefox-78.4.1esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kk.xpi -> firefox-78.4.1esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/km.xpi -> firefox-78.4.1esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kn.xpi -> firefox-78.4.1esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ko.xpi -> firefox-78.4.1esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lij.xpi -> firefox-78.4.1esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lt.xpi -> firefox-78.4.1esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lv.xpi -> firefox-78.4.1esr-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/mk.xpi -> firefox-78.4.1esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/mr.xpi -> firefox-78.4.1esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ms.xpi -> firefox-78.4.1esr-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/my.xpi -> firefox-78.4.1esr-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-78.4.1esr-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-78.4.1esr-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nl.xpi -> firefox-78.4.1esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-78.4.1esr-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/oc.xpi -> firefox-78.4.1esr-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-78.4.1esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pl.xpi -> firefox-78.4.1esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-78.4.1esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-78.4.1esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/rm.xpi -> firefox-78.4.1esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ro.xpi -> firefox-78.4.1esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ru.xpi -> firefox-78.4.1esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/si.xpi -> firefox-78.4.1esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sk.xpi -> firefox-78.4.1esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sl.xpi -> firefox-78.4.1esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/son.xpi -> firefox-78.4.1esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sq.xpi -> firefox-78.4.1esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sr.xpi -> firefox-78.4.1esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-78.4.1esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ta.xpi -> firefox-78.4.1esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/te.xpi -> firefox-78.4.1esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/th.xpi -> firefox-78.4.1esr-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/tl.xpi -> firefox-78.4.1esr-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/tr.xpi -> firefox-78.4.1esr-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/trs.xpi -> firefox-78.4.1esr-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/uk.xpi -> firefox-78.4.1esr-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ur.xpi -> firefox-78.4.1esr-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/uz.xpi -> firefox-78.4.1esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/vi.xpi -> firefox-78.4.1esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/xh.xpi -> firefox-78.4.1esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-78.4.1esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-78.4.1esr-zh-TW.xpi ) -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib 98584e405e2b0264d37e8f728327fed1 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_=88e082b5cfa4c6b55ad4f131745937ed diff --git a/metadata/md5-cache/www-client/firefox-78.5.0 b/metadata/md5-cache/www-client/firefox-78.5.0 index dece2c9e8f33..13d430fa7b2f 100644 --- a/metadata/md5-cache/www-client/firefox-78.5.0 +++ b/metadata/md5-cache/www-client/firefox-78.5.0 @@ -5,11 +5,11 @@ 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 -KEYWORDS=amd64 ~arm64 ~ppc64 x86 +KEYWORDS=amd64 arm64 ~ppc64 x86 LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/nss-3.53.1 >=dev-libs/nspr-4.25 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/esr78 SRC_URI=https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/source/firefox-78.5.0esr.source.tar.xz -> firefox-78.5.0esr.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-78esr-patches-06.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-78esr-patches-06.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-78esr-patches-06.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ach.xpi -> firefox-78.5.0esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/af.xpi -> firefox-78.5.0esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/an.xpi -> firefox-78.5.0esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ar.xpi -> firefox-78.5.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ast.xpi -> firefox-78.5.0esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/az.xpi -> firefox-78.5.0esr-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/be.xpi -> firefox-78.5.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/bg.xpi -> firefox-78.5.0esr-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/bn.xpi -> firefox-78.5.0esr-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/br.xpi -> firefox-78.5.0esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/bs.xpi -> firefox-78.5.0esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-78.5.0esr-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ca.xpi -> firefox-78.5.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/cak.xpi -> firefox-78.5.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/cs.xpi -> firefox-78.5.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/cy.xpi -> firefox-78.5.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/da.xpi -> firefox-78.5.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/de.xpi -> firefox-78.5.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/dsb.xpi -> firefox-78.5.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/el.xpi -> firefox-78.5.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/en-CA.xpi -> firefox-78.5.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/en-GB.xpi -> firefox-78.5.0esr-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/eo.xpi -> firefox-78.5.0esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/es-AR.xpi -> firefox-78.5.0esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/es-CL.xpi -> firefox-78.5.0esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/es-ES.xpi -> firefox-78.5.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/es-MX.xpi -> firefox-78.5.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/et.xpi -> firefox-78.5.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/eu.xpi -> firefox-78.5.0esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/fa.xpi -> firefox-78.5.0esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ff.xpi -> firefox-78.5.0esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/fi.xpi -> firefox-78.5.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/fr.xpi -> firefox-78.5.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-78.5.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-78.5.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/gd.xpi -> firefox-78.5.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/gl.xpi -> firefox-78.5.0esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/gn.xpi -> firefox-78.5.0esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-78.5.0esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/he.xpi -> firefox-78.5.0esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-78.5.0esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/hr.xpi -> firefox-78.5.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/hsb.xpi -> firefox-78.5.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/hu.xpi -> firefox-78.5.0esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-78.5.0esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ia.xpi -> firefox-78.5.0esr-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/id.xpi -> firefox-78.5.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/is.xpi -> firefox-78.5.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/it.xpi -> firefox-78.5.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ja.xpi -> firefox-78.5.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ka.xpi -> firefox-78.5.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/kab.xpi -> firefox-78.5.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/kk.xpi -> firefox-78.5.0esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/km.xpi -> firefox-78.5.0esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/kn.xpi -> firefox-78.5.0esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ko.xpi -> firefox-78.5.0esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/lij.xpi -> firefox-78.5.0esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/lt.xpi -> firefox-78.5.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/lv.xpi -> firefox-78.5.0esr-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/mk.xpi -> firefox-78.5.0esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/mr.xpi -> firefox-78.5.0esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ms.xpi -> firefox-78.5.0esr-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/my.xpi -> firefox-78.5.0esr-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-78.5.0esr-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-78.5.0esr-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/nl.xpi -> firefox-78.5.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-78.5.0esr-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/oc.xpi -> firefox-78.5.0esr-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-78.5.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/pl.xpi -> firefox-78.5.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-78.5.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-78.5.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/rm.xpi -> firefox-78.5.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ro.xpi -> firefox-78.5.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ru.xpi -> firefox-78.5.0esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/si.xpi -> firefox-78.5.0esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/sk.xpi -> firefox-78.5.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/sl.xpi -> firefox-78.5.0esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/son.xpi -> firefox-78.5.0esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/sq.xpi -> firefox-78.5.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/sr.xpi -> firefox-78.5.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-78.5.0esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ta.xpi -> firefox-78.5.0esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/te.xpi -> firefox-78.5.0esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/th.xpi -> firefox-78.5.0esr-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/tl.xpi -> firefox-78.5.0esr-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/tr.xpi -> firefox-78.5.0esr-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/trs.xpi -> firefox-78.5.0esr-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/uk.xpi -> firefox-78.5.0esr-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/ur.xpi -> firefox-78.5.0esr-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/uz.xpi -> firefox-78.5.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/vi.xpi -> firefox-78.5.0esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/xh.xpi -> firefox-78.5.0esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-78.5.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/78.5.0esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-78.5.0esr-zh-TW.xpi ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib 98584e405e2b0264d37e8f728327fed1 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_=6b23ef836d7d5fc1f5cc084f91f17a9f +_md5_=b38b57c22628873f5cba66fb77f446ec diff --git a/metadata/md5-cache/www-client/firefox-82.0.3 b/metadata/md5-cache/www-client/firefox-82.0.3 deleted file mode 100644 index dc8a3d49a2ec..000000000000 --- a/metadata/md5-cache/www-client/firefox-82.0.3 +++ /dev/null @@ -1,15 +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.14.3 >=net-libs/nodejs-10.19.0 virtual/pkgconfig >=virtual/rust-1.43.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.57 >=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 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.57 >=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=screencast? ( wayland ) -SLOT=0/82 -SRC_URI=https://archive.mozilla.org/pub/firefox/releases/82.0.3/source/firefox-82.0.3.source.tar.xz -> firefox-82.0.3.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-82-patches-03.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-82-patches-03.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-82-patches-03.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ach.xpi -> firefox-82.0.3-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/af.xpi -> firefox-82.0.3-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/an.xpi -> firefox-82.0.3-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ar.xpi -> firefox-82.0.3-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ast.xpi -> firefox-82.0.3-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/az.xpi -> firefox-82.0.3-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/be.xpi -> firefox-82.0.3-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bg.xpi -> firefox-82.0.3-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bn.xpi -> firefox-82.0.3-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/br.xpi -> firefox-82.0.3-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bs.xpi -> firefox-82.0.3-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ca-valencia.xpi -> firefox-82.0.3-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ca.xpi -> firefox-82.0.3-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cak.xpi -> firefox-82.0.3-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cs.xpi -> firefox-82.0.3-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cy.xpi -> firefox-82.0.3-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/da.xpi -> firefox-82.0.3-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/de.xpi -> firefox-82.0.3-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/dsb.xpi -> firefox-82.0.3-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/el.xpi -> firefox-82.0.3-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/en-CA.xpi -> firefox-82.0.3-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/en-GB.xpi -> firefox-82.0.3-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/eo.xpi -> firefox-82.0.3-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-AR.xpi -> firefox-82.0.3-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-CL.xpi -> firefox-82.0.3-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-ES.xpi -> firefox-82.0.3-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-MX.xpi -> firefox-82.0.3-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/et.xpi -> firefox-82.0.3-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/eu.xpi -> firefox-82.0.3-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fa.xpi -> firefox-82.0.3-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ff.xpi -> firefox-82.0.3-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fi.xpi -> firefox-82.0.3-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fr.xpi -> firefox-82.0.3-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fy-NL.xpi -> firefox-82.0.3-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ga-IE.xpi -> firefox-82.0.3-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gd.xpi -> firefox-82.0.3-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gl.xpi -> firefox-82.0.3-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gn.xpi -> firefox-82.0.3-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gu-IN.xpi -> firefox-82.0.3-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/he.xpi -> firefox-82.0.3-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hi-IN.xpi -> firefox-82.0.3-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hr.xpi -> firefox-82.0.3-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hsb.xpi -> firefox-82.0.3-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hu.xpi -> firefox-82.0.3-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hy-AM.xpi -> firefox-82.0.3-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ia.xpi -> firefox-82.0.3-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/id.xpi -> firefox-82.0.3-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/is.xpi -> firefox-82.0.3-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/it.xpi -> firefox-82.0.3-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ja.xpi -> firefox-82.0.3-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ka.xpi -> firefox-82.0.3-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kab.xpi -> firefox-82.0.3-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kk.xpi -> firefox-82.0.3-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/km.xpi -> firefox-82.0.3-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kn.xpi -> firefox-82.0.3-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ko.xpi -> firefox-82.0.3-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lij.xpi -> firefox-82.0.3-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lt.xpi -> firefox-82.0.3-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lv.xpi -> firefox-82.0.3-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/mk.xpi -> firefox-82.0.3-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/mr.xpi -> firefox-82.0.3-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ms.xpi -> firefox-82.0.3-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/my.xpi -> firefox-82.0.3-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nb-NO.xpi -> firefox-82.0.3-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ne-NP.xpi -> firefox-82.0.3-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nl.xpi -> firefox-82.0.3-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nn-NO.xpi -> firefox-82.0.3-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/oc.xpi -> firefox-82.0.3-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pa-IN.xpi -> firefox-82.0.3-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pl.xpi -> firefox-82.0.3-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pt-BR.xpi -> firefox-82.0.3-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pt-PT.xpi -> firefox-82.0.3-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/rm.xpi -> firefox-82.0.3-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ro.xpi -> firefox-82.0.3-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ru.xpi -> firefox-82.0.3-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/si.xpi -> firefox-82.0.3-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sk.xpi -> firefox-82.0.3-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sl.xpi -> firefox-82.0.3-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/son.xpi -> firefox-82.0.3-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sq.xpi -> firefox-82.0.3-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sr.xpi -> firefox-82.0.3-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sv-SE.xpi -> firefox-82.0.3-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ta.xpi -> firefox-82.0.3-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/te.xpi -> firefox-82.0.3-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/th.xpi -> firefox-82.0.3-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/tl.xpi -> firefox-82.0.3-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/tr.xpi -> firefox-82.0.3-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/trs.xpi -> firefox-82.0.3-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/uk.xpi -> firefox-82.0.3-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ur.xpi -> firefox-82.0.3-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/uz.xpi -> firefox-82.0.3-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/vi.xpi -> firefox-82.0.3-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/xh.xpi -> firefox-82.0.3-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/zh-CN.xpi -> firefox-82.0.3-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/zh-TW.xpi -> firefox-82.0.3-zh-TW.xpi ) -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib 98584e405e2b0264d37e8f728327fed1 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_=3640ffbbdbc7d0cf3a96fd37a3612827 diff --git a/metadata/md5-cache/www-client/firefox-bin-78.4.1 b/metadata/md5-cache/www-client/firefox-bin-78.4.1 deleted file mode 100644 index 19e65fee503c..000000000000 --- a/metadata/md5-cache/www-client/firefox-bin-78.4.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) -DEFINED_PHASES=install postinst postrm preinst prepare unpack -DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Firefox Web Browser -EAPI=7 -HOMEPAGE=https://www.mozilla.com/firefox -IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland 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 -KEYWORDS=-* amd64 x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-libs/atk dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-sound/pulseaudio ) selinux? ( sec-policy/selinux-mozilla ) -RESTRICT=strip -SLOT=0/esr78 -SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/en-US/firefox-78.4.1esr.tar.bz2 -> firefox-bin_x86_64-78.4.1.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-i686/en-US/firefox-78.4.1esr.tar.bz2 -> firefox-bin_i686-78.4.1.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ach.xpi -> firefox-78.4.1esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/af.xpi -> firefox-78.4.1esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/an.xpi -> firefox-78.4.1esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ar.xpi -> firefox-78.4.1esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ast.xpi -> firefox-78.4.1esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/az.xpi -> firefox-78.4.1esr-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/be.xpi -> firefox-78.4.1esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bg.xpi -> firefox-78.4.1esr-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bn.xpi -> firefox-78.4.1esr-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/br.xpi -> firefox-78.4.1esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/bs.xpi -> firefox-78.4.1esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-78.4.1esr-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ca.xpi -> firefox-78.4.1esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cak.xpi -> firefox-78.4.1esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cs.xpi -> firefox-78.4.1esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/cy.xpi -> firefox-78.4.1esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/da.xpi -> firefox-78.4.1esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/de.xpi -> firefox-78.4.1esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/dsb.xpi -> firefox-78.4.1esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/el.xpi -> firefox-78.4.1esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/en-CA.xpi -> firefox-78.4.1esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/en-GB.xpi -> firefox-78.4.1esr-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/eo.xpi -> firefox-78.4.1esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-AR.xpi -> firefox-78.4.1esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-CL.xpi -> firefox-78.4.1esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-ES.xpi -> firefox-78.4.1esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/es-MX.xpi -> firefox-78.4.1esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/et.xpi -> firefox-78.4.1esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/eu.xpi -> firefox-78.4.1esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fa.xpi -> firefox-78.4.1esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ff.xpi -> firefox-78.4.1esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fi.xpi -> firefox-78.4.1esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fr.xpi -> firefox-78.4.1esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-78.4.1esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-78.4.1esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gd.xpi -> firefox-78.4.1esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gl.xpi -> firefox-78.4.1esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gn.xpi -> firefox-78.4.1esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-78.4.1esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/he.xpi -> firefox-78.4.1esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-78.4.1esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hr.xpi -> firefox-78.4.1esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hsb.xpi -> firefox-78.4.1esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hu.xpi -> firefox-78.4.1esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-78.4.1esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ia.xpi -> firefox-78.4.1esr-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/id.xpi -> firefox-78.4.1esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/is.xpi -> firefox-78.4.1esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/it.xpi -> firefox-78.4.1esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ja.xpi -> firefox-78.4.1esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ka.xpi -> firefox-78.4.1esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kab.xpi -> firefox-78.4.1esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kk.xpi -> firefox-78.4.1esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/km.xpi -> firefox-78.4.1esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/kn.xpi -> firefox-78.4.1esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ko.xpi -> firefox-78.4.1esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lij.xpi -> firefox-78.4.1esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lt.xpi -> firefox-78.4.1esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/lv.xpi -> firefox-78.4.1esr-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/mk.xpi -> firefox-78.4.1esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/mr.xpi -> firefox-78.4.1esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ms.xpi -> firefox-78.4.1esr-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/my.xpi -> firefox-78.4.1esr-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-78.4.1esr-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-78.4.1esr-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nl.xpi -> firefox-78.4.1esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-78.4.1esr-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/oc.xpi -> firefox-78.4.1esr-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-78.4.1esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pl.xpi -> firefox-78.4.1esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-78.4.1esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-78.4.1esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/rm.xpi -> firefox-78.4.1esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ro.xpi -> firefox-78.4.1esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ru.xpi -> firefox-78.4.1esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/si.xpi -> firefox-78.4.1esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sk.xpi -> firefox-78.4.1esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sl.xpi -> firefox-78.4.1esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/son.xpi -> firefox-78.4.1esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sq.xpi -> firefox-78.4.1esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sr.xpi -> firefox-78.4.1esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-78.4.1esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ta.xpi -> firefox-78.4.1esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/te.xpi -> firefox-78.4.1esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/th.xpi -> firefox-78.4.1esr-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/tl.xpi -> firefox-78.4.1esr-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/tr.xpi -> firefox-78.4.1esr-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/trs.xpi -> firefox-78.4.1esr-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/uk.xpi -> firefox-78.4.1esr-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/ur.xpi -> firefox-78.4.1esr-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/uz.xpi -> firefox-78.4.1esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/vi.xpi -> firefox-78.4.1esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/xh.xpi -> firefox-78.4.1esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-78.4.1esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/78.4.1esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-78.4.1esr-zh-TW.xpi ) -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 pax-utils a41d1fd1c111289ffa04490de6ee79d7 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=72e111d1754d26c1102c4aafd47efce1 diff --git a/metadata/md5-cache/www-client/firefox-bin-82.0.3 b/metadata/md5-cache/www-client/firefox-bin-82.0.3 deleted file mode 100644 index 0c455be556e4..000000000000 --- a/metadata/md5-cache/www-client/firefox-bin-82.0.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) -DEFINED_PHASES=install postinst postrm preinst prepare unpack -DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Firefox Web Browser -EAPI=7 -HOMEPAGE=https://www.mozilla.com/firefox -IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland 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 -KEYWORDS=-* amd64 x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) dev-libs/atk dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-sound/pulseaudio ) selinux? ( sec-policy/selinux-mozilla ) -RESTRICT=strip -SLOT=0/82 -SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/en-US/firefox-82.0.3.tar.bz2 -> firefox-bin_x86_64-82.0.3.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-i686/en-US/firefox-82.0.3.tar.bz2 -> firefox-bin_i686-82.0.3.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ach.xpi -> firefox-82.0.3-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/af.xpi -> firefox-82.0.3-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/an.xpi -> firefox-82.0.3-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ar.xpi -> firefox-82.0.3-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ast.xpi -> firefox-82.0.3-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/az.xpi -> firefox-82.0.3-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/be.xpi -> firefox-82.0.3-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bg.xpi -> firefox-82.0.3-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bn.xpi -> firefox-82.0.3-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/br.xpi -> firefox-82.0.3-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/bs.xpi -> firefox-82.0.3-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ca-valencia.xpi -> firefox-82.0.3-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ca.xpi -> firefox-82.0.3-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cak.xpi -> firefox-82.0.3-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cs.xpi -> firefox-82.0.3-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/cy.xpi -> firefox-82.0.3-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/da.xpi -> firefox-82.0.3-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/de.xpi -> firefox-82.0.3-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/dsb.xpi -> firefox-82.0.3-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/el.xpi -> firefox-82.0.3-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/en-CA.xpi -> firefox-82.0.3-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/en-GB.xpi -> firefox-82.0.3-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/eo.xpi -> firefox-82.0.3-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-AR.xpi -> firefox-82.0.3-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-CL.xpi -> firefox-82.0.3-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-ES.xpi -> firefox-82.0.3-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/es-MX.xpi -> firefox-82.0.3-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/et.xpi -> firefox-82.0.3-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/eu.xpi -> firefox-82.0.3-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fa.xpi -> firefox-82.0.3-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ff.xpi -> firefox-82.0.3-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fi.xpi -> firefox-82.0.3-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fr.xpi -> firefox-82.0.3-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/fy-NL.xpi -> firefox-82.0.3-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ga-IE.xpi -> firefox-82.0.3-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gd.xpi -> firefox-82.0.3-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gl.xpi -> firefox-82.0.3-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gn.xpi -> firefox-82.0.3-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/gu-IN.xpi -> firefox-82.0.3-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/he.xpi -> firefox-82.0.3-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hi-IN.xpi -> firefox-82.0.3-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hr.xpi -> firefox-82.0.3-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hsb.xpi -> firefox-82.0.3-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hu.xpi -> firefox-82.0.3-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/hy-AM.xpi -> firefox-82.0.3-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ia.xpi -> firefox-82.0.3-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/id.xpi -> firefox-82.0.3-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/is.xpi -> firefox-82.0.3-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/it.xpi -> firefox-82.0.3-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ja.xpi -> firefox-82.0.3-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ka.xpi -> firefox-82.0.3-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kab.xpi -> firefox-82.0.3-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kk.xpi -> firefox-82.0.3-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/km.xpi -> firefox-82.0.3-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/kn.xpi -> firefox-82.0.3-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ko.xpi -> firefox-82.0.3-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lij.xpi -> firefox-82.0.3-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lt.xpi -> firefox-82.0.3-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/lv.xpi -> firefox-82.0.3-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/mk.xpi -> firefox-82.0.3-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/mr.xpi -> firefox-82.0.3-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ms.xpi -> firefox-82.0.3-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/my.xpi -> firefox-82.0.3-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nb-NO.xpi -> firefox-82.0.3-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ne-NP.xpi -> firefox-82.0.3-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nl.xpi -> firefox-82.0.3-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/nn-NO.xpi -> firefox-82.0.3-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/oc.xpi -> firefox-82.0.3-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pa-IN.xpi -> firefox-82.0.3-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pl.xpi -> firefox-82.0.3-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pt-BR.xpi -> firefox-82.0.3-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/pt-PT.xpi -> firefox-82.0.3-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/rm.xpi -> firefox-82.0.3-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ro.xpi -> firefox-82.0.3-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ru.xpi -> firefox-82.0.3-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/si.xpi -> firefox-82.0.3-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sk.xpi -> firefox-82.0.3-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sl.xpi -> firefox-82.0.3-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/son.xpi -> firefox-82.0.3-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sq.xpi -> firefox-82.0.3-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sr.xpi -> firefox-82.0.3-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/sv-SE.xpi -> firefox-82.0.3-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ta.xpi -> firefox-82.0.3-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/te.xpi -> firefox-82.0.3-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/th.xpi -> firefox-82.0.3-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/tl.xpi -> firefox-82.0.3-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/tr.xpi -> firefox-82.0.3-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/trs.xpi -> firefox-82.0.3-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/uk.xpi -> firefox-82.0.3-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/ur.xpi -> firefox-82.0.3-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/uz.xpi -> firefox-82.0.3-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/vi.xpi -> firefox-82.0.3-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/xh.xpi -> firefox-82.0.3-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/zh-CN.xpi -> firefox-82.0.3-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/82.0.3/linux-x86_64/xpi/zh-TW.xpi -> firefox-82.0.3-zh-TW.xpi ) -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 pax-utils a41d1fd1c111289ffa04490de6ee79d7 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6a9f582c0aa3219ef98eddd11ac32e71 diff --git a/metadata/md5-cache/www-client/google-chrome-unstable-88.0.4315.5 b/metadata/md5-cache/www-client/google-chrome-unstable-88.0.4324.11 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-unstable-88.0.4315.5 rename to metadata/md5-cache/www-client/google-chrome-unstable-88.0.4324.11 index 3948f3aeab40..4f3dba2fae7b 100644 --- a/metadata/md5-cache/www-client/google-chrome-unstable-88.0.4315.5 +++ b/metadata/md5-cache/www-client/google-chrome-unstable-88.0.4324.11 @@ -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_88.0.4315.5-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_88.0.4324.11-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 98584e405e2b0264d37e8f728327fed1 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/microsoft-edge-dev-88.0.692.0 b/metadata/md5-cache/www-client/microsoft-edge-dev-88.0.702.0 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-dev-88.0.692.0 rename to metadata/md5-cache/www-client/microsoft-edge-dev-88.0.702.0 index 4bc04e545d9e..eb6f392c2a84 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-dev-88.0.692.0 +++ b/metadata/md5-cache/www-client/microsoft-edge-dev-88.0.702.0 @@ -8,6 +8,6 @@ LICENSE=microsoft-edge RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-fonts/liberation-fonts media-libs/alsa-lib media-libs/mesa[gbm] net-misc/wget net-print/cups sys-apps/dbus sys-apps/util-linux x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_88.0.692.0-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_88.0.702.0-1_amd64.deb _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=1d3e0209ecec241d2cc857c4d0cddc8f diff --git a/metadata/md5-cache/www-client/seamonkey-2.53.5.1 b/metadata/md5-cache/www-client/seamonkey-2.53.5.1 new file mode 100644 index 000000000000..ea3e80fdcfd0 --- /dev/null +++ b/metadata/md5-cache/www-client/seamonkey-2.53.5.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare pretend setup unpack +DEPEND=app-arch/unzip app-arch/zip dev-lang/perl sys-apps/findutils >=sys-devel/binutils-2.16.1 virtual/pkgconfig >=virtual/rust-1.34.0 amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) >=app-text/hunspell-1.5.4:= dev-libs/atk >=dev-libs/glib-2.26:2 >=dev-libs/libffi-3.0.10:= >=dev-libs/nspr-4.23 >=dev-libs/nss-3.47.1 media-libs/fontconfig >=media-libs/freetype-2.4.10 >=media-libs/libpng-1.6.31:0=[apng] >=media-libs/mesa-10.2:= >=sys-libs/zlib-1.2.3 >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 >=x11-libs/pixman-0.19.2 media-video/ffmpeg virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 >=sys-apps/dbus-0.60 ) jack? ( virtual/jack ) crypt? ( =media-sound/apulse-0.1.9 ) ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.9-r1 >=media-libs/harfbuzz-1.3.3:0= ) system-icu? ( >=dev-libs/icu-59.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-libvpx? ( >=media-libs/libvpx-1.8.0:0=[postproc] ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) wifi? ( kernel_linux? ( >=dev-libs/dbus-glib-0.72 net-misc/networkmanager >=sys-apps/dbus-0.60 ) ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) >=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 virtual/pkgconfig dev-lang/python:2.7[ncurses,sqlite,ssl,threads(+)] || ( dev-lang/python:3.9[ncurses,sqlite,ssl,threads(+)] dev-lang/python:3.8[ncurses,sqlite,ssl,threads(+)] dev-lang/python:3.7[ncurses,sqlite,ssl,threads(+)] dev-lang/python:3.6[ncurses,sqlite,ssl,threads(+)] ) app-arch/unzip +DESCRIPTION=Seamonkey Web Browser +EAPI=6 +HOMEPAGE=http://www.seamonkey-project.org +IUSE=+calendar +chatzilla +crypt dbus debug +gmp-autoupdate +ipc jack minimal neon pulseaudio +roaming selinux startup-notification +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-sqlite +system-libvpx test wifi custom-cflags custom-optimization l10n_cs l10n_de l10n_en-GB l10n_es-AR l10n_es-ES l10n_fr l10n_hu l10n_it l10n_ja l10n_lt l10n_nl l10n_pl l10n_pt-PT l10n_ru l10n_sk l10n_sv l10n_zh-CN l10n_zh-TW +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=app-text/hunspell-1.5.4:= dev-libs/atk >=dev-libs/glib-2.26:2 >=dev-libs/libffi-3.0.10:= >=dev-libs/nspr-4.23 >=dev-libs/nss-3.47.1 media-libs/fontconfig >=media-libs/freetype-2.4.10 >=media-libs/libpng-1.6.31:0=[apng] >=media-libs/mesa-10.2:= >=sys-libs/zlib-1.2.3 >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 >=x11-libs/pixman-0.19.2 media-video/ffmpeg virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 >=sys-apps/dbus-0.60 ) jack? ( virtual/jack ) crypt? ( =media-sound/apulse-0.1.9 ) ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.9-r1 >=media-libs/harfbuzz-1.3.3:0= ) system-icu? ( >=dev-libs/icu-59.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-libvpx? ( >=media-libs/libvpx-1.8.0:0=[postproc] ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) wifi? ( kernel_linux? ( >=dev-libs/dbus-glib-0.72 net-misc/networkmanager >=sys-apps/dbus-0.60 ) ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source.tar.xz -> seamonkey-2.53.5.1.source.tar.xz https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source-l10n.tar.xz -> seamonkey-2.53.5.1.source-l10n.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.53.5_beta1-patches-02.tar.xz system-libvpx? ( https://dev.gentoo.org/~polynomial-c/mozilla/seamonkey-2.53.3-system_libvpx-1.8.patch.xz ) +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mozcoreconf-v6 129723b9b03cb06a0b3c8e1f68748c94 mozextension 798d8c84c9e7a8105e56c9eb6626e643 mozlinguas-v2 7559b4e56a88d67da4e96e77296f723c multilib 98584e405e2b0264d37e8f728327fed1 nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=07fce547378e3ac6d3d237084de44aa7 diff --git a/metadata/md5-cache/www-misc/Manifest.gz b/metadata/md5-cache/www-misc/Manifest.gz index 3b6f6ef55712..f7092b5399ec 100644 Binary files a/metadata/md5-cache/www-misc/Manifest.gz and b/metadata/md5-cache/www-misc/Manifest.gz differ diff --git a/metadata/md5-cache/www-misc/monitorix-3.12.0 b/metadata/md5-cache/www-misc/monitorix-3.12.0 index bbe0edd09355..a50b63d52453 100644 --- a/metadata/md5-cache/www-misc/monitorix-3.12.0 +++ b/metadata/md5-cache/www-misc/monitorix-3.12.0 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile install postinst prepare DESCRIPTION=A lightweight system monitoring tool EAPI=7 HOMEPAGE=https://www.monitorix.org/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=acct-user/monitorix acct-group/monitorix dev-perl/Config-General dev-perl/DBI dev-perl/HTTP-Server-Simple dev-perl/IO-Socket-SSL dev-perl/libwww-perl dev-perl/MIME-Lite dev-perl/XML-Simple net-analyzer/rrdtool[graph,perl] dev-perl/CGI SLOT=0 SRC_URI=https://www.monitorix.org/monitorix-3.12.0.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=659b0c47677f25f7312999c58a21281e +_md5_=73bb6bb252504448300bd36193cd7de2 diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index 4e21b8b5862c..9d1da03919ac 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-88.0.4315.5_alpha b/metadata/md5-cache/www-plugins/chrome-binary-plugins-88.0.4324.11_alpha similarity index 90% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-88.0.4315.5_alpha rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-88.0.4324.11_alpha index 68ba7c4ac68f..b00fa05fa549 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-88.0.4315.5_alpha +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-88.0.4324.11_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_88.0.4315.5-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_88.0.4324.11-1_amd64.deb _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 _md5_=3259de859b5903477401255248b093eb diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 9c061f46b63d..119080301720 100644 Binary files a/metadata/md5-cache/www-servers/Manifest.gz and b/metadata/md5-cache/www-servers/Manifest.gz differ diff --git a/metadata/md5-cache/www-servers/pshs-0.3.4 b/metadata/md5-cache/www-servers/pshs-0.3.4 deleted file mode 100644 index f0723cc38592..000000000000 --- a/metadata/md5-cache/www-servers/pshs-0.3.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure -DEPEND=>=dev-libs/libevent-2:0= magic? ( sys-apps/file:0= ) qrcode? ( media-gfx/qrencode:0= ) ssl? ( >=dev-libs/libevent-2.1:0=[ssl] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) upnp? ( net-libs/miniupnpc:0= ) netlink? ( sys-apps/iproute2[-minimal] >=sys-kernel/linux-headers-2.6.27 ) -DESCRIPTION=Pretty small HTTP server -- a command-line tool to share files -EAPI=6 -HOMEPAGE=https://github.com/mgorny/pshs/ -IUSE=libressl +magic +netlink qrcode ssl upnp -KEYWORDS=amd64 x86 -LICENSE=BSD -RDEPEND=>=dev-libs/libevent-2:0= magic? ( sys-apps/file:0= ) qrcode? ( media-gfx/qrencode:0= ) ssl? ( >=dev-libs/libevent-2.1:0=[ssl] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) upnp? ( net-libs/miniupnpc:0= ) -SLOT=0 -SRC_URI=https://github.com/mgorny/pshs/releases/download/v0.3.4/pshs-0.3.4.tar.bz2 -_md5_=ad186eb0dfa9cff8bffd9d9485390aee diff --git a/metadata/md5-cache/www-servers/pshs-0.3.5 b/metadata/md5-cache/www-servers/pshs-0.3.5 deleted file mode 100644 index f344e463fa44..000000000000 --- a/metadata/md5-cache/www-servers/pshs-0.3.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure -DEPEND=>=dev-libs/libevent-2:0= magic? ( sys-apps/file:0= ) qrcode? ( media-gfx/qrencode:0= ) ssl? ( >=dev-libs/libevent-2.1:0=[ssl] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) upnp? ( net-libs/miniupnpc:0= ) -DESCRIPTION=Pretty small HTTP server -- a command-line tool to share files -EAPI=7 -HOMEPAGE=https://github.com/mgorny/pshs/ -IUSE=libressl +magic qrcode ssl upnp -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=>=dev-libs/libevent-2:0= magic? ( sys-apps/file:0= ) qrcode? ( media-gfx/qrencode:0= ) ssl? ( >=dev-libs/libevent-2.1:0=[ssl] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) upnp? ( net-libs/miniupnpc:0= ) -SLOT=0 -SRC_URI=https://github.com/mgorny/pshs/releases/download/v0.3.5/pshs-0.3.5.tar.bz2 -_md5_=d1efcc9dd5afdc30389a2e994b766c93 diff --git a/metadata/md5-cache/x11-apps/Manifest.gz b/metadata/md5-cache/x11-apps/Manifest.gz index 0233f22c2a6b..dab4291705bc 100644 Binary files a/metadata/md5-cache/x11-apps/Manifest.gz and b/metadata/md5-cache/x11-apps/Manifest.gz differ diff --git a/metadata/md5-cache/x11-apps/xprop-1.2.5 b/metadata/md5-cache/x11-apps/xprop-1.2.5 new file mode 100644 index 000000000000..b9d2752b52ab --- /dev/null +++ b/metadata/md5-cache/x11-apps/xprop-1.2.5 @@ -0,0 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm prepare unpack +DEPEND=x11-libs/libX11 x11-base/xorg-proto +DESCRIPTION=property displayer for X +EAPI=7 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/app/xprop +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=x11-libs/libX11 +SLOT=0 +SRC_URI=https://www.x.org/releases/individual/app/xprop-1.2.5.tar.bz2 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xorg-3 5b0ceb032e8a8d1eefb9343124ed2c50 +_md5_=b8f7c57c40111b0818fba884f2cff03b diff --git a/metadata/md5-cache/x11-drivers/Manifest.gz b/metadata/md5-cache/x11-drivers/Manifest.gz index 87cd95d100b0..ff1078c645c8 100644 Binary files a/metadata/md5-cache/x11-drivers/Manifest.gz and b/metadata/md5-cache/x11-drivers/Manifest.gz differ diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r4 b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r5 similarity index 55% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r4 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r5 index 440f9f13738e..9937a50603c0 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r4 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.132-r5 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 ~x86 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) tools? ( !media-video/nvidia-settings ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) tools? ( !media-video/nvidia-settings ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/390 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/390.132/NVIDIA-FreeBSD-x86_64-390.132.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/390.132/NVIDIA-Linux-x86_64-390.132.run ) arm? ( https://us.download.nvidia.com/XFree86/Linux-x86-ARM/390.132/NVIDIA-Linux-armv7l-gnueabihf-390.132.run ) x86-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86/390.132/NVIDIA-FreeBSD-x86-390.132.tar.gz ) x86? ( https://us.download.nvidia.com/XFree86/Linux-x86/390.132/NVIDIA-Linux-x86-390.132.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-390.132.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1b2c89c4469cbba6b1b9cf361a70c4df +_md5_=4894e10a202767e81733f12bda4a5a2d diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r4 b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r5 similarity index 55% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r4 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r5 index bb8b5be1af42..627c15cbd37d 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r4 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-390.138-r5 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 x86 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) libglvnd? ( media-libs/libglvnd[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(-)?] !app-eselect/eselect-opengl ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/390 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/390.138/NVIDIA-FreeBSD-x86_64-390.138.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/390.138/NVIDIA-Linux-x86_64-390.138.run ) arm? ( https://us.download.nvidia.com/XFree86/Linux-x86-ARM/390.138/NVIDIA-Linux-armv7l-gnueabihf-390.138.run ) x86-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86/390.138/NVIDIA-FreeBSD-x86-390.138.tar.gz ) x86? ( https://us.download.nvidia.com/XFree86/Linux-x86/390.138/NVIDIA-Linux-x86-390.138.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-390.138.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=51fb8e0d0f13ed4cab7530da1ed56634 +_md5_=dd8994dd3e18cf6b7954df1d180b3e29 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r6 b/metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r7 similarity index 54% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r6 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r7 index b86c3c7c1f6e..1661000cf456 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r6 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-435.21-r7 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/435 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/435.21/NVIDIA-FreeBSD-x86_64-435.21.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/435.21/NVIDIA-Linux-x86_64-435.21.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-435.21.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=28a3539e0cbd019090c86abfe27887fc +_md5_=ad557ff415731687476d73d25abac52f diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r2 b/metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r3 similarity index 55% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r2 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r3 index 198c236a5eb9..df4a65842a2a 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r2 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-440.100-r3 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( libglvnd? ( media-libs/libglvnd[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(-)?] ) app-misc/pax-utils ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libvdpau-1.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(-)?] sys-libs/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(-)?] ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/440 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/440.100/NVIDIA-FreeBSD-x86_64-440.100.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/440.100/NVIDIA-Linux-x86_64-440.100.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-440.100.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=791539f58b34ce0f789a3da07a8973eb +_md5_=27b88bb267fc76dac2c486a2b9fc569b diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02 b/metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02-r1 similarity index 52% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02-r1 index d803b7ed3412..43c7f9e0961e 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-450.80.02-r1 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/450 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/450.80.02/NVIDIA-FreeBSD-x86_64-450.80.02.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/450.80.02/NVIDIA-Linux-x86_64-450.80.02.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-450.80.02.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=36985b4ae8459817638ec6d803f43e8e +_md5_=e7ab1f4549e4f5c9256ff089f2ee8c72 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-455.28 b/metadata/md5-cache/x11-drivers/nvidia-drivers-455.28-r1 similarity index 52% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-455.28 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-455.28-r1 index 2ddb9835b176..c7da122c3f0b 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-455.28 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-455.28-r1 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/455 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/455.28/NVIDIA-FreeBSD-x86_64-455.28.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/455.28/NVIDIA-Linux-x86_64-455.28.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-455.28.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7eb0a553543894578c97cdfdb5597731 +_md5_=8e637f25b00a863198d5718cda20f088 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-455.38 b/metadata/md5-cache/x11-drivers/nvidia-drivers-455.38-r1 similarity index 52% rename from metadata/md5-cache/x11-drivers/nvidia-drivers-455.38 rename to metadata/md5-cache/x11-drivers/nvidia-drivers-455.38-r1 index b758ea8955a6..c62c8d62a653 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-455.38 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-455.38-r1 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig virtual/pkgconfig DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils +DEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) kernel_linux? ( virtual/linux-sources ) tools? ( sys-apps/dbus ) kernel_linux? ( sys-apps/kmod[tools] ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) sys-apps/pciutils DESCRIPTION=NVIDIA Accelerated Graphics Driver EAPI=7 HOMEPAGE=https://www.nvidia.com/Download/Find.aspx IUSE=compat +driver gtk3 kernel_FreeBSD kernel_linux +kms +libglvnd multilib static-libs +tools uvm wayland +X kernel_linux kernel_linux kernel_linux 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 LICENSE=GPL-2 NVIDIA-r2 -RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) +RDEPEND=driver? ( kernel_linux? ( acct-group/video ) ) kernel_linux? ( >=sys-libs/glibc-2.6.1 ) tools? ( dev-libs/atk dev-libs/glib:2 dev-libs/jansson gtk3? ( x11-libs/gtk+:3 ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXv x11-libs/libXxf86vm x11-libs/pango[X] ) X? ( >=x11-libs/libvdpau-1.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(-)?] app-misc/pax-utils libglvnd? ( media-libs/libglvnd[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(-)?] ) ) uvm? ( >=virtual/opencl-3 ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( =x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kernel_linux? ( net-libs/libtirpc ) kernel_linux? ( sys-apps/kmod[tools] ) REQUIRED_USE=tools? ( X ) static-libs? ( tools ) RESTRICT=bindist mirror test SLOT=0/455 SRC_URI=amd64-fbsd? ( https://us.download.nvidia.com/XFree86/FreeBSD-x86_64/455.38/NVIDIA-FreeBSD-x86_64-455.38.tar.gz ) amd64? ( https://us.download.nvidia.com/XFree86/Linux-x86_64/455.38/NVIDIA-Linux-x86_64-455.38.run ) tools? ( https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-455.38.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 nvidia-driver 88985b2bdec6b189a822e52048cd01af portability e8f7ef3a41965b21a734550f8a94c1c6 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a230bfb588dd1ad5d1b3ad20792443d1 +_md5_=cb7d1a1837fcebffb1587fe7b59c08f3 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index dbb80c2f6e13..cbd0c44cff24 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/libxcb-1.14 b/metadata/md5-cache/x11-libs/libxcb-1.14 index 3384fa7db3dd..3db1782e6420 100644 --- a/metadata/md5-cache/x11-libs/libxcb-1.14 +++ b/metadata/md5-cache/x11-libs/libxcb-1.14 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0/1.12 SRC_URI=https://www.x.org/releases/individual/lib/libxcb-1.14.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xorg-3 5b0ceb032e8a8d1eefb9343124ed2c50 -_md5_=028ebc5480150de5ad78d025f3fa79a1 +_md5_=db15594293847b1b8a0208422199037f diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 053dd5ac2b30..649a768c2c7b 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/screengrab-2.0.1 b/metadata/md5-cache/x11-misc/screengrab-2.0.1 index 5d3faaaf9043..177cf3beef82 100644 --- a/metadata/md5-cache/x11-misc/screengrab-2.0.1 +++ b/metadata/md5-cache/x11-misc/screengrab-2.0.1 @@ -4,10 +4,10 @@ DEPEND=>=dev-libs/libqtxdg-3.5.0 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 DESCRIPTION=Qt GUI Screenshot Utility EAPI=7 HOMEPAGE=https://lxqt.github.io/ -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 x86 LICENSE=GPL-2 GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/libqtxdg-3.5.0 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtnetwork:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libxcb x11-libs/libX11 x11-libs/libXfixes SLOT=0 SRC_URI=https://github.com/lxqt/screengrab/releases/download/2.0.1/screengrab-2.0.1.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3b6e7200396e9a4845d55e6f664b19c1 +_md5_=da42e3d15f8c88dc9f7e5f5a30a44e6a diff --git a/metadata/md5-cache/x11-misc/xscreensaver-5.38-r1 b/metadata/md5-cache/x11-misc/xscreensaver-5.38-r1 deleted file mode 100644 index 66106d3e1a1e..000000000000 --- a/metadata/md5-cache/x11-misc/xscreensaver-5.38-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/gdk-pixbuf:2[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) dev-util/intltool sys-devel/bc sys-devel/gettext virtual/pkgconfig x11-base/xorg-proto >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=A modular screen saver and locker for the X Window System -EAPI=6 -HOMEPAGE=https://www.jwz.org/xscreensaver/ -IUSE=gdm jpeg new-login offensive opengl pam +perl selinux suid xinerama -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/gdk-pixbuf:2[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) perl? ( dev-lang/perl dev-perl/libwww-perl virtual/perl-Digest-MD5 ) selinux? ( sec-policy/selinux-xscreensaver ) -SLOT=0 -SRC_URI=https://www.jwz.org/xscreensaver/xscreensaver-5.38.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=32db5cb1553760894b2e383fcf2bc3aa diff --git a/metadata/md5-cache/x11-misc/xscreensaver-5.38-r2 b/metadata/md5-cache/x11-misc/xscreensaver-5.38-r2 new file mode 100644 index 000000000000..19cde51cb371 --- /dev/null +++ b/metadata/md5-cache/x11-misc/xscreensaver-5.38-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0: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 +DESCRIPTION=A modular screen saver and locker for the X Window System +EAPI=6 +HOMEPAGE=https://www.jwz.org/xscreensaver/ +IUSE=gdm jpeg new-login offensive opengl pam +perl selinux suid xinerama +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0: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=configure install prepare -DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/gdk-pixbuf:2[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) dev-util/intltool sys-devel/bc sys-devel/gettext virtual/pkgconfig x11-base/xorg-proto -DESCRIPTION=A modular screen saver and locker for the X Window System -EAPI=7 -HOMEPAGE=https://www.jwz.org/xscreensaver/ -IUSE=caps gdm jpeg new-login offensive opengl pam +perl selinux suid xinerama -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/gdk-pixbuf:2[X] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) perl? ( dev-lang/perl dev-perl/libwww-perl virtual/perl-Digest-MD5 ) selinux? ( sec-policy/selinux-xscreensaver ) -SLOT=0 -SRC_URI=https://www.jwz.org/xscreensaver/xscreensaver-5.43.tar.gz -> xscreensaver-5.43-r1.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f737da76750e5684bc17e65058a15247 diff --git a/metadata/md5-cache/x11-misc/xscreensaver-5.43-r4 b/metadata/md5-cache/x11-misc/xscreensaver-5.43-r4 new file mode 100644 index 000000000000..f523c69ebe4b --- /dev/null +++ b/metadata/md5-cache/x11-misc/xscreensaver-5.43-r4 @@ -0,0 +1,14 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install prepare +DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 ) =gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 ) xscreensaver-5.43-r1.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=7136a3ba0c6c0ca507c7b56bcf58de70 diff --git a/metadata/md5-cache/x11-misc/xscreensaver-5.44-r2 b/metadata/md5-cache/x11-misc/xscreensaver-5.44-r3 similarity index 63% rename from metadata/md5-cache/x11-misc/xscreensaver-5.44-r2 rename to metadata/md5-cache/x11-misc/xscreensaver-5.44-r3 index b82c540e0469..784ce2bd2d16 100644 --- a/metadata/md5-cache/x11-misc/xscreensaver-5.44-r2 +++ b/metadata/md5-cache/x11-misc/xscreensaver-5.44-r3 @@ -1,15 +1,15 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare -DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[X] ) gtk? ( x11-libs/gtk+:2 ) jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) dev-util/intltool sys-devel/bc sys-devel/gettext virtual/pkgconfig x11-base/xorg-proto +DEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) gdk-pixbuf? ( || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 ) =gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[X] ) gtk? ( x11-libs/gtk+:2 ) jpeg? ( virtual/jpeg:0 ) new-login? ( gdm? ( gnome-base/gdm ) !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) ) ) opengl? ( virtual/glu virtual/opengl ) pam? ( sys-libs/pam ) xinerama? ( x11-libs/libXinerama ) perl? ( dev-lang/perl dev-perl/libwww-perl virtual/perl-Digest-MD5 ) selinux? ( sec-policy/selinux-xscreensaver ) +RDEPEND=>=gnome-base/libglade-2 dev-libs/libxml2 media-libs/netpbm x11-apps/appres x11-apps/xwininfo x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXi x11-libs/libXmu x11-libs/libXrandr x11-libs/libXt x11-libs/libXxf86vm caps? ( sys-libs/libcap ) gdk-pixbuf? ( || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 ) =sys-devel/gettext-0.19.6 ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install prepare unpack -DEPEND=media-libs/fontconfig x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libICE x11-libs/libSM x11-libs/libXft x11-libs/libXpm x11-libs/libXrandr alsa? ( media-libs/alsa-lib media-libs/libsndfile[alsa] ) ao? ( media-libs/libao media-libs/libsndfile ) bidi? ( dev-libs/fribidi ) gdk-pixbuf? ( || ( ( x11-libs/gdk-pixbuf-xlib >=x11-libs/gdk-pixbuf-2.42.0:2 ) =x11-libs/gdk-pixbuf-2.42.0:2 ) =dev-libs/glib-2.42:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10 ) introspection? ( dev-libs/gobject-introspection:= ) libgtop? ( gnome-base/libgtop ) startup-notification? ( x11-libs/startup-notification ) +DESCRIPTION=Unified widget and session management libs for Xfce +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage +IUSE=debug glade introspection libgtop startup-notification vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2+ GPL-2+ +RDEPEND=>=dev-libs/glib-2.42:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10 ) introspection? ( dev-libs/gobject-introspection:= ) libgtop? ( gnome-base/libgtop ) startup-notification? ( x11-libs/startup-notification ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/libxfce4ui/4.15/libxfce4ui-4.15.5.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vala 2cd99cd72bb91f3f190fa4ca576be580 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=c4d0548d9d7613f2d06046c294a209aa diff --git a/metadata/md5-cache/xfce-base/thunar-1.8.15 b/metadata/md5-cache/xfce-base/thunar-1.8.15 deleted file mode 100644 index e294f43913b9..000000000000 --- a/metadata/md5-cache/xfce-base/thunar-1.8.15 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-3.22:3 >=xfce-base/exo-0.12:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/libxfce4util-4.12:= >=xfce-base/xfconf-4.12:= exif? ( >=media-libs/libexif-0.6.19:= ) introspection? ( dev-libs/gobject-introspection:= ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( dev-libs/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=File manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ https://docs.xfce.org/xfce/thunar/start -IUSE=exif introspection libnotify pcre +trash-panel-plugin udisks -KEYWORDS=~alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ LGPL-2+ -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-3.22:3 >=xfce-base/exo-0.12:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/libxfce4util-4.12:= >=xfce-base/xfconf-4.12:= exif? ( >=media-libs/libexif-0.6.19:= ) introspection? ( dev-libs/gobject-introspection:= ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( dev-libs/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) -SLOT=0/3 -SRC_URI=https://archive.xfce.org/src/xfce/thunar/1.8/thunar-1.8.15.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=851ff9e80ead422bfe511c76853f434f diff --git a/metadata/md5-cache/xfce-base/thunar-4.15.2 b/metadata/md5-cache/xfce-base/thunar-4.15.2 deleted file mode 100644 index 9de0a3679fb9..000000000000 --- a/metadata/md5-cache/xfce-base/thunar-4.15.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-3.22:3 >=xfce-base/exo-0.12:= >=xfce-base/libxfce4ui-4.15.3:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.12:= exif? ( >=media-libs/libexif-0.6.19:= ) introspection? ( dev-libs/gobject-introspection:= ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( dev-libs/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=File manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ https://docs.xfce.org/xfce/thunar/start -IUSE=exif introspection libnotify pcre +trash-panel-plugin udisks -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ LGPL-2+ -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-3.22:3 >=xfce-base/exo-0.12:= >=xfce-base/libxfce4ui-4.15.3:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.12:= exif? ( >=media-libs/libexif-0.6.19:= ) introspection? ( dev-libs/gobject-introspection:= ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( dev-libs/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) -SLOT=0/3 -SRC_URI=https://archive.xfce.org/src/xfce/thunar/4.15/thunar-4.15.2.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cf3023ab11927db753ba919b320b1ed8 diff --git a/metadata/md5-cache/xfce-base/xfce4-meta-4.16_pre2 b/metadata/md5-cache/xfce-base/xfce4-meta-4.16_pre2 new file mode 100644 index 000000000000..24ae0aa14aa1 --- /dev/null +++ b/metadata/md5-cache/xfce-base/xfce4-meta-4.16_pre2 @@ -0,0 +1,10 @@ +DEFINED_PHASES=- +DESCRIPTION=The Xfce Desktop Environment (meta package) +EAPI=7 +HOMEPAGE=https://www.xfce.org/ +IUSE=minimal +svg upower +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=metapackage +RDEPEND=x11-themes/hicolor-icon-theme >=xfce-base/exo-4.15.3 >=xfce-base/garcon-0.7.2 >=xfce-base/libxfce4ui-4.15.5 >=xfce-base/libxfce4util-4.15.4 >=xfce-base/thunar-4.15.3 >=xfce-base/xfce4-appfinder-4.15.2 >=xfce-base/xfce4-panel-4.15.5 >=xfce-base/xfce4-session-4.15.1 >=xfce-base/xfce4-settings-4.15.3 x11-terms/xfce4-terminal >=xfce-base/xfconf-4.15.1 >=xfce-base/xfdesktop-4.15.1 >=xfce-base/xfwm4-4.15.3 >=xfce-extra/thunar-volman-4.15.1 >=xfce-extra/tumbler-0.3.1 !minimal? ( media-fonts/dejavu virtual/freedesktop-icon-theme ) svg? ( gnome-base/librsvg ) upower? ( >=xfce-extra/xfce4-power-manager-1.7.1 ) +SLOT=0 +_md5_=9ca38a5f9a87326cfe187892c0205771 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.14.2-r1 b/metadata/md5-cache/xfce-base/xfdesktop-4.14.2-r1 deleted file mode 100644 index d9cd4cbf0ade..000000000000 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.14.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=x11-libs/cairo-1.12 >=dev-libs/glib-2.42 >=x11-libs/gtk+-3.22:3 >=x11-libs/libwnck-3.14:3 x11-libs/libX11 >=xfce-base/exo-0.11:= >=xfce-base/garcon-0.6:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:= >=xfce-base/xfconf-4.12.1:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=xfce-base/thunar-1.7:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=Desktop manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=debug libnotify +thunar -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=x11-libs/cairo-1.12 >=dev-libs/glib-2.42 >=x11-libs/gtk+-3.22:3 >=x11-libs/libwnck-3.14:3 x11-libs/libX11 >=xfce-base/exo-0.11:= >=xfce-base/garcon-0.6:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:= >=xfce-base/xfconf-4.12.1:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=xfce-base/thunar-1.7:= ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfdesktop/4.14/xfdesktop-4.14.2.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5317ae7826e52b02802b79aba646fc21 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.15.0 b/metadata/md5-cache/xfce-base/xfdesktop-4.15.0 deleted file mode 100644 index 7476ca70a49e..000000000000 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.15.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=x11-libs/cairo-1.12 >=dev-libs/glib-2.42 >=x11-libs/gtk+-3.22:3 >=x11-libs/libwnck-3.14:3 x11-libs/libX11 >=xfce-base/exo-0.11:= >=xfce-base/garcon-0.6:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:= >=xfce-base/xfconf-4.12.1:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=xfce-base/thunar-1.7:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=Desktop manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=debug libnotify +thunar -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=x11-libs/cairo-1.12 >=dev-libs/glib-2.42 >=x11-libs/gtk+-3.22:3 >=x11-libs/libwnck-3.14:3 x11-libs/libX11 >=xfce-base/exo-0.11:= >=xfce-base/garcon-0.6:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:= >=xfce-base/xfconf-4.12.1:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=xfce-base/thunar-1.7:= ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfdesktop/4.15/xfdesktop-4.15.0.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=06d01a1a9fa4eb7746ce2cb1c9333c59 diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.14.2 b/metadata/md5-cache/xfce-base/xfwm4-4.14.2 deleted file mode 100644 index 62502b7a8ea4..000000000000 --- a/metadata/md5-cache/xfce-base/xfwm4-4.14.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig -DESCRIPTION=Window manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=opengl startup-notification +xcomposite +xpresent -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfwm4/4.14/xfwm4-4.14.2.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0f72d1e48f8a85c8db4ec754c3d2ea2f diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.14.5 b/metadata/md5-cache/xfce-base/xfwm4-4.14.5 deleted file mode 100644 index 0e6862c92c6b..000000000000 --- a/metadata/md5-cache/xfce-base/xfwm4-4.14.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig -DESCRIPTION=Window manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=opengl startup-notification +xcomposite +xpresent -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfwm4/4.14/xfwm4-4.14.5.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=05835e906aa01b5c526ccb5b0f9a3be2 diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.15.1 b/metadata/md5-cache/xfce-base/xfwm4-4.15.1 deleted file mode 100644 index 290d9ab9b879..000000000000 --- a/metadata/md5-cache/xfce-base/xfwm4-4.15.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig -DESCRIPTION=Window manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=opengl startup-notification +xcomposite +xpresent -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfwm4/4.15/xfwm4-4.15.1.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d0692117c2ae27e4c1ad20490b01f7be diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.15.2 b/metadata/md5-cache/xfce-base/xfwm4-4.15.2 deleted file mode 100644 index dad02b1b6326..000000000000 --- a/metadata/md5-cache/xfce-base/xfwm4-4.15.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig -DESCRIPTION=Window manager for the Xfce desktop environment -EAPI=7 -HOMEPAGE=https://www.xfce.org/projects/ -IUSE=opengl startup-notification +xcomposite +xpresent -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-3.20:3 x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXres x11-libs/pango >=x11-libs/libwnck-3.14:3 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfconf-4.13:= opengl? ( media-libs/libepoxy:=[X(+)] ) startup-notification? ( x11-libs/startup-notification ) xpresent? ( x11-libs/libXpresent ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/xfwm4/4.15/xfwm4-4.15.2.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c193ed58d32a3ca1066ed357a394c839 diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz index c1fc3f6ecc50..1706865e62ab 100644 Binary files a/metadata/md5-cache/xfce-extra/Manifest.gz and b/metadata/md5-cache/xfce-extra/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.3 b/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.3 deleted file mode 100644 index 7d3d4b117169..000000000000 --- a/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm -DEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-3.22:3 x11-libs/libX11 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfce4-panel-4.10:= dev-util/gdbus-codegen dev-util/intltool virtual/pkgconfig -DESCRIPTION=A dict.org querying application and panel plug-in for the Xfce desktop -EAPI=7 -HOMEPAGE=https://goodies.xfce.org/projects/applications/xfce4-dict -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-3.22:3 x11-libs/libX11 >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfce4-panel-4.10:= -SLOT=0 -SRC_URI=https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.3.tar.bz2 -_eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2b0c5b60c4723c3ead6b6ac56329574b diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index a052a264e5e4..b77077aa718f 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 18 Nov 2020 06:38:22 +0000 +Fri, 20 Nov 2020 05:08:24 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index ec1e89c27fbc..1256883dda10 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed 18 Nov 2020 06:38:22 AM UTC +Fri 20 Nov 2020 05:08:24 AM UTC diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 0e7ed4f7b955..7950e1cde1c1 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 18 Nov 2020 07:00:01 +0000 +Fri, 20 Nov 2020 05:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index f80c0b512165..63a98854919c 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -d7378ebd1ff2078ab7740b2870d6b1de4cbf43a2 1605677534 2020-11-18T05:32:14+00:00 +916793ed4f9121dd0cf571f86b37611354904719 1605848098 2020-11-20T04:54:58+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index e892c47fb5ce..7764c4c3c1b3 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1605681301 Wed 18 Nov 2020 06:35:01 AM UTC +1605848701 Fri 20 Nov 2020 05:05:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index a052a264e5e4..b77077aa718f 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 18 Nov 2020 06:38:22 +0000 +Fri, 20 Nov 2020 05:08:24 +0000 diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index de3676481773..fb966c0c61de 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/libidn/Manifest b/net-dns/libidn/Manifest index a05db97630fe..7d30534963a4 100644 --- a/net-dns/libidn/Manifest +++ b/net-dns/libidn/Manifest @@ -1,2 +1 @@ -DIST libidn-1.35.tar.gz 4169217 BLAKE2B 809f9e854a4f2fcd3b2d5f7cdb34e2c68a0f00f5fcffc9002ead2d2d3dcee38022b3288f29716437f65f09e259e35cc98679d9c9d943423190cebb76fcbc94fa SHA512 782260f73b1fd8ebea8a40e2b3a6866c4f67494b2b3df03748daa9c0f842a9578932e746eb4bbf2547fccb1d65d7fc99a7977759dbe58f87f2fdd26d0fe45a09 DIST libidn-1.36.tar.gz 4557804 BLAKE2B 562ea97cba7970e3f3bd1557ba9e25e4180cca1b5cb8f66539f7830baf195cd36dc513c50e2475829af42d420e3d3b73a1c002acb06579c8b8b3879dcc8f95b2 SHA512 0d66e10bf7a8de4b27f692a427d2c8e901b8bed73b0a36268d8f939205df81f6a30f0634fd3b87370d4e81c1327c0b10391fa122a0a5459c32a3541b8a2149ad diff --git a/net-dns/libidn/libidn-1.35.ebuild b/net-dns/libidn/libidn-1.35.ebuild deleted file mode 100644 index 448eff85d7ee..000000000000 --- a/net-dns/libidn/libidn-1.35.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit elisp-common java-pkg-opt-2 mono-env multilib-minimal libtool ltprune - -DESCRIPTION="Internationalized Domain Names (IDN) implementation" -HOMEPAGE="https://www.gnu.org/software/libidn/" -SRC_URI="mirror://gnu/libidn/${P}.tar.gz" - -LICENSE="GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 )" -SLOT="0/12" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 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" -IUSE="doc emacs java mono nls static-libs" - -DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO ) -COMMON_DEPEND=" - emacs? ( >=app-editors/emacs-23.1:* ) - mono? ( >=dev-lang/mono-0.95 ) -" -DEPEND="${COMMON_DEPEND} - nls? ( - >=sys-devel/gettext-0.17 - ) - java? ( - >=virtual/jdk-1.5 - ) -" -RDEPEND="${COMMON_DEPEND} - nls? ( - >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] - ) - java? ( - >=virtual/jre-1.5 - ) -" - -pkg_setup() { - mono-env_pkg_setup - java-pkg-opt-2_pkg_setup -} - -src_prepare() { - default - - # bundled, with wrong bytecode - rm "${S}/java/${P}.jar" || die - - elibtoolize # for Solaris shared objects -} - -multilib_src_configure() { - ECONF_SOURCE=${S} GJDOC=javadoc \ - econf \ - $(multilib_native_use_enable java) \ - $(multilib_native_use_enable mono csharp mono) \ - $(use_enable nls) \ - $(use_enable static-libs static) \ - --disable-valgrind-tests \ - --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \ - --with-packager-bug-reports="https://bugs.gentoo.org" \ - --with-packager-version="r${PR}" \ - --with-packager="Gentoo" -} - -multilib_src_compile() { - default - - if multilib_is_native_abi; then - use emacs && elisp-compile "${S}"/src/*.el - use java && use doc && emake -C java/src/main/java javadoc - fi -} - -multilib_src_test() { - # only run libidn specific tests and not gnulib tests (bug #539356) - emake -C tests check -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi && use java; then - java-pkg_newjar java/${P}.jar ${PN}.jar - rm -r "${ED}"/usr/share/java || die - use doc && java-pkg_dojavadoc "${S}"/doc/java - fi -} - -multilib_src_install_all() { - if use emacs; then - # *.el are installed by the build system - elisp-install ${PN} "${S}"/src/*.elc - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" - else - rm -r "${ED}/usr/share/emacs" || die - fi - - einstalldocs - - if use doc ; then - dodoc -r doc/reference/html/ - fi - - prune_libtool_files -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 71388cdddcb3..28795c10eb1e 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/dino/Manifest b/net-im/dino/Manifest index f126436b1b32..fbf42220f5e8 100644 --- a/net-im/dino/Manifest +++ b/net-im/dino/Manifest @@ -1 +1,2 @@ DIST dino-0.1.0.tar.gz 441638 BLAKE2B 08f332d38af866eed1049fae7d0e207da5a3486fdaf07eb5327e7abf614ac4adc130fd8f2d9465d6cb248ecfe4b809e022a69c72df5879d98719d24635771b33 SHA512 b63bf87dbf7f728f038f22d0dba34770a06d7eb1be2ec249293ff876e16c151165add895ff3cb20a3216c3581d20e10634d454ee8b024b895012efb34f9d7de8 +DIST dino-0.2.0.tar.gz 514257 BLAKE2B a4536372a806fa60e157a6492381b0204f33041b113dc26dfd4d494c86c96e5b94e928c400fde3198e481aecbfc79d0358979d4a20c550e35f762b3520e2f7c0 SHA512 296576f91d45a4dd8c548a7ca5b47bcaf847f6ff0f8e5dbafaa4eb49a2d4f1ed7e2bbfac94f1b32e22f5ec61b23748ac76b12bb4ceb710889aff166953ca7a2e diff --git a/net-im/dino/dino-0.2.0.ebuild b/net-im/dino/dino-0.2.0.ebuild new file mode 100644 index 000000000000..87038c75d2fd --- /dev/null +++ b/net-im/dino/dino-0.2.0.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +CMAKE_MAKEFILE_GENERATOR="ninja" +VALA_MIN_API_VERSION="0.34" +inherit cmake-utils gnome2-utils vala xdg-utils + +DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala" +HOMEPAGE="https://dino.im" +LICENSE="GPL-3" +SLOT="0" +IUSE="+gpg +http +omemo +notification-sound" + +MY_REPO_URI="https://github.com/dino/dino" +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="${MY_REPO_URI}.git" + inherit git-r3 +else + KEYWORDS="~amd64 ~arm64" + SRC_URI="${MY_REPO_URI}/releases/download/v${PV}/${P}.tar.gz" +fi + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/icu + dev-libs/libgee:0.8 + net-libs/glib-networking + net-libs/libsignal-protocol-c + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/pango + gpg? ( app-crypt/gpgme:1 ) + http? ( net-libs/libsoup:2.4 ) + omemo? ( + dev-libs/libgcrypt:0 + media-gfx/qrencode + ) + notification-sound? ( media-libs/libcanberra:0[sound] ) +" +DEPEND=" + $(vala_depend) + ${RDEPEND} + sys-devel/gettext +" + +src_prepare() { + cmake-utils_src_prepare + vala_src_prepare +} + +src_configure() { + local disabled_plugins=( + $(usex gpg "" "openpgp") + $(usex omemo "" "omemo") + $(usex http "" "http-files") + ) + local enabled_plugins=( + $(usex notification-sound "notification-sound" "") + ) + local mycmakeargs+=( + "-DENABLED_PLUGINS=$(local IFS=";"; echo "${enabled_plugins[*]}")" + "-DDISABLED_PLUGINS=$(local IFS=";"; echo "${disabled_plugins[*]}")" + "-DVALA_EXECUTABLE=${VALAC}" + ) + + if has test ${FEATURES}; then + mycmakeargs+=("-DBUILD_TESTS=yes") + fi + + cmake-utils_src_configure +} + +src_test() { + "${BUILD_DIR}"/xmpp-vala-test || die +} + +update_caches() { + gnome2_icon_cache_update + xdg_desktop_database_update +} + +pkg_postinst() { + update_caches +} + +pkg_postrm() { + update_caches +} diff --git a/net-im/dino/dino-9999.ebuild b/net-im/dino/dino-9999.ebuild index 6e43b0dadff0..87038c75d2fd 100644 --- a/net-im/dino/dino-9999.ebuild +++ b/net-im/dino/dino-9999.ebuild @@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="${MY_REPO_URI}.git" inherit git-r3 else - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~arm64" SRC_URI="${MY_REPO_URI}/releases/download/v${PV}/${P}.tar.gz" fi diff --git a/net-im/mcabber/mcabber-1.1.2.ebuild b/net-im/mcabber/mcabber-1.1.2.ebuild index 0b84efe65300..ef916f750572 100644 --- a/net-im/mcabber/mcabber-1.1.2.ebuild +++ b/net-im/mcabber/mcabber-1.1.2.ebuild @@ -16,7 +16,7 @@ if [[ "${PV}" == 9999 ]]; then S="${WORKDIR}/${PN}" else SRC_URI="http://mcabber.com/files/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" fi LICENSE="GPL-2" diff --git a/net-im/psi/metadata.xml b/net-im/psi/metadata.xml index d1fdaf8e1f54..41be813c050b 100644 --- a/net-im/psi/metadata.xml +++ b/net-im/psi/metadata.xml @@ -20,7 +20,6 @@ Install additional iconsets, some of them have no clear licensing Enable storing password in system keyring manager Enable themed, html-based chatlogs using dev-qt/qtwebengine - Enable themed, html-based chatlogs using dev-qt/qtwebkit Enable experimental interactive SVG drawing Use X screensaver protocol extension to monitor idle/active status based on mouse/keyboard events diff --git a/net-im/psi/psi-1.5.ebuild b/net-im/psi/psi-1.5.ebuild index 1d1ed507d805..1d81d0bf29dd 100644 --- a/net-im/psi/psi-1.5.ebuild +++ b/net-im/psi/psi-1.5.ebuild @@ -16,11 +16,10 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="aspell crypt dbus debug doc enchant +hunspell webengine webkit whiteboarding xscreensaver" +IUSE="aspell crypt dbus debug doc enchant +hunspell webengine whiteboarding xscreensaver" REQUIRED_USE=" ?? ( aspell enchant hunspell ) - webengine? ( !webkit ) " BDEPEND=" @@ -50,7 +49,6 @@ DEPEND=" dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets] ) - webkit? ( dev-qt/qtwebkit:5 ) whiteboarding? ( dev-qt/qtsvg:5 ) xscreensaver? ( x11-libs/libXScrnSaver ) " @@ -72,11 +70,11 @@ src_configure() { $(use_enable hunspell) $(use_enable xscreensaver xss) $(use_enable whiteboarding) + $(use_enable webengine webkit) + $(use_with webengine webkit qtwebengine) ) use debug && CONF+=("--debug") - use webengine && CONF+=("--enable-webkit" "--with-webkit=qtwebengine") - use webkit && CONF+=("--enable-webkit" "--with-webkit=qtwebkit") # This may generate warnings if passed option already matches with default. # Just ignore them. It's how qconf-based configure works and will be fixed in diff --git a/net-im/psi/psi-9999.ebuild b/net-im/psi/psi-9999.ebuild index fa92f8bd5688..045b0c6e1837 100644 --- a/net-im/psi/psi-9999.ebuild +++ b/net-im/psi/psi-9999.ebuild @@ -20,7 +20,7 @@ EGIT_MIN_CLONE_TYPE="single" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="aspell crypt dbus debug doc enchant extras +hunspell iconsets keyring webengine webkit xscreensaver" +IUSE="aspell crypt dbus debug doc enchant extras +hunspell iconsets keyring webengine xscreensaver" REQUIRED_USE=" ?? ( aspell enchant hunspell ) @@ -61,7 +61,6 @@ DEPEND=" dev-qt/qtwebengine:5[widgets] net-libs/http-parser ) - webkit? ( dev-qt/qtwebkit:5 ) " RDEPEND="${DEPEND} dev-qt/qtimageformats @@ -114,10 +113,6 @@ src_prepare() { } src_configure() { - local chattype=basic - use webengine && chattype=webengine - use webkit && chattype=webkit - local mycmakeargs=( -DPRODUCTION=OFF -DUSE_ASPELL=$(usex aspell) @@ -126,7 +121,7 @@ src_configure() { -DUSE_DBUS=$(usex dbus) -DINSTALL_PLUGINS_SDK=1 -DUSE_KEYCHAIN=$(usex keyring) - -DCHAT_TYPE=$chattype + -DCHAT_TYPE=$(usex webengine webengine basic) -DUSE_XSS=$(usex xscreensaver) -DPSI_PLUS=$(usex extras) ) diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 2a745c1e82b8..efd4ffa618dd 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/courier-authlib/courier-authlib-0.71.0.ebuild b/net-libs/courier-authlib/courier-authlib-0.71.0.ebuild index 0ce94a3ca9a2..5998feeec73d 100644 --- a/net-libs/courier-authlib/courier-authlib-0.71.0.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.71.0.ebuild @@ -4,7 +4,7 @@ EAPI=7 inherit flag-o-matic -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86" DESCRIPTION="Courier authentication library" SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" diff --git a/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild index 9685cf9df338..357f737a2c93 100644 --- a/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild +++ b/net-libs/courier-unicode/courier-unicode-2.1-r1.ebuild @@ -8,7 +8,7 @@ HOMEPAGE="https://www.courier-mta.org/" SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 s390 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="" src_configure() { diff --git a/net-libs/davix/Manifest b/net-libs/davix/Manifest index cccedcc48ec2..597a524ae88d 100644 --- a/net-libs/davix/Manifest +++ b/net-libs/davix/Manifest @@ -1,2 +1 @@ -DIST davix-0.7.5.tar 4343329 BLAKE2B dfb71e0524e47a2378cd8a49fa4c7d209b8b658e8515f4f0750c9c98cb03073e2ff82a5fbdb2f7fb563f31671789cd7e9cb1656a16dfd0811934730961695db4 SHA512 4be448d6d28f315c0d098d9cf2ddf95bbd818659821935571d83dad1b2724b8f90b87be298ca8a7984cb57a88b18b0253e23f6e8cb192cd1792472993da36bcc DIST davix-0.7.6.tar 4338692 BLAKE2B 72a918f52993ea358f243df671823a4624ac5650753e06c8f70f75a800f10adfe7f6c63d9c8fdcefb94874e3c60c3909e7aa96969af1210347ea941a42f4b9df SHA512 3e379acc763e72e2e1684121e2688da6c617b2c1f52ffd7a2a2559998a64aba957f09f7b138c57f8f4d7a26caff4fef09952cca48585bb4f6aea1f071aa9a7b7 diff --git a/net-libs/davix/davix-0.7.5.ebuild b/net-libs/davix/davix-0.7.5.ebuild deleted file mode 100644 index 3d61be504eec..000000000000 --- a/net-libs/davix/davix-0.7.5.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="High-performance file management over WebDAV/HTTP" -HOMEPAGE="https://dmc.web.cern.ch/projects/davix" -SRC_URI="http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/${PN}/${PV}/${P}.tar.gz -> ${P}.tar" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc ipv6 kernel_linux test tools" -RESTRICT="!test? ( test )" - -CDEPEND=" - dev-libs/libxml2:2= - dev-libs/openssl:0= - kernel_linux? ( sys-apps/util-linux ) -" - -DEPEND="${CDEPEND} - doc? ( - app-doc/doxygen[dot] - dev-python/sphinx - ) - virtual/pkgconfig -" - -RDEPEND="${CDEPEND}" - -REQUIRED_USE="test? ( tools )" - -src_prepare() { - cmake-utils_src_prepare - - for x in doc test; do - if ! use $x; then - sed -i -e "/add_subdirectory ($x)/d" CMakeLists.txt - fi - done -} - -src_configure() { - local mycmakeargs=( - -DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}" - -DENABLE_HTML_DOCS=$(usex doc) - -DENABLE_IPV6=$(usex ipv6) - -DENABLE_TOOLS=$(usex tools) - -DHTML_INSTALL_DIR="${EPREFIX}/usr/share/doc/${P}/html" - -DSOUND_INSTALL_DIR="${EPREFIX}/usr/share/${PN}/sounds" - -DSTATIC_LIBRARY=OFF - -DSYSCONF_INSTALL_DIR="${EPREFIX}/etc" - -DBUILD_TESTING=$(usex test) - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - if use doc; then - cmake-utils_src_compile doc - fi -} - -src_install() { - cmake-utils_src_install - - if ! use tools; then - rm -rf "${ED}/usr/share/man/man1" - fi - - if use test; then - rm -rf "${ED}/usr/bin/davix-unit-tests" - fi -} diff --git a/net-libs/davix/davix-0.7.6.ebuild b/net-libs/davix/davix-0.7.6.ebuild index d667decd21ad..cd414ce3d7eb 100644 --- a/net-libs/davix/davix-0.7.6.ebuild +++ b/net-libs/davix/davix-0.7.6.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="High-performance file management over WebDAV/HTTP" HOMEPAGE="https://dmc.web.cern.ch/projects/davix" @@ -11,7 +11,7 @@ SRC_URI="http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/${PN LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc ipv6 kernel_linux test tools" RESTRICT="!test? ( test )" @@ -35,7 +35,7 @@ RDEPEND="${CDEPEND}" REQUIRED_USE="test? ( tools )" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare for x in doc test; do if ! use $x; then @@ -58,18 +58,18 @@ src_configure() { -DSYSCONF_INSTALL_DIR="${EPREFIX}/etc" -DBUILD_TESTING=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use doc; then - cmake-utils_src_compile doc + cmake_src_compile doc fi } src_install() { - cmake-utils_src_install + cmake_src_install if ! use tools; then rm -rf "${ED}/usr/share/man/man1" diff --git a/net-libs/http-parser/Manifest b/net-libs/http-parser/Manifest index 7a47ba2ab69e..b2fb6df9086c 100644 --- a/net-libs/http-parser/Manifest +++ b/net-libs/http-parser/Manifest @@ -1,3 +1 @@ -DIST http-parser-2.8.1.tar.gz 50731 BLAKE2B 1c4f3f61550f7f8e86d7b47e3986754a108dc979c6232d87ac418f9f8295b88ee43c4a5af150460f707e6ade01f5d435801f980ccbff93369ee0a9dc2eb60656 SHA512 6f52f543d979f39688ccefae236527a8183929b3d30f5370570107b01cf89d0338b448249a81102b78d31615d2e8f6e7c708f8961f55ece08e7d3a40e5ad0883 -DIST http-parser-2.9.3.tar.gz 51973 BLAKE2B c46160e811874f3d4d2a7390e3b64520c7c01d51f74fb608ca8972ffe264cc389b744c1b6d8b5b6a7c9d7816eb95c179a9c210ba1a122ac4fa95996308d667af SHA512 d200c52f594192ba80a8d5b59d414404843f8601dac647f29c27845db75ac1f015789031e30e91aaab5b553af1ee6af50b90f9342a444c10c1027e10fdb9a31b DIST http-parser-2.9.4.tar.gz 52056 BLAKE2B 988ebc3f3e1a7d53ed4147dac2e09c4d6021bb1a287990d83130c24e9fee01a3123b4c5ad9e1b86c0f123248484dae272010aa1f3ebd3bd4574d8407ede94e62 SHA512 b45df7b94d1c51079d44687d0a7f901f44faae51df4e84c7e3fe38f130c2d809d0e7c2a146c57b3723e60732aededc246bf44eadb10a95b710963d641f9fe7cd diff --git a/net-libs/http-parser/http-parser-2.8.1.ebuild b/net-libs/http-parser/http-parser-2.8.1.ebuild deleted file mode 100644 index 1d64d816e0bd..000000000000 --- a/net-libs/http-parser/http-parser-2.8.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs multilib-minimal - -DESCRIPTION="HTTP request/response parser for C" -HOMEPAGE="https://github.com/nodejs/http-parser" -SRC_URI="https://github.com/nodejs/http-parser/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/2.8.0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x64-macos ~x64-solaris" -IUSE="static-libs" - -src_prepare() { - default - tc-export CC AR - multilib_copy_sources -} - -multilib_src_compile() { - emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" CFLAGS_FAST="${CFLAGS}" library - use static-libs && emake CFLAGS_FAST="${CFLAGS}" package -} - -multilib_src_test() { - emake CFLAGS_DEBUG="${CFLAGS}" CFLAGS_FAST="${CFLAGS}" test -} - -multilib_src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install - use static-libs && dolib.a libhttp_parser.a -} diff --git a/net-libs/http-parser/http-parser-2.9.3-r1.ebuild b/net-libs/http-parser/http-parser-2.9.3-r1.ebuild deleted file mode 100644 index 42698481b069..000000000000 --- a/net-libs/http-parser/http-parser-2.9.3-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs multilib-minimal - -DESCRIPTION="HTTP request/response parser for C" -HOMEPAGE="https://github.com/nodejs/http-parser" -SRC_URI="https://github.com/nodejs/http-parser/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -# 2.9.3 accidentally broke ABI compatibility -SLOT="0/2.9.3" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x64-macos ~x64-solaris" -IUSE="static-libs" - -src_prepare() { - default - tc-export CC AR - multilib_copy_sources -} - -multilib_src_compile() { - emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" CFLAGS_FAST="${CFLAGS}" library - use static-libs && emake CFLAGS_FAST="${CFLAGS}" package -} - -multilib_src_test() { - emake CFLAGS_DEBUG="${CFLAGS}" CFLAGS_FAST="${CFLAGS}" test -} - -multilib_src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install - use static-libs && dolib.a libhttp_parser.a -} diff --git a/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild b/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild index 6b0414c80170..3be49cee565c 100644 --- a/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild +++ b/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz LICENSE="BSD" SLOT="0/17" -KEYWORDS="~amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86" IUSE="ipv6 kernel_linux static-libs" RDEPEND="" diff --git a/net-libs/nodejs/nodejs-12.19.1.ebuild b/net-libs/nodejs/nodejs-12.19.1.ebuild index dcc7f261a946..613432efea39 100644 --- a/net-libs/nodejs/nodejs-12.19.1.ebuild +++ b/net-libs/nodejs/nodejs-12.19.1.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0/$(ver_cut 1)" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" +KEYWORDS="amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test" REQUIRED_USE=" inspector? ( icu ssl ) diff --git a/net-libs/nodejs/nodejs-14.15.1.ebuild b/net-libs/nodejs/nodejs-14.15.1.ebuild index eb2a3fdfcd11..fad4f233fa09 100644 --- a/net-libs/nodejs/nodejs-14.15.1.ebuild +++ b/net-libs/nodejs/nodejs-14.15.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0/$(ver_cut 1)" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" +KEYWORDS="amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test" REQUIRED_USE="inspector? ( icu ssl ) diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index c5a7229707a8..0852379a59a1 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/croc/Manifest b/net-misc/croc/Manifest index 845e0190daad..7af89337dc5a 100644 --- a/net-misc/croc/Manifest +++ b/net-misc/croc/Manifest @@ -1,4 +1,4 @@ -DIST croc-8.6.5.tar.gz 2537258 BLAKE2B 4c409774553035ba089128ca41eccaf4b734a4860b6650abbf35e1da3b347f98418102b3d6a9ae437e0983526fef8ffc1a3b6f9bf361b5e9dd8008497f694ba1 SHA512 c2b714bd2121eede02bbbc6fec148d4eaccbb59bb786e07abecb1a8bf8199757792550cc3395b31c3923dce28ac6fcb70c71a9590656611903cd89baa271cb49 +DIST croc-8.6.6.tar.gz 2591220 BLAKE2B 60d5eec9dbf603dc9e8d77a2c700bf86fb0a03f130e57015f32c68d87848681086b88d84d90e9075650f67bd288fa81f641c11a75c230f65525127ba53401fdf SHA512 4a7b7393f33f713c14b3a1c1276553452c365d1494ff523c5f77d3479b6c875edb07590f6d4314da403e1974e785ef0cadf806f076858ba1be2eedb6d9166721 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d SHA512 320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f SHA512 9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.5.mod 43 BLAKE2B 60ec6257dc0098e3dabfb32b6c668db9159d69dfc7daa06b9d7f9089f4a6dfc11d2b6d39393e1b990f6ca126019baa1b3d99364fe8a6df9ae323626c8d82494c SHA512 be1111b482157b8c8dda0f45a71e587b51ef78cc9676db4cb560bf0e71c112f45bd048bab7f1b0a64651777bb395c0ce210cf3df20a4afe08e66a42b6da89765 @@ -37,14 +37,12 @@ DIST github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.mod 42 BLAKE2B 28d1441e2d219c81 DIST github.com%2Fschollz%2Flogger%2F@v%2Fv1.2.0.zip 4494 BLAKE2B e17a498a1c54d88a2e98483c52efbd8e0150a728c299e0bb0319ea820cc50276e5f2727c549a126d3094efe9a889adcdc2862286f19fcb870abe8a9157fac4ee SHA512 25f1fde274a499c5ade50061cbb5727f2798158b1547092b298d36b89ed0efcfe84b727e20a3dc980b1f9fcaa1a0dc07f8e0369155df11bd5f76b8fffbb32a64 DIST github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.mod 72 BLAKE2B 5f5815449eb44d202f99b7e2168a08000eba8b70f3b669190d8ebd8d485adada71049cacc71b6e72931d45284565b816597f995e16858b2fd0a2eef2cd815c7d SHA512 eaedd08e8235f2a61d8e3c8e342b1773d2d687351e715adc8ea13d1e49511d16c6f8d5510bba5ffcb9d295a64813d21214e6d55dadcd1c8686f9c3320a9d2511 DIST github.com%2Fschollz%2Fmnemonicode%2F@v%2Fv1.0.1.zip 21717 BLAKE2B 611144d8f187db3a63bf6c8dce9b2b4752551c412a5228c4d52c7f24cc65336b95e6d2ffb8f20baf50d0ebf90ae77998c6ec6c5618c0fbebf5b312a7b26be892 SHA512 bac0d4ffb2e4bb0dcdcebdd5d651984dc9b1be639a7de249b1ba47bd66d7d4f0aad3ae7b9ba9ea6ba032204e543feb3b83b77e86e7a5de295f2fd06a0f8876b9 -DIST github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.4.mod 256 BLAKE2B 6db1eae7733ceafbf69c2a627c61260ea496109ec997f1baf03f8d5522b7b723532ef06c91d1b581ff02fbb11eb9f306b0649c1b03846edba123cbb117fc4b78 SHA512 2afe00182ead5ed732add5c73f4268a28184bb48c5c3489d7dd60a661d9dca0ca4240369cbd27e9381d10140bcb3d4f39e73f7e7896380d55dde57f1727e7992 -DIST github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.4.zip 7809 BLAKE2B 90cae180375deefc1cf194f89dd2c356f14de22a6514911ee9e6e0413c55841fc24f7334e9861279b0efce74382c36532595f5c0f38b8cd83d6fdee1d6d55e98 SHA512 ce3df459a08d92b2d6f1f3832d2d8dd44f827f95703e9b11ed0c758ad160c40d8f3ba3b9caf61f448741900ccc718dc65ba5933ab444db06f855510ade7e5a4e -DIST github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.0.mod 259 BLAKE2B 5e53a9867d162f1e4e5123307344d1fc8cad3eeaf729bbfccb2ba508f9b454be4bcda796c640840567c677c1881d8d22d0b15d7ed5f09d03dfb98e164c8be385 SHA512 d0cb54b94e22519f0d53e30c2571274deeaf15bda3df9d15e805c83d4efad63902f593761410a8d11871610a2b0ef09f7e6c096080529494511948536b204e36 -DIST github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.0.zip 10286 BLAKE2B 36f83614f5f443bca84956bd58e6d813c97d2627fb4330aa50faa9453f9cab0eaef87dffddf229f04706486d57933ab90fa97ce9a3a9209d2d39c96c23e01cc7 SHA512 08cbb78e55392078b41d287823994a48a8af64649371acbc1e86f9a42c318dca18ce42c54eca65779477f4a454469d7601483b07cce7db3a2c7b40b5b1939a22 -DIST github.com%2Fschollz%2Fprogressbar%2Fv2%2F@v%2Fv2.15.0.mod 215 BLAKE2B ffd46ea78d3bd4056b847fbc7fe0dc3a0d66311c962e116209c6d36a55310324cd4911a57faa695f8b9fdfa18e44f1feca756746760770c3928f42df428ce97e SHA512 ecff876ae068c2b14b675ef336b2b217b490302d3db183cecc6ab70f981d4b848c4b85acfe9637159bc18002b606904bf318387e9722b995901cca1f3bf836cd -DIST github.com%2Fschollz%2Fprogressbar%2Fv2%2F@v%2Fv2.15.0.zip 11585 BLAKE2B e601ef9ca149678f6f56e35d3e6248134269968796fe61fc04edfef81199c199c3e28ef1b3981fe388bda92296b91ffaafbd7ea89234b6d541bdeb13de270ce4 SHA512 c9c52f87ba0472d909ce10d9e31bb978334bea9264999591e0c14a86dc39edd05704d8c0174f498617b760d8087d5e9ee585f999aa80d4c039a8720633a7a567 -DIST github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.6.2.mod 485 BLAKE2B 0eebf96d3495bd74f5591864362e52e4f975fcc84199fbcee4e7223868386f91435a5f56b0f5c26f0c6f0fef97444bad4481e36a56d23d727137a5db9f69d861 SHA512 a049a833f8f61a5d33fb06f405e31630506ddf7e7a81fab0750e28ff81041253c8d50d20db71e698de3e841f2d226edf943baee5491d86c7e3a9d64cdc5a9e00 -DIST github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.6.2.zip 605914 BLAKE2B 2f2b3b4af832047fc754902ce2ee1b2512d84e784682f9805bf3c78b8db8f1530bc899134a8894aeccdfebef38d83d5faf90d905e227b33c4e41673aadb577ad SHA512 7a217893abc58fb1a24b4a35e443a621c964dd614206a92be3afa08095ca62c85048c6552455ed52b3465d02942c4ecf85e2eaf9f29d854480d81e442a52d660 +DIST github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.5.mod 256 BLAKE2B 19d119094547b9ac5fce2b860121ffe2f9838f31216316683b452059887de4dae59daa3f0a867f66f1b4be75423d8811bc75f33181dd72470096b658be398434 SHA512 9d101ee3c638a5ecabf0baeb2243ea62091d188012bfdb82a9a40a8736d7d73a7d1113f55c0c3ceb3e65d94f8a04a0968ce990ea3d0c2709317f3871b313d302 +DIST github.com%2Fschollz%2Fpake%2Fv2%2F@v%2Fv2.0.5.zip 7805 BLAKE2B a31261282d1455050065db6cda411dc2a6b1dfe554dc795d982626fc0e324c2947e57b81c2b8e70ebc757a43e8438285d079aea80972acc387f502dafa82ce9a SHA512 685d9b40355dea010bc84d8e8a82ab2a1d23b9105c281eb56afc4cac2f58454c56cafc19d0c0772d99a81bc3305bf3d6a12b0c172eb308a4543b20a58e217d0a +DIST github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.1.mod 216 BLAKE2B aaf844bee244f49ce0ef1f651043215927b4ee80b1447b31eedd1248a61f096b86864a3a63b999b6739700d1da615007dcc9653812dcb48c6dfd570f9a8cb21b SHA512 55ac959bc300d28571b428d2f123b0b4b72c44a2a805b3863741a3f8972bdb1038f333f33f304cf1ada39ef478283ec1ff520e4f9c89640094e4222ce0b2bd98 +DIST github.com%2Fschollz%2Fpeerdiscovery%2F@v%2Fv1.6.1.zip 9260 BLAKE2B 36c17e6ca1b2e03c531389d20efcb50487a8bc817139db7ef8b3d85980bd943a41099db6c21feba1fe0c1e7b0d105425828891154f9b68955efa0a62b3958cd3 SHA512 10d947e15fe64eb8c3f22fb82f2f493d7e5e31663ae1a5acfc4c75de98923b22b6822fec174a945e37eae45c2fa02639f732cb31148260a60981ad53b7b4520d +DIST github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.7.1.mod 485 BLAKE2B 303274b3315a4e7107f1152ae749144afd65596d863409df57528bf599bfc7d5d36e42998bc89ad5c21a09e045476e8f7ef95d855c7cee09e6023919d68a8c97 SHA512 b8d37d5c92b053e6633cd1bac460c807aa87a8c8e44bf9c946809311ddde236ae36dc6470cc76fa49b66e90ae6416c8d4ef420dd81e895ffa4cb7f47f5dbb941 +DIST github.com%2Fschollz%2Fprogressbar%2Fv3%2F@v%2Fv3.7.1.zip 606130 BLAKE2B d7c489e4d02909ef549a2a2675b7dcbc9a70a043d6db37be32f6f2d73307dc9ae7a89fd8ecd1856ec0cd12b9c4eb28041c864273ae36d428a0e592b5c9a95bcd SHA512 53445bdbc383bfa45761dc7b63fe7dedcbcfda73a50bb5c90aa847e6cbbae43192634c9f10d3e2509c1a6480ecf3a3de84fcf172010f57b631f9e40393799413 DIST github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod 49 BLAKE2B 47bc5235e81d233e28b446ec2403accc442b4cc1ee956a0b7d47b5dac2a525f22bba87d05c3fe09179837860655f27191e073a3f6d7d0dad81c9a750752fe5f8 SHA512 6f6b924c2a3af28ef4342cdf8b83b726f2c409accf19c6ba0a4a47c6ae61857e4b69727fceb9e9e16fb8ce660a7181952714d49b6cafaacb282fa4e8af6e13b3 DIST github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.zip 3399 BLAKE2B 348c2171bf3404d8b69166fd412707d8a348e1d808618036de2ae01fce77e3880fc782ef301f9b4135a19d81ca9ded5cc0cc4fd73d36b66b121b7f0baa73df51 SHA512 d02d5e4b8a24b1709c053138c4128d4bd6347d4adef95d1e25141935cf560fdcfd5c2b7837d6e690f175f1cd5a21b0279ce97b8b3b66d5e0a5006e4103b25f46 DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod 36 BLAKE2B 1ba81fe6a6b84ed40868e0fff431dc8485b912700c192d90181c22588345e7250af63160673c297129add94a41281d7f0ddca5733c2b32e20f65ca7c27046306 SHA512 d14779867dcbbe24d451e82ac72c823f80551cec89758ecd39c9e72fd75560694a0b8261726020b738ad4f447ce1093f910c12797c58b8dede38f6bc737b9a25 @@ -52,37 +50,34 @@ DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod 36 BLAKE2B 1ba81fe6a6b84 DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip 9830 BLAKE2B c5d27e8b447082c0a1756354c0a414079fc3b03d0649cee8353490827ff50882a9321b89fdae4e341da1a4718f6db4c4a4c27e937c9bf31111085a449f56f282 SHA512 aff4d1c9bab0fd619496fd6948f05bc88e4147af2fb171c4ce4e44d81c114257abd55f92fee27c4b6d96fde21c6756735c32257de7b00bdb0356509cb4b97374 DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod 32 BLAKE2B d698910da1ef00a70a1673b8c74105de195020ccd95d1e70c5dd1e1615210886ff9acbc9cfd03f46e99f5223b60b04695b8d362b9e0edd4e485480f802bd229a SHA512 4e366e5a60559a8863cb2a50280deb307d8bf885ca5440cce1b49a084b4cc4583b3481240125f35f161226592a43f2c0a426152f117d79b68c92c72a93f751d5 DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod 154 BLAKE2B 60cd7801e7cd33746305cd636b048b25a86270ec3b29a21c3c078c7e95b769bce7e80c2c7c5474113786bd788c7f88f3719e34f02141038e0d161b36e32f39b9 SHA512 bb808fad059f5abd0171e4bdc724411eff2c7e8d303a4ffb3608a00e21bb3cfafe9e83b4b4e9bccd42c9a4331f67ddc6043e3dd5eaa9a122c86626eed43a8383 -DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod 179 BLAKE2B 3bb7cee3118f0d335ade107dfefc3a594dc3883564fe4c9e96d615e179d394a49a3d6cd6584ba9c684772bc3dc6479af6a168dd3841c03957252667384f6ba11 SHA512 243bf1f69c146252164ad72f853773dcc77f15d7c9e9b731bee26a95e7c8f4ce9ed9738db601b01edb82f4b3808873e1f153a6d4a0c97be0babbe65abc0f8d52 -DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip 90474 BLAKE2B 2f79f0cac2c15acaeae764aeb640534f58ec2ae86fe88a82533498e718cf37d67c563606090ad39b38e22ffca1e63a25cd881d6a472b862ddaf150c7d329b16a SHA512 a047ba8d5f529d459fb6ae8dd39367e6f6cd2e785e90f54a5f8759ff76e4cfff990f1b8c1e0cf49c67b97ca8de36ecf8fdeb3b8f16e579aeae2d563d38da69db +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod 216 BLAKE2B c597010cf6690e73cd265e800f0f0bbea331fb76217457b6326f5a19481eca044aa5426fa32519870b2f0f4b3bed95768a23d3138dbcc9739b7cf7e044f50668 SHA512 197e6ef15edb27ded67ccfb636c252fe522f0930ff012341a4b593f25b5dd8282e4f658970931cfdeb8f2c5ee0b4ebac6738fe7634bf00896d12270fcbf4b31b +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip 98541 BLAKE2B 369a625a7b05ee56619698e8067ee7b99a9d0508db655aefd23cf42f5ee1abb150a6b262be089fce6951f84fe9f1cc0fa46b75830b851888fd17f123852558e7 SHA512 073f44125d4bbce27d69b914385e05028c4d275585e275ff1ee2ffe299059646394163dde2b6b5c175ac9379d388fe34c1c874deda4138121541e2a639d7635f DIST github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.mod 32 BLAKE2B 714a7fdeaaa7ea25dedf0279e7edc1939ae954f9214851f3b8ca0baf2be779b323f79dcf86c34026dc48a9c12f448d5b70f0088292a0f5d7e77706eccd7167df SHA512 dbf23e08092d028c7f03935ddf3e1f63b2ab16781d713f1339a0dfd1199217e80e01a4183f1b18c25db99077b9f059baee8016ec069cac6252839f79008ad09f DIST github.com%2Ftscholl2%2Fsiec%2F@v%2Fv0.0.0-20191122224205-8da93652b094.zip 72830 BLAKE2B 5ce514604ab22c4d54b49be8b79448ccd2218c7d189acf746b74b2bf6869ff3dc74a99306b89bc7ee198cb78f717f05640ba6ca365c5f54b999730283354e4eb SHA512 72c9fdf871d60349e2dddc1dc70ba27b22632b0f0f992e7fa53ac89fdb7daf952fe5ac2c2a93a3875ca036cb7f14dff7c555267468fe9f533901d3766ee674bb DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod 88 BLAKE2B aec7d0eea1278eb3d1568d5bfb4041267501ad14457ebfcbdbc5fe21473170b8616ca4028f52af2edbfd85922cbe04540b4b0df7f69f63197698143cc5557a7a SHA512 2df49895053b36fed7ea905aa73f86568fbafd79ff0a7976679d8c77cf15025129435d9dbfd89367b611b1aadbea4f4bd1835eb4efa9ea702466e443638d379e -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200604202706-70a84ac30bf9.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200604202706-70a84ac30bf9.zip 1874278 BLAKE2B c9d8d7150f589d4b313bff96b41e1a24616db4e9a6447f1a20b81e15c35d6dd966507f5b24564afb904e81768f6c226ee73d3bf4ac3ce736c0276eaabc38a139 SHA512 61a5eb5e3af434483bfdd470a028b10c7ea6bf149e0cb4d4443cb8325417cf5b4e85d2fb2e6335dba74d366b80d4bf0b6d6450dbcb3f3e06714c2bc4b0ef6f75 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.zip 1874261 BLAKE2B d31130353795828e794c9a0fbadafb9d745947d03c7e826fe7cc70f14002f60fb6f2f2699a875fb49b37ac3419b22b484bf95b86522b936b8136d4c627b24c2b SHA512 cdb474720f4b2b0357ac218297be03b967ccf068b05c11bc8eff60cf5383ff8738b0ebb87459a64643f3f8aac2f73967dbf616a51685ba48ecaeb15898851cea -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201002170205-7f63de1d35b0.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201016220609-9e8e0b390897.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201016220609-9e8e0b390897.zip 1878103 BLAKE2B 6fd01482411bd53a283186c07bc0b84b11186b0b1ed95b385389d967095fd99924059c3b02fb66bd5392e2c53da2c8c91dc0b41c0507be7a8ca9149a17bfc365 SHA512 4290ed77e7ccfd512faccf2b9a07ba2c8b3770646436f5318cb93b549f798dde3188735595100be1ca4964af378083a662edb872b99e6e7febeb2b6cfd1eb7e8 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201112155050-0c6587e931a9.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201117144127-c1f2f97bffc9.mod 209 BLAKE2B ce8c2a54376fa42fbd394e92db1f08d4c639eb7b5e1b33ba41c8a6ad212ccaf4bc7a7c761c43449177761b06296cce60aed17b0f542978a892b1de054b23286d SHA512 d43d530154c2fda6d171696efbe118c4c021d4f3cb5d8ac9262465e0cc906257330a489f6b950465196bf30c91afeb4d4946b3aada3dc182b5c7307a8e702fc7 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201117144127-c1f2f97bffc9.zip 1861832 BLAKE2B deb4eb00f377c08caf34030ef7185876280ec008c54f8ad75b44111b33421b4b69b203639e4b82634c986a6397044da1ad8c5d05ac663b8f9808b7f61a613882 SHA512 63eb1193149e1caa79fac22be5771a7a65176aad53424d823ce0386089f4b78caf29c293b815b3c4306345e01141cde938a273bc732e0b0ba78fa16a5e5547e8 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod 181 BLAKE2B 05d6754fa387bac4a6481ad34fb7b681064fc6443b3f70cba316fe2fd0896050e4a772fd8e1be655130a00bb5feaded4725ffea1c5dd6ba55ba55315aaae34d2 SHA512 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip 1503811 BLAKE2B c8cfe6b14a455a6ad71c42ce03235c650b7efe842131874cf99570716907e02c9fbe42df586e69332189518cbdcf6e2e417caebec84ce928e7ba959b66ab869c SHA512 bc3772a7ae7cd2b50f61ec8d07e7f7e1af9f24e0b737131da375a525be44dc993ee740ce0a11e0baaf0cbd81e819e3ecad889c0c7ece95086cb428e52b10a785 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201022231255-08b38378de70.mod 181 BLAKE2B 3d3ddd23252ae7c54121211421c04a53076d3c347a9511c24494ded58863b0e96b2fefbdd10ee783bb3c0089cca1af91358701ef709fbd52a2c2d1fdec011939 SHA512 098a7d7eadb99bc1eb8695f1d86e1ed2ec2f5f625045f3ed77648d4ef7047818cfc449d46c8a6ccf285f95956baf228c1c57d6e281da1f63f67cfa0f93ca4230 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201022231255-08b38378de70.zip 1503702 BLAKE2B 205ad70cd32e521b22cb094bfc780ff8fa40038eff3e73e470cde44ca5c29b91f59bba0a362f14ddf12c7c8ddcc23c0dbe76423e87085c3df8b52356acfafaf6 SHA512 c6e091e0a4c7fc041000ca5e6266939458c88510e26553133a2bb043e149fa2a4a78f296dc424b7bb464c4c2540685fd38d8a57bce89b4ea6b503c41e860e46a +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.mod 181 BLAKE2B 3d3ddd23252ae7c54121211421c04a53076d3c347a9511c24494ded58863b0e96b2fefbdd10ee783bb3c0089cca1af91358701ef709fbd52a2c2d1fdec011939 SHA512 098a7d7eadb99bc1eb8695f1d86e1ed2ec2f5f625045f3ed77648d4ef7047818cfc449d46c8a6ccf285f95956baf228c1c57d6e281da1f63f67cfa0f93ca4230 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20201110031124-69a78807bb2b.zip 1580428 BLAKE2B 3bc05480dc51b5f2b1b67473a4955a40218100e989f6dff8d1bb337cee52b451554f743448f8b39c3df73066c30f0b7740303807141ff2580a0a9a5b96e3ff21 SHA512 d2d645328924c9e9eb76e267cb47a7397f5cb200ee0a1a295eac1b0da4ba87657c64a7b8f2fc8aea3a359c4f44255e8d44fc06e40c65db539f50f9738b55cb47 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.zip 1470272 BLAKE2B 9a8bbb988370bedc24428e6c78f42a9ba44dbb852ce91c3d7fc54e83678b72b9177e67c955c49dc8ef7a1e2e214475a2e55c53254469e3426ec271e90ec9e2d5 SHA512 e46ef76fe4a1628def4c6a291003b64cf11185c0214427af9c49b9ff3af99f258488d49e887206a9c8652784228d822665c5841ce87d6ff993e95ea3d0494129 -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200625212154-ddb9806d33ae.zip 1479123 BLAKE2B 45f0af63ffb886cbd78269a103067057346ab756631f228fc27b68459bdde97c84c100f99045e1a4a8d336513c4192b377048db8e09cefa703e94ca814d6eb07 SHA512 57783ce5463ce2a6a2d76d8ed3df08a23de896ca82e7456597a0fa55fe80bec64f899085fc727f0bf369495d1bca70a10e0f7071e7e66f6a5ecba1b4f42ffe54 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200930185726-fdedc70b468f.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201009025420-dfb3f7c4e634.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201022201747-fb209a7c41cd.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201022201747-fb209a7c41cd.zip 1494537 BLAKE2B d0cff8087ee80fb40f469efe8cb3dc3ecec3dbc891bf99b995cbaa6b35fa93d969fb4f3a9e6bcc086fdf1770b7f6b7e019020c9944c1ab2cb34331a0d4456eab SHA512 33562029792d4b3b459846adf252fd89ecb818cab2bb46ca2b03d2cdf4578922bdda43c94fa8bd08a5fcea2ce4252f1d12d2b647b3148d97980226438d16ff16 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201113135734-0a15ea8d9b02.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201117222635-ba5294a509c7.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201117222635-ba5294a509c7.zip 1528596 BLAKE2B 5ddaf405d770c1952df4ee89471634ecd018fb3fa2d50853f25ed81140337aa10d2621f96116b2da6ae7015ca8f2956d21af89247ce9bb8e98d7dfa71a33a822 SHA512 838dafe6bc1e0a60d3e915e5786c972a95a9bab5f3e7cc3c8bbe918d0cb097211c297368992cabe4f255c1855e1ceceb7d038643c34f826afc520035a6a50a12 +DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod 95 BLAKE2B d86fb6e63016a8645cdec646a8ea85e1ab94e8be82123ebbe037124f353f21474e3396a64dc5f18299dc97c395759914a737699097f371c16806cc8b1e0eee64 SHA512 3295d1778ba3160c8360d99fbc648bbb4356fadd7947466f8b2f493a3c4c406515033268cf3525bdf50430b0cc31169838b5d3223842c7b1cd881e155744506e +DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.zip 23282 BLAKE2B 9bfaf8ea78b49038403d7a49abdfa9ab6cfc4fc2d71e693a15368da8cbdcd99437898f72f8a240ec7484a7f2a11405258e4cd17bab00aaaed291e2a1d1566e3f SHA512 fa88149897dd4470a7e36683de33db945e219819ce74f39f384cad03db8fd6829d47e2711dec895fafa7aa24d576dffc7cb8594a499cb1e66abeada196d502be DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod 97 BLAKE2B ed93c1d43f199d8cbd43cb25edac5de569cb78773d7f3232d59a0a4de6d174c5c100db2b02ca42c51f3e17e0f5e781ba9b5641a512b0dc72dcfaa5f6bd7d451b SHA512 f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.zip 8010747 BLAKE2B 78d999113a75f84966ffd23356e7cf60811b614754936851f197e547657cb6ff40acd074593c9cb6a2ae39ba625b36731c2fc0bc4b2b5ff68a2d377a6c7192db SHA512 024719305765ca737b225fec6268f84fc4c7d17c04e31eadfacafbb24a5f30af61920f4633e95d74dd2a266de40d1d2d13587881a3c22829ffeafb01fd75959f +DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.mod 97 BLAKE2B ed93c1d43f199d8cbd43cb25edac5de569cb78773d7f3232d59a0a4de6d174c5c100db2b02ca42c51f3e17e0f5e781ba9b5641a512b0dc72dcfaa5f6bd7d451b SHA512 f3f68808ccf5223453f765f59db1ef551b2130069eb83518878961c2d4a2044f9049f8d49df6e67699fcd2645cf90b84d35626590b2cfbca302fcf0eac76dc8b +DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.zip 8605233 BLAKE2B 3e9c66a40249df3915ab9de2a8de2ae0b92e4f7d645f9753e66e585ebaf86992484fcb933510b3400595182e9bc667434894697953d7078bf43f617f5ea1905d SHA512 26d09376646c1e7d99581f0fe03ea109b00879dc351996f77e6442b0fd72817d056f630a56cc167014acb55532baa4be5437bf40b4a933cfe450854c618b3508 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 @@ -90,5 +85,5 @@ DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip 41481 BLA DIST gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.mod 29 BLAKE2B 19c591a3bcec66342d2e3b47488fa4975e9b0e48628091fd8c36b77a2dfca279ca5be1d2fac9b97b8f43db6315fe24b4597ad91c4b26d963746b3022ff31e1fb SHA512 aaa83d3edd25827dc6a4f3ef13c8c726f518c91343ba85ecc09cbfbf9a318b66394506db5b72c3e9117b21b9ebc9cf81d1d6ec4cbd4246f8de32123cbea0ea24 DIST gopkg.in%2Ftylerb%2Fis.v1%2F@v%2Fv1.1.2.zip 6816 BLAKE2B 44b63e4a425a5b52504f3fd58c5f8452a550633d79407310c27ee0ecc66c612e7011937a1e220bb67e8fbc47d2bf9d88ccdad6088d967ea541f4a7e302dbe441 SHA512 d371c8a87ec7ea2f7fc4af4818292d4882c15de1709f6d939adbf86a6a81537d066aceb0538c4fcf9849e05018755caa472be5f3e3894cdb462c9fa2ee3b0a44 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 -DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 -DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.zip 80579 BLAKE2B d5de9f0dbf72902ec2244971ef1d62790008d5686ec66b67ca5ded08503168e507d7afdbc38fbfe3b431432e32d2c79540e407a2916ea93de24d45040262366a SHA512 c4a38c485edfd1773be4d3b3dd97c475b1894603526f5d95b40a3ba34b148f3979f0983444009d716e106fea0a2362836a5277f49ea21f764a55279f343a3920 +DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d +DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip 101467 BLAKE2B 8bb0aec8e693a4c0da59f1931e1fdcf6f94a236faba149d5af91e87284f39c693d20be65248eecde739cb555e371804fa6c723a56c69e6d02a347ba908e968b1 SHA512 bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8 diff --git a/net-misc/croc/croc-8.6.5.ebuild b/net-misc/croc/croc-8.6.6.ebuild similarity index 74% rename from net-misc/croc/croc-8.6.5.ebuild rename to net-misc/croc/croc-8.6.6.ebuild index 2a17ecf4087d..05e2a8b4b366 100644 --- a/net-misc/croc/croc-8.6.5.ebuild +++ b/net-misc/croc/croc-8.6.6.ebuild @@ -47,14 +47,12 @@ EGO_SUM=( "github.com/schollz/logger v1.2.0/go.mod" "github.com/schollz/mnemonicode v1.0.1" "github.com/schollz/mnemonicode v1.0.1/go.mod" - "github.com/schollz/pake/v2 v2.0.4" - "github.com/schollz/pake/v2 v2.0.4/go.mod" - "github.com/schollz/peerdiscovery v1.6.0" - "github.com/schollz/peerdiscovery v1.6.0/go.mod" - "github.com/schollz/progressbar/v2 v2.15.0" - "github.com/schollz/progressbar/v2 v2.15.0/go.mod" - "github.com/schollz/progressbar/v3 v3.6.2" - "github.com/schollz/progressbar/v3 v3.6.2/go.mod" + "github.com/schollz/pake/v2 v2.0.5" + "github.com/schollz/pake/v2 v2.0.5/go.mod" + "github.com/schollz/peerdiscovery v1.6.1" + "github.com/schollz/peerdiscovery v1.6.1/go.mod" + "github.com/schollz/progressbar/v3 v3.7.1" + "github.com/schollz/progressbar/v3 v3.7.1/go.mod" "github.com/shurcooL/sanitized_anchor_name v1.0.0" "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod" "github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod" @@ -62,37 +60,34 @@ EGO_SUM=( "github.com/spaolacci/murmur3 v1.1.0/go.mod" "github.com/stretchr/objx v0.1.0/go.mod" "github.com/stretchr/testify v1.3.0/go.mod" - "github.com/stretchr/testify v1.4.0" - "github.com/stretchr/testify v1.4.0/go.mod" + "github.com/stretchr/testify v1.6.1" + "github.com/stretchr/testify v1.6.1/go.mod" "github.com/tscholl2/siec v0.0.0-20191122224205-8da93652b094" "github.com/tscholl2/siec v0.0.0-20191122224205-8da93652b094/go.mod" "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod" - "golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9" - "golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9/go.mod" "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9" "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod" - "golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod" - "golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897" - "golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod" + "golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9/go.mod" + "golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9" + "golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod" "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod" - "golang.org/x/net v0.0.0-20200707034311-ab3426394381" - "golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod" - "golang.org/x/net v0.0.0-20201022231255-08b38378de70" - "golang.org/x/net v0.0.0-20201022231255-08b38378de70/go.mod" + "golang.org/x/net v0.0.0-20201110031124-69a78807bb2b" + "golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod" "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod" "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod" + "golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod" "golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod" - "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd" - "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod" - "golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae" - "golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod" "golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod" - "golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634/go.mod" - "golang.org/x/sys v0.0.0-20201022201747-fb209a7c41cd" - "golang.org/x/sys v0.0.0-20201022201747-fb209a7c41cd/go.mod" + "golang.org/x/sys v0.0.0-20201113135734-0a15ea8d9b02/go.mod" + "golang.org/x/sys v0.0.0-20201117222635-ba5294a509c7" + "golang.org/x/sys v0.0.0-20201117222635-ba5294a509c7/go.mod" + "golang.org/x/term v0.0.0-20201117132131-f5c789dd3221" + "golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod" "golang.org/x/text v0.3.0/go.mod" "golang.org/x/text v0.3.3" "golang.org/x/text v0.3.3/go.mod" + "golang.org/x/text v0.3.4" + "golang.org/x/text v0.3.4/go.mod" "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15" @@ -100,8 +95,8 @@ EGO_SUM=( "gopkg.in/tylerb/is.v1 v1.1.2" "gopkg.in/tylerb/is.v1 v1.1.2/go.mod" "gopkg.in/yaml.v2 v2.2.2/go.mod" - "gopkg.in/yaml.v2 v2.2.7" - "gopkg.in/yaml.v2 v2.2.7/go.mod" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" ) go-module_set_globals diff --git a/net-misc/dhcp/dhcp-4.4.2-r2.ebuild b/net-misc/dhcp/dhcp-4.4.2-r3.ebuild similarity index 100% rename from net-misc/dhcp/dhcp-4.4.2-r2.ebuild rename to net-misc/dhcp/dhcp-4.4.2-r3.ebuild diff --git a/net-misc/dhcp/files/dhcpd4.service b/net-misc/dhcp/files/dhcpd4.service index b064bd9b57df..8197ace12103 100644 --- a/net-misc/dhcp/files/dhcpd4.service +++ b/net-misc/dhcp/files/dhcpd4.service @@ -3,6 +3,8 @@ Description=DHCPv4 Server Daemon Documentation=man:dhcpd(8) man:dhcpd.conf(5) After=network.target After=time-sync.target +After=network-online.target +Wants=network-online.target [Service] ExecStart=/usr/sbin/dhcpd -f -cf /etc/dhcp/dhcpd.conf -user dhcp -group dhcp --no-pid diff --git a/net-misc/dhcp/files/dhcpd6.service b/net-misc/dhcp/files/dhcpd6.service index 603cacd8eb89..7f41db0a72b1 100644 --- a/net-misc/dhcp/files/dhcpd6.service +++ b/net-misc/dhcp/files/dhcpd6.service @@ -3,6 +3,8 @@ Description=DHCPv6 Server Daemon Documentation=man:dhcpd(8) man:dhcpd.conf(5) After=network.target After=time-sync.target +After=network-online.target +Wants=network-online.target [Service] ExecStart=/usr/sbin/dhcpd -f -s -6 -cf /etc/dhcp/dhcpd.conf -user dhcp -group dhcp --no-pid diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest index e4295901b34e..71564b7b553a 100644 --- a/net-misc/electrum/Manifest +++ b/net-misc/electrum/Manifest @@ -1,3 +1,2 @@ -DIST electrum-4.0.2.gh.tar.gz 4395620 BLAKE2B 27d5e74ea85d792f73a01d41528dc9a84af374d672e7c7101a82e18634a32d7ebdb039571bde36625b460c6c7634ec75848711dc4cabfbd1be46f16d18e35df2 SHA512 8b03d60cb549315c9f8a2cb4f02e3a483b8e8f9ee0461bb9d54acca0d9cf96d38a158bb6bccdb1bb584fd5a3f4fd8ffbcb0d45244f41dc5636689adb514f1681 -DIST electrum-4.0.3.gh.tar.gz 4408020 BLAKE2B ba28765683739dbdd865ad9ed034c7dd7c4f738fdc13fbb1b0c0312785d89a65c0252354fa6064d9964207ebef841dbbeb324966ad2d0b8ec26d693456d4a082 SHA512 4295a7ebb16d1809ca892a736a01e62722d3b44164b3acda4bd4cd5935dfa8c77106ddb9e32434db057d90d015d786b667949fe17d0ebba70cf6c13be13cf2ba DIST electrum-4.0.4.gh.tar.gz 4415688 BLAKE2B 1811b3a5534c343b6bc1efccfab822e2550e0b19563837ee69d93006c081acb116b96a2bfe812420cfd7694190d66eb5e5bb01e5d0271262b714a06979ff053e SHA512 1b4fc9f0ac9624ac271ba65989524f902a465ae50465fd7e9f90366a59e17e6938ab0f58cf9ec8e40c10ee99074e1f800cae080d37da60359091be698957ecda +DIST electrum-4.0.5.gh.tar.gz 4429965 BLAKE2B 1aad8c0407f1dbe085f7cef580785335823fc773296c040a7ce118b0e3edd4a1972ad0712b98754cc548df841fda6df0c854797557c2a2f57a37bd4f3cc2cdb8 SHA512 a0f2eeb57020dc16b568a4d4fce37522f212036455b4e79abf1d44bc20065e896a861bf1a5547fbcae87c2659720d7937c9c0c817e787209c119a06c05549e76 diff --git a/net-misc/electrum/electrum-4.0.2.ebuild b/net-misc/electrum/electrum-4.0.2.ebuild deleted file mode 100644 index e0a18742e6b5..000000000000 --- a/net-misc/electrum/electrum-4.0.2.ebuild +++ /dev/null @@ -1,98 +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} ) -PYTHON_REQ_USE="ncurses?" - -inherit desktop distutils-r1 xdg-utils - -DESCRIPTION="User friendly Bitcoin client" -HOMEPAGE="https://electrum.org/" -SRC_URI=" - https://github.com/spesmilo/electrum/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="cli ncurses qrcode +qt5" -REQUIRED_USE="|| ( cli ncurses qt5 )" - -RDEPEND="${PYTHON_DEPS} - dev-libs/libsecp256k1 - >=dev-python/aiohttp-socks-0.3[${PYTHON_USEDEP}] - =dev-python/aiorpcX-0.18*[${PYTHON_USEDEP}] - >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] - dev-python/bitstring[${PYTHON_USEDEP}] - =dev-python/ecdsa-0.14[${PYTHON_USEDEP}] - dev-python/pbkdf2[${PYTHON_USEDEP}] - dev-python/pyaes[${PYTHON_USEDEP}] - dev-python/PySocks[${PYTHON_USEDEP}] - dev-python/qrcode[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - >=dev-python/protobuf-python-3.12[${PYTHON_USEDEP}] - qrcode? ( media-gfx/zbar[v4l] ) - qt5? ( - dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}] - ) - ncurses? ( $(python_gen_impl_dep 'ncurses') ) - || ( - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/pycryptodome[${PYTHON_USEDEP}] - ) -" -BDEPEND=" - test? ( - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/pycryptodome[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -src_prepare() { - eapply "${FILESDIR}/3.1.2-no-user-root.patch" - eapply "${FILESDIR}/3.3.2-desktop.patch" - - # Prevent icon from being installed in the wrong location - sed -i '/icons_dirname/d' setup.py || die - - # use backwards-compatible cryptodome API - sed -i -e 's:Cryptodome:Crypto:' electrum/crypto.py || die - - local bestgui - if use qt5; then - bestgui=qt - elif use ncurses; then - bestgui=text - else - bestgui=stdio - fi - sed -i 's/^\([[:space:]]*\)\(config_options\['\''cwd'\''\] = .*\)$/\1\2\n\1config_options.setdefault("gui", "'"${bestgui}"'")\n/' ${PN}/${PN} || die - - eapply_user - - xdg_environment_reset - distutils-r1_src_prepare -} - -src_install() { - doicon -s 128 electrum/gui/icons/${PN}.png - dodoc RELEASE-NOTES - distutils-r1_src_install -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} diff --git a/net-misc/electrum/electrum-4.0.3-r1.ebuild b/net-misc/electrum/electrum-4.0.5.ebuild similarity index 100% rename from net-misc/electrum/electrum-4.0.3-r1.ebuild rename to net-misc/electrum/electrum-4.0.5.ebuild diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild index 559f510fd686..6b5d53c7649e 100644 --- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild +++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="" DEPEND=">=sys-libs/ncurses-5.2:= diff --git a/net-misc/portspoof/portspoof-1.3.ebuild b/net-misc/portspoof/portspoof-1.3.ebuild index 7dc45df92641..48332848d894 100644 --- a/net-misc/portspoof/portspoof-1.3.ebuild +++ b/net-misc/portspoof/portspoof-1.3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 DESCRIPTION="return SYN+ACK for every port connection attempt" HOMEPAGE="http://portspoof.org/" @@ -15,7 +15,6 @@ RDEPEND="${DEPEND}" if [[ ${PV} == "9999" ]] ; then inherit git-r3 autotools EGIT_REPO_URI="https://github.com/drk1wi/${PN}.git" - KEYWORDS="" else SRC_URI="https://github.com/drk1wi/portspoof/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" @@ -23,11 +22,14 @@ fi src_prepare() { if [[ ${PV} == "9999" ]] ; then + mv configure.in configure.ac || die eautoreconf fi sed -i \ 's#/usr/local/bin/portspoof -D -c /usr/local/etc/portspoof.conf -s /usr/local/etc/portspoof_signatures#/usr/bin/portspoof -D -c /etc/portspoof.conf -s /etc/portspoof_signatures#'\ system_files/init.d/portspoof.sh + sed -i '/#include /d' src/connection.h || die + eapply_user } src_install() { diff --git a/net-misc/portspoof/portspoof-9999.ebuild b/net-misc/portspoof/portspoof-9999.ebuild index 7dc45df92641..48332848d894 100644 --- a/net-misc/portspoof/portspoof-9999.ebuild +++ b/net-misc/portspoof/portspoof-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 DESCRIPTION="return SYN+ACK for every port connection attempt" HOMEPAGE="http://portspoof.org/" @@ -15,7 +15,6 @@ RDEPEND="${DEPEND}" if [[ ${PV} == "9999" ]] ; then inherit git-r3 autotools EGIT_REPO_URI="https://github.com/drk1wi/${PN}.git" - KEYWORDS="" else SRC_URI="https://github.com/drk1wi/portspoof/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" @@ -23,11 +22,14 @@ fi src_prepare() { if [[ ${PV} == "9999" ]] ; then + mv configure.in configure.ac || die eautoreconf fi sed -i \ 's#/usr/local/bin/portspoof -D -c /usr/local/etc/portspoof.conf -s /usr/local/etc/portspoof_signatures#/usr/bin/portspoof -D -c /etc/portspoof.conf -s /etc/portspoof_signatures#'\ system_files/init.d/portspoof.sh + sed -i '/#include /d' src/connection.h || die + eapply_user } src_install() { diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 0d9029724d41..cc7ee7f68357 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,3 +1,5 @@ DIST youtube-dl-2020.09.20.tar.gz 3188480 BLAKE2B c12ee589d112155207b59da9f710b2c776c07464d5c64a5d8355b963a81765b0dbc65df4f9564504fb963f30d5a11dc7e662c14d58ddf9fe6347352363cf70a5 SHA512 ed511016d0cfcbbee0cd651f793cb31cdb46d80243f86186de1cc54cb2a2055fae2f5cc3e16f838fc2ba47f3ff6f3b484219c8a707904fbc30193a2b28a1e30c DIST youtube-dl-2020.11.01.1.tar.gz 3190146 BLAKE2B 9f0a6d5041f12881d0f028459054e9cd6fbb91de35dc3d61782889f97611a39fe4a8e1c28fd45585d638ec179f6d9cd6587b06ee2d268a9f44f83f282961f367 SHA512 2c84305a71776808797a651e22690a396c1bd4c922ab6f15b086516b836aa6ac3acf5b08f556567b11f470c0d972adbf67fb110dc34ccfc5c0897e576e42ebab DIST youtube-dl-2020.11.12.tar.gz 3188015 BLAKE2B 17267ce8c3068f3a1aca20b23a77a964b005fe4a64a5c37fd3f1d97e4daae4978379ff81b6e4ac4b86fa1f3d27f01b1742dc26e42ea5b8522e3408bfe9f9e944 SHA512 7db373f6cc252635a3613ffe0b3b10640e262778105ebbd78b837fe019b0a2609032d2aeb81b239e000a86220aff99d2c018a9a6325adad6981a8ab64048131c +DIST youtube-dl-2020.11.18.tar.gz 3186065 BLAKE2B 1c27ffc59bbf7793c58e554923ea7ef8a528191e896f64e39ecb181582bcd9bfecf6de5622e70c873528b1b0b3a8335a12ab6a7b3ac71d603391ebbf83110b89 SHA512 110de857759b4c4bd0160242adebb3d8690bda2203a28a7b1a2ac1cdd9bca058702fd0b323010629e74bbb2df38f50c67b710bc2a6ad4cc907827ee013d0dbcf +DIST youtube-dl-2020.11.19.tar.gz 3188309 BLAKE2B 775700f26491257125eb68ce49c1ec062ae21568cb3f20463330430d225e2af4e02daed839e5c29cded9b92921a16f0a9611fedc748ca1cd6152c33a131d1503 SHA512 042b0fbe0f1100c338924c9278d4071aaf4cd27dfc7c9d951244aec91a9168358e7463352548a5b7c6a567b077a9db69776790c3a35e08bdf6552f465b4f735f diff --git a/net-misc/youtube-dl/youtube-dl-2020.11.18.ebuild b/net-misc/youtube-dl/youtube-dl-2020.11.18.ebuild new file mode 100644 index 000000000000..0839988f367d --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2020.11.18.ebuild @@ -0,0 +1,72 @@ +# 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=rdepend + +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/" +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz" +S=${WORKDIR}/${PN} + +LICENSE="public-domain" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +SLOT="0" + +RDEPEND=" + dev-python/pycryptodome[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose + +src_prepare() { + sed -i -e '/flake8/d' Makefile || die + distutils-r1_src_prepare +} + +python_test() { + emake offlinetest +} + +python_install_all() { + dodoc README.txt + doman ${PN}.1 + + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} + + insinto /usr/share/fish/vendor_completions.d + doins ${PN}.fish + + distutils-r1_python_install_all + + rm -r "${ED}"/usr/etc || die + rm -r "${ED}"/usr/share/doc/youtube_dl || die +} + +pkg_postinst() { + elog "${PN}(1) / https://bugs.gentoo.org/355661 /" + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :" + elog + elog "${PN} works fine on its own on most sites. However, if you want" + elog "to convert video/audio, you'll need ffmpeg (media-video/ffmpeg)." + elog "On some sites - most notably YouTube - videos can be retrieved in" + elog "a higher quality format without sound. ${PN} will detect whether" + elog "ffmpeg is present and automatically pick the best option." + elog + elog "Videos or video formats streamed via RTMP protocol can only be" + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed." + elog + elog "Downloading MMS and RTSP videos requires either mplayer" + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed." + elog + elog "If you want ${PN} to embed thumbnails from the metadata into the" + elog "resulting MP4 files, consider installing media-video/atomicparsley" +} diff --git a/net-misc/youtube-dl/youtube-dl-2020.11.19.ebuild b/net-misc/youtube-dl/youtube-dl-2020.11.19.ebuild new file mode 100644 index 000000000000..0839988f367d --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2020.11.19.ebuild @@ -0,0 +1,72 @@ +# 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=rdepend + +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/" +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz" +S=${WORKDIR}/${PN} + +LICENSE="public-domain" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +SLOT="0" + +RDEPEND=" + dev-python/pycryptodome[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose + +src_prepare() { + sed -i -e '/flake8/d' Makefile || die + distutils-r1_src_prepare +} + +python_test() { + emake offlinetest +} + +python_install_all() { + dodoc README.txt + doman ${PN}.1 + + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} + + insinto /usr/share/fish/vendor_completions.d + doins ${PN}.fish + + distutils-r1_python_install_all + + rm -r "${ED}"/usr/etc || die + rm -r "${ED}"/usr/share/doc/youtube_dl || die +} + +pkg_postinst() { + elog "${PN}(1) / https://bugs.gentoo.org/355661 /" + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :" + elog + elog "${PN} works fine on its own on most sites. However, if you want" + elog "to convert video/audio, you'll need ffmpeg (media-video/ffmpeg)." + elog "On some sites - most notably YouTube - videos can be retrieved in" + elog "a higher quality format without sound. ${PN} will detect whether" + elog "ffmpeg is present and automatically pick the best option." + elog + elog "Videos or video formats streamed via RTMP protocol can only be" + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed." + elog + elog "Downloading MMS and RTSP videos requires either mplayer" + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed." + elog + elog "If you want ${PN} to embed thumbnails from the metadata into the" + elog "resulting MP4 files, consider installing media-video/atomicparsley" +} diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index aac84970d311..90a509f31285 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/go-ipfs/Manifest b/net-p2p/go-ipfs/Manifest index b7419477d1bc..969ede9dc4a4 100644 --- a/net-p2p/go-ipfs/Manifest +++ b/net-p2p/go-ipfs/Manifest @@ -1,50 +1,58 @@ -DIST bazil.org%2Ffuse%2F@v%2Fv0.0.0-20180421153158-65cc252bf669.mod 22 BLAKE2B c2b56c0b043a2c0225c3b4142f179a2d2e4938dad64b95c8662a6d641e69a455b50ed79c66a3bcc10982792d3b7742ac96a2d74eefa7fec40a7c3146e5c949cd SHA512 7b3ef87f98485bb9ec325680f57d43a9bd76e90bdcfb1e798458f28f7d3addf91dbb6a07b654749468860981413ad2267df2d5f3535c85579e9f79d9328d355c -DIST bazil.org%2Ffuse%2F@v%2Fv0.0.0-20180421153158-65cc252bf669.zip 220785 BLAKE2B 2f8ac1b8023d5c4bf650fedd47e7d07cd9dbd973fef92cb2e4f8933f7f801c4704168e1d5a47e0f65b0ba06d8ff8276e06c4eca5c71cd418b53fe2c9a5ed1361 SHA512 785a166a0b658958784508e790b83fbffe772713fb6225e837c6f62149f09f93b1a013999becd8074d7d66a26b7cc237f7fccc66a436257ac8a222fe011ae316 DIST bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.mod 158 BLAKE2B 2b8e2dc6a4055bfa30dcc2df66c47140ac85a3b998210ae97cac41cf2a0f13125fda57c580b08f48377ac58be6a192af8cf4387ca9d3a010b012ab5fc468a172 SHA512 570386c94cfce7255778442222ff746186dc7e8ce1471deaec672f7efa157f2069b493a30b9e700dfce68d48c29eb95e8a373a5300e14fe01e58c37cf29478c5 DIST bazil.org%2Ffuse%2F@v%2Fv0.0.0-20200117225306-7b5117fecadc.zip 236560 BLAKE2B 892231231a5b5b7aedc91af88d79fa4b27f385addffd044d50fd3a0ed15ecb86736b9cd0c183108d9557b7cbbcf57573004bb87163ea8685df8ef83db463a99a SHA512 1bf37744b338f008d2ef05e0d9cfbe44f8f9572748730bc1f267c0a8404c0c334178cb43b21051151f786baa802b643fc80916599694e8f35f19a8dd66d52a87 DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b SHA512 5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273 DIST cloud.google.com%2Fgo%2F@v%2Fv0.31.0.mod 27 BLAKE2B 814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b SHA512 5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273 DIST cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod 27 BLAKE2B 814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b SHA512 5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273 DIST cloud.google.com%2Fgo%2F@v%2Fv0.37.0.mod 1008 BLAKE2B 4927d7d7fae96f989d42ac23ac107e4fdab6ba955f3ba69140e56ceab2e4c618faf5fd88006794a20c3660e368e717dcead18289cb09608af3bd4fc4bda29f0c SHA512 24150b760cdcb32da7bcd7adf54085973c41904673ceebc13cf12609a63e68e6620737414de3ffca810525e1f69aa7b725a3b5635d114c1c2d31f13b2ca8a7e6 +DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod 1006 BLAKE2B 9d321b9bad7e881795f0215828ca23ff5753b8ca9cbe64ca085bcd2f64d36d0d5bdd5c3e80eb64e19e067748b6b23eb7837827cede0e75a840ed1cfa2b00c1a8 SHA512 8aa90e6ce7d50af3db56c8a7abdd16822f6351cabb96e6b75ac0cdefa15bb4a2d402aa84e6212fec4d599ec6f13cb1891bb37f41200e6a05a27642375a89a959 +DIST cloud.google.com%2Fgo%2F@v%2Fv0.44.1.mod 1150 BLAKE2B dba381727351af838c47c0d81a0d842d3851dc4e4a6cce1fbea14ccef9dc21407dbe2749fcaf130df4211b083ddac015bc532f7285450e767064855cf729ecce SHA512 6a49609209f9d51e4851ed5c55a06b9451c0101de3bd92b7fa5b3662b2e85df4a667ad8068288773b9a85670c65fbba46f88c643aac290d1f65e2a44ef531409 +DIST cloud.google.com%2Fgo%2F@v%2Fv0.44.2.mod 1075 BLAKE2B 370ba9f085033653a0fe9d328aca613b7feb50eb9407e55ed583d7b9302fd844856c9a1a9dca69c67c360c0a7b49ebff6ebd22946fb83c6c7061b9b8c573e99e SHA512 a58f7bd34b5ba8affd021a2d34be64e49dab0d9bb893ad25e00bf5b50ff92c4762b6d9093134b483dff2573ad3c0ebb5f42808dfbe33081cef0e96dc5215074f +DIST cloud.google.com%2Fgo%2F@v%2Fv0.45.1.mod 998 BLAKE2B 8dc0e29275055b37db12138b6e30fb22a6ccd995b3c3566efbb616f799660cd7073bfee935e41a77f311a95d0ec40ef9b5e40673ff8e59c9c06e5cfa32675adb SHA512 ade24f2b10476b5e5eb42d6f471b73ccb7d8107e6a26c5b1fd38191dc7d4ffee31552088fa5854983c47a2c4868a13bfc22d7f92f834662c75f7c4c88e0274ea +DIST cloud.google.com%2Fgo%2F@v%2Fv0.46.3.mod 960 BLAKE2B 879529244d38fbecdaea27588031c2d0d82551d8173f7e41f004dae8356e2264259d80e66953e941aa856a9613ae82211ea8dc0b12f9188f65bdf54487052952 SHA512 cbe178d04fe28f9b7dd07b0317fd4404d805e80ceada4953ad47763bafa2f215f88464c1315261a902ebcc52145af09df4c96a341e42644d38526909fcef313c +DIST cloud.google.com%2Fgo%2F@v%2Fv0.50.0.mod 1129 BLAKE2B 975226b22ad0291e83a5e47d901c79ac5a7c684010972581dc15f9713154141f3d6dd7231407255240620e29cbfeb877f05f5b5d388100a70d381f8f54f7db5f SHA512 70400a50eedc5305fef765d38f0428f636f439195d09cbb283ee7779b8aba1f881f83d894acbc6ee90ff016358aa9b117c79557da15d10fc60264eb36ed3fe3c +DIST cloud.google.com%2Fgo%2F@v%2Fv0.53.0.mod 1149 BLAKE2B bc4e8c16d0c809b4f5d46d8b29112192ff51066e7df99242923eed643339599ca3d1180afe571c3e826d656d935ccc9ff1ba1b79701de859cc15364415bb35ae SHA512 de15381b36dd6691bf40592be83b4ae5b58fc92111a3ccb8cb4b540e1230dc0798d86c149884e8dfb6f93ec827447acdd7ccca2f2942c81aeafd1b035f5c482a +DIST cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.0.1.mod 319 BLAKE2B 99d93b5a4dbd4c90f3e8dfb58e64ed41fdbb484f2348297a90c8dabe03b036ef6917c2c9fb7cc4795d0c8d25af10cefebff4c4bc1b2ebcdc876b6db8beae5eb8 SHA512 338a067f7ad15d8549da11ac146b65657923ae4fee3caf2eff888c104c0df0edcdf0d98f5be6a67a764aa39210d5cad811ebd9d604084a67049b753246fbf89a +DIST cloud.google.com%2Fgo%2Fbigquery%2F@v%2Fv1.3.0.mod 555 BLAKE2B 6707e248be1fa35970275388888eb7692f976a8fca6ddc7cf02e355f8d44264c7eef6d093d90c115670b7a3b495658b79e622c47d1c90b95684b8d32547d7342 SHA512 2df2dbf07037f027100f8beba6416c00fc115fcde2dce19ea4c0fe4a036e8f66f7ae278e9765d0fc80149a330e6dd90eee8e9a0c93aecfe16da65d02320aabd1 +DIST cloud.google.com%2Fgo%2Fdatastore%2F@v%2Fv1.0.0.mod 433 BLAKE2B b3d58e290d719434bd433ffda9572fb233171493c7b81bfe353d9b7730130d5dec365f4e93a136a25467851b5f26cb21be6be06486696f010ccff1fcea140662 SHA512 8082ab039764aa6abd6615b1cf3a1830f2813dd5b791a27b7f0ebf5fa1ee68fe040a5e12988e6c91ba5d032a0a6666d384d6eceff12165d394a75ba56b744382 +DIST cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod 508 BLAKE2B 9915d1d1a768852b3f262784771c8fe2e7e176e61f7d77841f8d3adac571dc141e36c6455c19090cf00a98a7a5ef0c2c887424142e2ecad339f8105b1c30f91e SHA512 8a393b8614207c22c73a706ccc3e66a8a16d2f305ab95d8f70774f13d0bcb7396b0ac5095daa57ebb991225a1db08c3110f1e85c26dd72f3bbcaf73fea536d9c +DIST cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.1.0.mod 755 BLAKE2B 2a2aa8bcee45060e8a277379fabf5ce73a2c0a0abea8802c1bf152e31522b565b969ace4a49367048672908e55142c18b3c4ad60c7a468866ddf3316c722699a SHA512 2b2720ffcf11b02b3e12e794132f0d25e5e0afa08e4d617f9d4147d8bafbb6f00c8aa4c5776e039eba4ff5c8add0b4e73c8c928f4b155c5c386f09a4e06b765c +DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 BLAKE2B 4fef9f7da9f23e94efe43be0e279958715949a889c5d51e388f5b66ec9a7cdbf15a717c988883647032998facd71359ad1dcacebcf3334100144abbfa12dac03 SHA512 faf4a02a513ae4c23f931b8917e74a056c528b4267ef3b5b704949283910bfc5d41fdd7264b78d4fc1f6e5b370474a7c9933a2fad36bb5c872006def71f8ed0b +DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.5.0.mod 953 BLAKE2B c520f4cc8fbb60561cfd33b1f70839691a3970669c34c0bc1ede45a31ea53624d9c4d2b16de25533d3121792739006faecc1086afd2539e2a1c7e9b37fc6bead SHA512 33dacd4dc65bf8a7ead2e660e6719beb7024b1603e47e705ee657cf3024e5ec06c44ba88dfd05192142ce880903e94f8dd628d059ddc357e6b42e395953a86ba DIST dmitri.shuralyov.com%2Fapp%2Fchanges%2F@v%2Fv0.0.0-20180602232624-0a106ad413e3.mod 40 BLAKE2B a701681a24f3354c06bffbbff75ce9ee56a1512189b5f3791cdfde30efedea11121f097b6d06f7dff40f9f651b0eab82e79bc33d0ac003bbeb123568d23124df SHA512 26c349638b8c031e65fde1387c9fad8fd99f09e2e165d943ee5ed2d1858db713936f07f640e9b2bb4e156c794cdf18f7076a559c4df7ecf39deb959232ca7940 +DIST dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 36 BLAKE2B b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00 SHA512 196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1 DIST dmitri.shuralyov.com%2Fhtml%2Fbelt%2F@v%2Fv0.0.0-20180602232347-f7d459c86be0.mod 38 BLAKE2B fe16fc3a32dfa62245da350c0082791b531fee71fc796e478326ba118ef6b939b775fbed97ba504a8712eee54a46d35081e84fbc66d2ccb3a52874fa256671c5 SHA512 a1c78474d2b67323d7d06018d53646df667fb3a6ed8ece9f6b482b4492c84cc71287b28932dde1a2962a610019b1c6290370fa100076fc185147c4406125870c DIST dmitri.shuralyov.com%2Fservice%2Fchange%2F@v%2Fv0.0.0-20181023043359-a85b471d5412.mod 43 BLAKE2B cff5f7b2d25e3da40a625b06b150c042b30e2ff9ccc59d96fbac61fa32662f07986d4d9ce89df8c0479119ba5ca1a2ddad8537d8daf8576bf93b1979afa581bb SHA512 20d56bff980c4af50c7dad8e3b30d6152ad71da004cc032c74f94fe132b2ed7757e59b420226b14e1900ce0f48df741b526814612c8eca1014db852ae409b0da DIST dmitri.shuralyov.com%2Fstate%2F@v%2Fv0.0.0-20180228185332-28bcc343414c.mod 34 BLAKE2B 2d06e85972edda7081d69a24f79d8586b56d028c0c56e5512751535086f79444b03a50c53c763ba3b4596b11c9db6407824d88595c3c23edec8e711908f201c1 SHA512 8db816cd549d69ae78c02240c9d2fcf68460264ce3bede4878f11e9bc2a722186e4d32d494ff207216503127b548453cca0c1c532fa4f433de011d9ab0296f56 DIST git.apache.org%2Fthrift.git%2F@v%2Fv0.0.0-20180902110319-2566ecd5d999.mod 33 BLAKE2B 1876ea8756f905511c9bb18327d11e071b5595ca315e60fbb613b2bf441656e4bbb304198aa3937240a9641f51c147ab61701c6bc39978583147ebd4e62f2627 SHA512 20958dd7849b90732d66ff46316a8e234839491c7bb2688c59f9c755ea7458d810a345362d0145c9e4c15311f0d999b030a7ba53dac7266ab7b95b926de6302c DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.mod 39 BLAKE2B 013c2db2238182e2b9b4b5aaf9dc8a744ba371ba0c6e8a6c45a0f78d6704a1514fea45f6b6c585975dcaf094f709be2e6c80964cc053d32bec015ad8342c1fe2 SHA512 f50e5abcaac0ba2453bb7e8f674ef126673e5235069d4755dc38922427952dd3cb56748db564ff1d18f733e183480ff139e4a7029416ddd362eb61b560cf4d9a -DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20180913140656-343706a395b7.zip 10012 BLAKE2B 2b5663f6c87bcdbe13eb2fd9470a93fed733f6f8819eac09a49fc7327b47cdfa91d780f99c9f271d709d6816fd7357bf9dc8b992cba69c0451dfceb4eedb760f SHA512 cf18afdf43c75026c27b3417831ce7f30e33aa84468708e867049b3d99f4956a4ea534f400c4c05ed636ed82cae007bdd16d8b728ff267e579aacd7ea659c264 DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.mod 39 BLAKE2B 013c2db2238182e2b9b4b5aaf9dc8a744ba371ba0c6e8a6c45a0f78d6704a1514fea45f6b6c585975dcaf094f709be2e6c80964cc053d32bec015ad8342c1fe2 SHA512 f50e5abcaac0ba2453bb7e8f674ef126673e5235069d4755dc38922427952dd3cb56748db564ff1d18f733e183480ff139e4a7029416ddd362eb61b560cf4d9a -DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190306092124-e2d15f34fcf9.zip 10587 BLAKE2B b57eeddfb3f83a2dafb244f84b5fa69c8afa1b06facbe6f73847c10c505521c97d4d38614c66971355f46007ebea9cfe453994ec8142d519e47cb092f118a6e0 SHA512 f1a5f2083c6fb716b41aac17994043e8e9040fe804e83a57cfc91c45537c53da0799e074eab1a0e0eab47b64588b64419ad7c23597bea364b24ea15fe360a4a7 DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.mod 39 BLAKE2B 013c2db2238182e2b9b4b5aaf9dc8a744ba371ba0c6e8a6c45a0f78d6704a1514fea45f6b6c585975dcaf094f709be2e6c80964cc053d32bec015ad8342c1fe2 SHA512 f50e5abcaac0ba2453bb7e8f674ef126673e5235069d4755dc38922427952dd3cb56748db564ff1d18f733e183480ff139e4a7029416ddd362eb61b560cf4d9a DIST github.com%2F!andreas!briese%2Fbbloom%2F@v%2Fv0.0.0-20190825152654-46b345b51c96.zip 10890 BLAKE2B 714e266a17616031876392480d8b9ef543b80d4222be5f4e56e9dac58426d680d5f12013b2451b04e74a9db7882eb7919a01f83e8b19b92ecfaaf1e0cae30414 SHA512 6508ec4841085a1e4a6e3a651d5c3387d7659e56137c0520838e9d000a7450738308d5068ad7303d405dbde7152185178eadb6ba568554e42e0ed477674fd3de DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d SHA512 320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.zip 56132 BLAKE2B 5edcfe991d7fc40094d637bae8d8d6f1f897ab3d3786ade2bb80287738103264520681ced8d30d2037253206c32d3f867f4d024a571cb9aad030ebc451e198eb SHA512 43ed64ae515738487e9b75a2290d0b2bc25e83c021a9f29b21487c37adbf34e74e1e7d3d5ec0dfe678c8396356f95c3993a5f5610d1791ff62056cd182a4272f +DIST github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 33 BLAKE2B d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2 SHA512 dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d DIST github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.mod 38 BLAKE2B 75361b0366672474afbbdf7b74559e5ef3ff08fffb6ceb928aa58e6ab055ff06a7180437a4921868c4aca678c9657d750f101cbfd27e0292e7d315007ef35192 SHA512 0e374f95dd9c31f90c223e7bd34343970cd44d7d1988b468348517a545e99834c3b69e4b52d9de5ef81faead1684c820d1976d1631dad8cb8cac403fa20efbe9 DIST github.com%2F!kubuxu%2Fgo-os-helper%2F@v%2Fv0.0.1.zip 1843 BLAKE2B 8e6c747abc72319f2939c1db9cd82530f1615d0bbc5085d88ee634f72c0868532e04466fe9a5ed1ff29184a6e11d9353e0ae82c6b97c831fb2dcc88ad79b3842 SHA512 d4bbc2796888108e23253381bf0a46c44fa89730e1f2c8e50e2e55e1314ad761fbf9d806ff8f061cb18647c430ae9859f79d3050ce72824befad0669a66e9f1b DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f SHA512 9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.zip 17606 BLAKE2B ee5acf57c658d87b97b533d695cb72c9d83e281f9e533271f03d85d52f92c3c90e240f3b6d2a01bebbea6befb147ab66d7f75c403fb8bb3e58a2bc0bb1269f6e SHA512 89912d8630bed5c71dcf391b57e4537b93f01c4f1cf320a8c11d5d34d47fa4e3ea4abbfb3bc3aa76ad3cf08350da67e190cd80322597d0de3123fbaccbcea9e4 DIST github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.mod 40 BLAKE2B cc7804b399283e97ddd4484d7867a6b68fd21b4093b47346dd21cd284731183d98c3525c834beda5dbcb789020767d5d7d766798fe72a1bd2538661805aa3be7 SHA512 81a26774365bc0f2ae76fb892cb1e834d37f09e958d27d9aac61ecff5bd7b85b694118f771f5ad3dd0ff607fe092796cad6853f93c1690ad4939c36c5af15126 -DIST github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.0-20180330043415-076a62f9ce6e.zip 4183 BLAKE2B d1d04aec653361865c4deda8ea0f138d2713b387412b8441de8b6b1fe98ae88e27752825703ffa786a33daf4135c9a00142bbfe3b1b36d1dd22b13f89f795571 SHA512 e8e22c4ba3334de0bb5a01b9c4c3520856f2279b90adaf04c62fec668a6d89289ced8b24252a51a303801778251cb750338cb61939d6614eb5351bacb5dcc1c9 DIST github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.mod 49 BLAKE2B 0045e30dbd30e5442384443ea5ea4c2911cad42678f4d222bd489dd5dfe3a6245bae58f32163f9e4fee099dd4ba85935edd3ae7234f47d3306c8cc2bacd22087 SHA512 47e84fe2465a1985fc4555a510d3d67c602803ee1d6caff4f1ef7727f0e5f089ec7026cda012bcd05595ae84375e19edfefc97ab6635df9ffa27323e98cb3507 DIST github.com%2F!stebalien%2Fgo-bitfield%2F@v%2Fv0.0.1.zip 4204 BLAKE2B e2515d9e38443e648f3703655552dd5f3b0af92c7cbc582e762373b78f88cfe93c119223748b05b9a5f85c6fd7e3020fae1bba8537ac34b35d36d25b377dc652 SHA512 dcc27498037f05b8768f2a2652ee77647d6f75d790d125ba4be040e5bb5ffdcb5f6df1fd1bfffef9df10e6091008ee27fd59d63e3e2419f4be7e42c6390eda01 DIST github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.mod 31 BLAKE2B 0e07ae1110a18d70ea6586009db68ef57051a89f7476c219cc584815e896efd2b3a40ba9603aea815152caf8ba655183fa65441b0de346aba273dd73459c73a0 SHA512 27782423c17ad862a5697922bcf0222239aef0b7915493caeb133743520490e07927a5b3c63227278e7abd352856ed276554d4e59639667336f23ff0bf111900 -DIST github.com%2Faead%2Fsiphash%2F@v%2Fv1.0.1.zip 12209 BLAKE2B d63ff53819d8aea767a1270ca0cb41c4010a4c6d27ffd268e165e37b94fe45531a61fdc56c1d82403ee1bba3b39ddfee728d84c7c4d3ca0a7350821c8e6e871c SHA512 75948cc9581820a679edbd5467c09b12a9e4d82613ae29c05cdf4de965472d0c4af76c2bc7bef2cd73e81de6432000c9993471a92ad8568adbdb8c266dc08e16 -DIST github.com%2Falangpierce%2Fgo-forceexport%2F@v%2Fv0.0.0-20160317203124-8f1d6941cd75.mod 45 BLAKE2B 451da80b89b0c53a48baa253fb4899701b97286de7c2fd501aa17d5776c5013a9e888a36075d4b1eda1c9c4bc123f64a007e7555d09b6ec3d828d9b15d3ef2a8 SHA512 3f616622bf613f062fd222135532d4ffdcf94dfa5dffa1966619f55c446aa8186ad38470b0c23a68d0cd1de7b0b3f2b4471a1cc61ba73e27311702366befdae8 -DIST github.com%2Falangpierce%2Fgo-forceexport%2F@v%2Fv0.0.0-20160317203124-8f1d6941cd75.zip 5901 BLAKE2B 0d89542d018a40bd92a755a630c6b528679b853671b018fedd5934e271528f8cba2a7c121ec8be4306732a795482c161e301fa578b2f50970c555ffb45a03eb9 SHA512 26eee92b278a89ea30eb1bd9c105dff9d96d662d7d3b4ff255caf3fce6a7ec660fb3f01e3209ccb66358d70cf7cb9354027dc85824f54a7a2b81f889028823f4 DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929 -DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.zip 66023 BLAKE2B c023de8e6a5f0b13a7ad1484f21f04643782d802becae77f247709f0c16ab8aff7caf748736561138448efe1cd52c0ac1903b22b92ec56efe817935ccd45ff22 SHA512 356c87eec65f0dc8a680b7a19e888d87fb8c808ec675501df635560fd5d3b57da36ecc2cd9eeb4a5e454c5564d4cf1a062b47b7a050e116b57c87afbe020eb53 DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod 35 BLAKE2B 873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad SHA512 7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175 -DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.zip 5176 BLAKE2B 58fdc8010b4ee8363336ef720c8ef2d126c2b7dd79357ca4f99a1094957965544430420f6ae4155490f75242cd7a7cd20993a9ae15087ccdf33327c551caff59 SHA512 0dd4cbe03b224bfe68d00d121f758796f6e63b96eeee17261bc7d8f6ad1ef9878976b8eae5eadc2f6abee28670a83e6925596f4d35bea529fcd735772fc9a049 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190717042225-c3de453c63f4.mod 35 BLAKE2B 873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad SHA512 7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175 DIST github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.mod 44 BLAKE2B 51cd299533d39c6f9e2cbe93b4e80f0bf3b261809e777114488d181b447caec2c06689aba7fa0bf39a3d6059fccb2132d0b5d22f1352f2526588218a36ab57f0 SHA512 a503f68b2ad686d9b813646a4af0405669d40f6209a32447a84fe4140df64f7c724f20e8b07aa1bd0ee29011db5764c677474f6ba2785dea65291a56e46a9100 DIST github.com%2Falexbrainman%2Fgoissue34681%2F@v%2Fv0.0.0-20191006012335-3fc7a47baff5.zip 4991 BLAKE2B fc42942b4ef0f05f03de94dde89b3a62b29cafc0c677a1457de32a5a07f1e9fff6e4836623a7e7e08d6e3718bdbfe95bba23b0b96d099dafbb3fc3d090b4e65f SHA512 1cf0cabf4764c792e8c3ed464f02b07d603a63f9a5cb9bbc52d9c32c90ed61fd408cc7da68e7bb8335c0295f4dd017ebbfbfe12f03457872874d600866ab4678 DIST github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod 35 BLAKE2B f41c90b71b4b9e1876a13df9703b57f52ec6d7fd4258a7c44bca15c12310b512e400b32715180bfbe4726887aa7284fa21832ca9f9eb1dd759ee7d0c627307ac SHA512 5a93ead508f4f5e229e5d0e59dc820840819d9b32158ddecf2d6dae7ee96ce92af6bd80d18a98e437cbdda5de6df6cac03f7b535017fa92ef868dcccbc6e1f27 DIST github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod 35 BLAKE2B e9ca430f98cfcfdc5bc1e50ef421253011f21fe2a9a06b15b4b818f336c64a544ede9a8d1552740e85358fcb16a588345124b06fb2788951c24c9dd92c3b1cda SHA512 a0c76da94f068f583607520b728036f45ea071b727d3aee601eee712bd952b5f6c8cd5df1e1484195b07bb4c3b224771dda1fc7848dcd086a6dc93ada3ff2ce8 +DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.mod 45 BLAKE2B 57350526cf25f10ae2018fd72f9944dae239a72c2a44db02f0a7414d802cd03b48e58d3c63fea3cf02cffc26e6c7b334190b2f7a76b7e24ec50aaecdeba1a442 SHA512 d17d2e4a7184b75fde3ef47d7158c9913611ae55dc2e67ad2d0db87afaaf894d0eaf5f0f5b027e2d888c592735dec2d381c83c7992576eb164492e98b24b5f1d +DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.2.zip 7224 BLAKE2B e6ac68888b9879a7d2cab9a6eff383059b65a101177ae8981f4ab35baa327040789b6b69e0238c1498cb8896622d89a4f6110e9c8d4f92e6832413470fac36d9 SHA512 ff5523bf10a183ce2d09e876fe5bfca2902efa1eacb36d6e59065fdbbf8289afcb6569e77f62267ac62be4fb09e9fb98ab42a921829ed72c179df381838a4125 +DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.mod 45 BLAKE2B 57350526cf25f10ae2018fd72f9944dae239a72c2a44db02f0a7414d802cd03b48e58d3c63fea3cf02cffc26e6c7b334190b2f7a76b7e24ec50aaecdeba1a442 SHA512 d17d2e4a7184b75fde3ef47d7158c9913611ae55dc2e67ad2d0db87afaaf894d0eaf5f0f5b027e2d888c592735dec2d381c83c7992576eb164492e98b24b5f1d +DIST github.com%2Fbenbjohnson%2Fclock%2F@v%2Fv1.0.3.zip 7220 BLAKE2B 0a7e9be6781be8c5c8726ac7acdce2d55c4b6690c151954442577b7a10005329261b1bac7d0ec9e0b15dd712762ad81c9614d90e03f7d32541eb99de904c8e2d SHA512 acb1039ee94aedeaab9cb25b218a2b7953ba22352198260630a168b1341f1d04dff827142a968b039cc03295055d2528fda134c696573ec1bee02648915ab22c DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod 31 BLAKE2B f69b0989e51b0b649f81b044169fe4309f130eba5bcc6ff33aa9666b1b754aa0e524b8c7a627a91000ccc4f93bf93cdee3e97bd3b2184b050878bc3f413f0c72 SHA512 f21fd002853e4435421f8396e6be016f65be1537815c60d23940caf26e3f14dd6f2caac802cb64cd586b1b1f1220b2727de347b3d1816b8e741f68d87ebcf03f -DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.zip 15013 BLAKE2B daecbcbb12a60a1423c4f419db44a0d63108fe622cf843593abb16fd75dcea703b3cf56f1c13433959eccbfb2a9bd5640f837f4be3296220366438dd7ed04f86 SHA512 44ccb3d6134742a80ac15830613c169d1b0d43e6ce40c2f2fdea07203bec134e1ba80dc57c6d14a007014ea141dca311b3ebe61b12d2181311665a9ffe83ca39 DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod 40 BLAKE2B ce42c81a7dcb03d21a99d6240ce12f8455297722513497b1a75f2c848b5fb7ef70b577c2406638442f16beedd68806de890a5c299cf1c008c439df23df2f5bb1 SHA512 ec4424da8e1e3849408da7bfe83d37e21ac75edb889de8ef63be897d59678679b018f4606be78500952e7eee73a6252ee6e477b1a1612e2d036dbf72c17b9c9b -DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.zip 14678 BLAKE2B 3f95d78aa356a314f8da501f8085a880201766e184abb6c222c45e09c0c3b5e1e1eb7b89cc8ed46b77b09be8860fdf3e28525d9a451964ad64a96c6ee848a41d SHA512 be60a4c8059a9cb07ceb12e079b1224b6f871ecb1d7953906ab303cfe86d00cb979e203299f00fe828b2f6d2a3f5d55814c50809e9b872ab6d96db73f3771498 DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.mod 40 BLAKE2B 6cc86f2bceda8617678a251604b6c049cfdc80f9afcae0cead6b2cd04f90fe1b5d5d56d0c29f98fddd7f4ff6fb4a0f97c052193b153dbfc772cf6597d664c09d SHA512 d0c78b8f08d177e05148ce845f8d720fe79a193a420c12ce15504af8fa3dffc4d2fcebea8030f5cca90aff5775013e2252e0c289d4ed5094e07657ea97a79570 DIST github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.1.zip 14678 BLAKE2B 6647c66a45f2dc67b83a1e493bc73d4439de7962f7f1472dc267be9a9408b5ddda66b8ee2fdadf18b2973648035fb3907fe539a8b7ccb768b8c99c4cae573eab SHA512 f973efba5ce7c651d9c3e4e467a1423b00b102034a054874d09977957b7b55557e05da06fb4c158e693db7bac01bf601f950cae0d411dc92afd0686d7e1de4cf DIST github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod 31 BLAKE2B 15785a01a9f07d2cfe324a1ece5c8188395300b11821621fe13427b702cb9f452ebe125566c3c2648d2d83139add9ad6224d00536aaea7b16306eb62f67f8184 SHA512 5f7f52012aa82bdc43bd89d1491fbe00091299554bd85dbfc07f0cc757fcf44f4499df97a4f19c234ce70fbb7af0f4c54c13ffd547ef0a733365ea9c68dd0297 @@ -53,55 +61,46 @@ DIST github.com%2Fbradfitz%2Fgo-smtpd%2F@v%2Fv0.0.0-20170404230938-deb6d6237625. DIST github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.mod 36 BLAKE2B 815a2fdcc9ce7f6f9098e239ffe398112298a28dfcfee51d83f65d31c4a69bd1d2ed672549796b4ae53bf2ad7e7c7f5ac4f7aef3473a23276d073e2b6e750572 SHA512 059688fde287f20422e8b1928af3465836bf1a6796b94ad6f3194565063b0419de43e337ac7ca652c65e14bc129a6782ed10be61446cfd32e20a037a025df8f0 DIST github.com%2Fbren2010%2Fproquint%2F@v%2Fv0.0.0-20160323162903-38337c27106d.zip 3037 BLAKE2B ed6b7355857a362ababddc1a32f6d39cf9ff94f50913b353c5c96a3b469a03e58d46fe88aabdcb9fdd5b42462f2e4e2e2e11520a6e5377b7138c8385b211497c SHA512 ca741a7b877540350513cd370fbe7a5cfb86b30522ed672efa58078fd338c38f86d953e36e1bb9309b65c08a3ac105a085de51411df048aec47d7c3e294a9814 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.mod 904 BLAKE2B f181fe032f621022e2b81633d16f152a7f09bf367a4e126f8b71166cd8a4dddf46502f5e32adeba85bd76cbb5e253f26e0544421349f9f29853b05e482df389e SHA512 1fcbe5341583a4dfc35c7be1a733e0629a4aa7a2973e09b9defbca2f2148a61f8b917a36b8669524e63ec298a62dc6b8538c488a21a98fe7beedc43ef069e03c -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190213025234-306aecffea32.zip 3093055 BLAKE2B 8a9b9c705a4f8774ec57f71cf4280f3f65ef0942d4c5f8c6997e90e88c0284f3b63181fa27bd6741444ff2750419e262a40f12c3500566cefc9d66f023ef73de SHA512 5ad2cfb1adb733f5628d139e5cbf936a1c3f9ac34369b9b23bdf8ccd21658cf34e94c922269bccf6e2dd3198e59b80e7b9e66147c08566bb429d603d1f150fee -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190427004231-96897255fd17.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190427004231-96897255fd17.zip 3095564 BLAKE2B 55b0d3a7a587f469cc276dfde64c68e429fe906eed23a245d9bb60a28734b8e48f2e66cd1335a993a22aca8093177712c7dad7de45dcb4e4c6af6dd7601fc551 SHA512 d6918d51f3eb23c4a238fef961ebb7ca7f46cb639c653797bc76b66a61122c73c243ff292ea5ac9c053d68dc448e19040714c06727bd06e89d25e22ba78f7677 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190523000118-16327141da8c.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190605094302-a0d1e3e36d50.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 -DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190629003639-c26ffa870fd8.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.mod 904 BLAKE2B 2e99a4fa33d10c5aa9653c93135028f9e0ce5262187878ff268d221b08540ecf1d08602f938da3f118fa98ae8d9bfbe4b086d0597d3d9150153158bd934d6cfe SHA512 a2c916d1296bba37af204683192c94b4a4b58b3490fbe6a4414673b8add1829b9f82700269d0d3be3da543d8d37bff64dddaac30864445fc986c93355900e408 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.0.0-20190824003749-130ea5bddde3.zip 3103745 BLAKE2B c03faa9327d809bea23cb55e497fa084fa67703f4c0cfdaec59b1199a20358a0df7430998cc42fc8d1c0c8c22281b407d9d8fe875c166dcedfc62b3ce78f0433 SHA512 7ac2425554b5a702ad76189fd189fa73968bf8f72b14ec7c9aba7c5279ddf4ef39c49cb81cc9cf4cb6487c4b767e9be30a0d3854b48e3a06b40b0026a2b86962 DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.mod 913 BLAKE2B 34c74ca4a6b36d48d11cd24559e58f5f2d389db9c8946811bf60b4e36ca7ed0e1ec32da129b16b6d2e904200212761c0e0cc997886a96c195778c9f3305acad0 SHA512 eeca58cd15d73e4074d3139430632556301392118e1c1f468cd6c86331993ffeaed407503d0b687a455a4052dfd46a2049bd839437276133e009c4477b778b3c DIST github.com%2Fbtcsuite%2Fbtcd%2F@v%2Fv0.20.1-beta.zip 3090472 BLAKE2B fa8bdba203e01448825880f0a4fe00e0cf5271b4e831c9f1631d04b88813689d2d154dd773efcec0b1f76381b114855a55df57338b0ddb29d68e81ac98074292 SHA512 c669c1e28867c8039eec5c99ce0ae99f18f0951cab0f140b00ec39354313de3e8a5148111334eee6d5e58ed4a207fa9663841c13454b89abbb7546506076c223 DIST github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.mod 34 BLAKE2B c775b370ca97e395887e54ab02aefe9e14a50db63424bb16ef5879042a1cefe65147ce346999678bcebfe7148db5ed9f9eb136b4e13ce3420c475059118dbecc SHA512 9a9bfcfd623331e8b3e4b49de79bc3ab07d9c84aa5fb96a226a16acb479b9aaab06ef9f7a5a0b1af5da407d17dbe3c99760f76e22e113aa73f9fb4bcec3806e2 -DIST github.com%2Fbtcsuite%2Fbtclog%2F@v%2Fv0.0.0-20170628155309-84c8d2346e9f.zip 9442 BLAKE2B 1b49ab545306172a48f5090f32b44d8931c54030ae5e9bc7b07d5fa52c88379d235739e87218716db9fe7c5ca53eff8a2b18b3c92d7a03f9ed844c7d82404b4d SHA512 2d62332928c7deb1171ff3c8ae5093e582aa751101e34b2e4b6b96bb7f62c55fb3f3ada7ba539343a54161a72fcee0082bc99ea42b5366f2820874a2344d7bb2 DIST github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190207003914-4c204d697803.mod 35 BLAKE2B cd84a8bb023a5f82f7f7a3175704104f8180f9f81a38a56f7fd76a28fcd0456d1b70ae6c28e5a25b5fa2c03cc5b685aeaf800325372d575eb97af1bdbaeea18d SHA512 52310213cf480b7e62c96946555127515fe4874772e9cd88ba21be58a95a7e71c99d2935a304b56c5ac6901615eef0d942e6da39c9899dec4b3d7ecdd2aa5c5b DIST github.com%2Fbtcsuite%2Fbtcutil%2F@v%2Fv0.0.0-20190425235716-9e5f4b9a998d.mod 35 BLAKE2B cd84a8bb023a5f82f7f7a3175704104f8180f9f81a38a56f7fd76a28fcd0456d1b70ae6c28e5a25b5fa2c03cc5b685aeaf800325372d575eb97af1bdbaeea18d SHA512 52310213cf480b7e62c96946555127515fe4874772e9cd88ba21be58a95a7e71c99d2935a304b56c5ac6901615eef0d942e6da39c9899dec4b3d7ecdd2aa5c5b DIST github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.mod 36 BLAKE2B 3232773544bcbba9d275a4547e52dcbe3a1f1cf7806e71e4ddb3ec1453130a8d64214b3c7410187b005abf33160441dde141c25ff967484c3caabb3afa4fddf4 SHA512 a0c78d97cb6ebedc110f96b2b163fb7ff5d07650f5d6c2f4f715d6c79fdccb15a6b13eb65e51bb1b352bd7960a0a45555c5aeaf5df2475e56749cbf2172f3704 -DIST github.com%2Fbtcsuite%2Fgo-socks%2F@v%2Fv0.0.0-20170105172521-4720035b7bfd.zip 4744 BLAKE2B 42a76073950cc96cf59806994c59d0ef6b2649531903bcc57b4b151099d6eec258cb64dd33a18f518c2b6cb161915e12aecaaf4e33f76e8025a3031d7a297495 SHA512 c4d206420a00537ded6e08298a62151b2560f86c21714da3e8cb9d105c4d87c3cdcd9ef3a90db304763b0cb555abb183611198eb8e6113dd6ed7ae54f9d41c7f DIST github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.mod 37 BLAKE2B ced8ff9a67a6fdc521b30ce66ea72f1fafa31d692ea99d2a723f3a571817ebfb7f61f86dd13e494e348504066d4d28f162e1ff73c4012230d3fddb3a0f4351a3 SHA512 e11603e97773889aa6eb953de16e6affce4530db9ab4f4ce5468277879785689779817e1737d302974b0be25b9331152be67a417f222b329ff6f4d52d2b6217e -DIST github.com%2Fbtcsuite%2Fgoleveldb%2F@v%2Fv0.0.0-20160330041536-7834afc9e8cd.zip 190272 BLAKE2B b613d072ab9cdbb90dc2afc8c1b644b59d49f560a70d12e49869e7c9011fc34f86a6440cbfdd0519585731b1839dd98e5b699cf706b7eed3b329570b0585be0a SHA512 953de34f5c7dbdc60ab5ed527e473fb0edd2b7261c0304bc160b6c3348e33a4af943d2036b9924c08037aa136576ebbd48627b436d0bd6c10ac6fa59a064ae58 DIST github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.mod 37 BLAKE2B 64da3d86f39de934212b6a45e6d9a6c2d373651f41f102297926935b866fd8be1015a0ea57ea2b74a8f78fe2726fa58879017e1164802fc547548869bfe4ed7d SHA512 50d63b876c12da0423ae718f3db7ec1e829f6c651ed6cf530bf8b09a14435f3092b73650e56e0da631e23f53330146edd9f7765be1eca72802bac596e8a62437 -DIST github.com%2Fbtcsuite%2Fsnappy-go%2F@v%2Fv0.0.0-20151229074030-0bdef8d06723.zip 13716 BLAKE2B 1661bdab739b4a06223b07e23e284375bcfc090d35a56635091249c2f035f166667169a7efc8e5d17de53440105169d3d4454cf523c2077a571e4015be731306 SHA512 a4a0121648abbff7ae926ba4a55de6ae4c49e34f3e82246cc917d396c9ad2550a94f65d3585f505920081b15903950c53414efedeba789f00c95745c882cd4fd DIST github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.mod 37 BLAKE2B 2abbda206e6e06f01e6cf7f41f604175d0fc0ea76fbcd691272ce5248d6c68ca83bbb1ab54e27d51a2cb988ec7582c2386118ce040dad32ec7816f4b039630d2 SHA512 fcc74c64b0213c552b7c65b5d4d4ba756320ce9a8b0fca1721ea475cfba07c5589ca01f20c1ed49975300a8ecea1367f3e614bf602611a526891f8105fce57d1 -DIST github.com%2Fbtcsuite%2Fwebsocket%2F@v%2Fv0.0.0-20150119174127-31079b680792.zip 37178 BLAKE2B 327923faf2ec0a6084a9798afe4c2cc28323b337d5c8cbbe7370057f79e0b074b999b4ae4e111dd6a1fddf5f277b15dba4bcdc3cc43aaad0b2c54155419492a1 SHA512 cd0e21768e704671e2398b84295777591c38c52eb121d74e56677a9813f5bd1bcc18f7db4d34242e8284fefe1d4cf9b8266f04d976a2a94cbb07326821ea9b6d DIST github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.mod 34 BLAKE2B b28e5f8509b703acec802140a2faac942edde87f448d478dc7da699cf058157f2c0d1bf0db9234243203747687c743e28164cb1c6ab432575e988d34738edf4c SHA512 3c291f18f0e2f5fea861239ae9dec3c70e4a6ba904a0c09f36c835bdeeaa25a49b2c7f290c8d030e9e731cd86e27966b7e41d57628c7ac5cb42e4e9fb2e6ace7 -DIST github.com%2Fbtcsuite%2Fwinsvc%2F@v%2Fv1.0.0.zip 33714 BLAKE2B 236c3fbf890914ee759fb03010181cebbb07dabe4ecfcd2ce856cb58b7459a5a1a3a2b62cd28eb0998ba001d5441cc634d9ee11354827b9085d2a01c11c0a0e5 SHA512 617cbf88cbabd29a9138f4a00fbea58406365e98db944cb8c309b1bcaaa598f8ba48ec3a6af3deeb703efb6e05a4c0c897b7382b85b6d7f78e6bed5e3811336a DIST github.com%2Fbuger%2Fjsonparser%2F@v%2Fv0.0.0-20181115193947-bf1c66bbce23.mod 35 BLAKE2B 87fd74b3a198f0c8a9897797611b73c9017378af758bc559464b3e91a6f57ecc39752ad6ea9d73ec0df128a794a3caa6384cf1092808275fe6a55731b6f0bf8b SHA512 082d6dfd13dc8bbe32bb5fc0c8c7e0e2d8fe412397df32f87639179374e57eed96f7eea00a3cda8c0c9a78b354f9275c0be3fcea4b6c797aa627dec71870a41a -DIST github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.1.1+incompatible.mod 35 BLAKE2B 6b99dc9054d6616c7f66e1f0a76a11cadf095b8661aa92aaa97aaac4c2fd943a972f9947fa64167241747f633ca9f2a74e9ddd122dc39a083223912886e04b24 SHA512 b21cab6683819e3029097ac203e35963aa69e47c32cd88017f640f976da0fb64dae5a62d9c76f64868618be6df14603c9a72f24333d1639e654eedb5125421ab -DIST github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.1.1+incompatible.zip 14190 BLAKE2B 620c6077de17accfd41447ae97da64ab93889307a81092479f9965b04f86522bd18e749657074536a821318dba2a55fe6b78a4bc88609331fb4316a84cb036d3 SHA512 f326d2cf4117e1a40ec4247fba8bda529a74af257cd65b556e14688f71641dda5bc11892b92870a35bcfa6681fd8fd84e721cba378a228c36851edb649a79b5c DIST github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.mod 35 BLAKE2B 6b99dc9054d6616c7f66e1f0a76a11cadf095b8661aa92aaa97aaac4c2fd943a972f9947fa64167241747f633ca9f2a74e9ddd122dc39a083223912886e04b24 SHA512 b21cab6683819e3029097ac203e35963aa69e47c32cd88017f640f976da0fb64dae5a62d9c76f64868618be6df14603c9a72f24333d1639e654eedb5125421ab DIST github.com%2Fcenkalti%2Fbackoff%2F@v%2Fv2.2.1+incompatible.zip 14190 BLAKE2B 068cbd85a43c03d801420e794a87bca8d06aac5650cbd8597eff929bb3634edf85f33342b9b111626f995a340f77c76f60aa436c25654f47b3ed5c87af847c17 SHA512 cba946a17b3237fc696dcf45a7d2ab8e08795aa9a6b6a2dc9bf032cc26b15933d5b2d799a30e6631dbf6b2913c8cbf4f1833c6eedfe45b954a6cc1b6703a1b4a +DIST github.com%2Fcensus-instrumentation%2Fopencensus-proto%2F@v%2Fv0.2.1.mod 58 BLAKE2B d724c8e5ab039b227f3c437ba570398b789f53fe80db6f8e57fd2cb2199a5e7acef24d7451f9b27a4da464770660d31fc785c7165deafbc35009718851329fc6 SHA512 23d6171dbcf339c72fe25ab7a7e70cb385dffd654998824fac0f6b6464717873332d39fe1f96101414f5e2d240faaab0b960da2e31c08ef98443aa238bbf02d4 DIST github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod 146 BLAKE2B 5efa8dad622ae253ffa106eafea277fd947fc0f28e6962e461283ce2267d992b85b1f0eb9074a90009d8ed1d47f9e1f3e03cfc0eb7ad7df104282cfd144cc12a SHA512 32c34a590e6c113a16700ef2faa5124ebb6c8773cd76594312157bd2b70d54cd939ff2c32fac47421b5615e804142cb7b393394d4745d5894f9b68392bc37ad9 DIST github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.zip 12221 BLAKE2B ea2f826b4582ec60f51c65783408df0e065d2a752d1cba17aaf277e0c2b48779a3bf3579982dcc26e5566c899c3f933e4c711d2f1e01c98c13e73d46fa08baad SHA512 09432cff34f69e9b0cc6f0d5bb9af376efccb85ab4396c14a4e0c072272f3172a93c240c5ae0aa89eab91799d1bed1a0e7e00ba83682843f46344c9e2fc2d4b6 DIST github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.mod 45 BLAKE2B 350e937e3f7b254b5c590445a9a7f7cc908daa2a5f208e293ac414d50b46bd29671bb483e55daeedca41d70a42fdcc62ce17fffd9992a932e29153ab6ca1168e SHA512 c1b9f572957bc4ed1ad0c61d22b7b5d6a4c863df2aaeb4cf914e304af21d949c9cfc53dc8eb67aacdf3dd56f339ee6f4a1f5fa464121d9db79b7b3febfb3251b DIST github.com%2Fcespare%2Fxxhash%2Fv2%2F@v%2Fv2.1.1.zip 12031 BLAKE2B 47bd92ee66282b671cdfea60969710e371540e79b3c1e2f510380e3dbbfe40ff76be23ab48f44855b1cbbbed7cdbfc4f1ea21bc4bd7a37716de7c27a7ef81329 SHA512 dc5efd476875fe3cfb3c5f5ce9314920bb2175be85fd1a4667faddee1b5360113b66bdc2f17e4fe889a7d104d684558744bdc6c56c8ac3afc585d7aad0114486 DIST github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.mod 35 BLAKE2B 2447b3f6b52bb0ab4eb8af5ac3ca818b65bff046e0743cc8d8dd3d7e336ad121a8d017e3f7d7b83b0203b86392a82cdf56641acddfcd377a168553dfc28f3ac9 SHA512 f7d31069b4207aabc1683b00d85decf9e883387d598ec9125128724cad3b7d1f3462ffe616486e35579c97b178d703999c243a3a3aaca9223d9f661c07fe9d03 DIST github.com%2Fcheekybits%2Fgenny%2F@v%2Fv1.0.0.zip 35021 BLAKE2B 06b4f88edb2e79b8a1776ed4b519b0f72314ef90761d6672647c1b5eefcdad4cb4715281a55b7de4c991350f401de98eaf26f20933964fe38b30dc2312f53940 SHA512 b8d346004622c7060aa4f25affafa846c7abc7f6bd04b87f53ef232f229d00d6721f139cad102c3d32eee711a82a0c814addbbc6f42e8109cc4bf8650d0aad43 +DIST github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod 31 BLAKE2B 683f04ea11a77fcee27cfc84f41a1974ca6d61ee854dc77f072493358099ec03e94f01b5cd5cbb5ef69c856dc36790b660a3e90d7d520fd553e572f1b01a2304 SHA512 0e40cd7ff22a86cd23b49b509f5b5653f67e31ca67a07ab82743f56e5504f126cb2c11d88da644afbaf024dffa657560a420ec6d82f6b463452ad8a8bdb576d2 +DIST github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod 34 BLAKE2B b1e2e3052b202324b63ddd8e580c76da40ff0bdf1df2e9e2f3d7b2f5287d75469a544e1a586352130ce636bb08c9d4ca517f0fd49c892bc17365412cb791dcaa SHA512 c0d4f293bac15a26df2433bb909794b75ecbc5cb4ffdb33a8fbf3c8f421597780eb6bb036cfb11a8346ec959ceb8e36efa8ebb84d8ebbd606485735ba171f98d +DIST github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod 30 BLAKE2B 9ec507e8410331513ba11ed5432f95b9141e41125975204c2dcb50b5fbe6f7117430ed9b1b0df44fcb45843f75ca862070f85cb40a5c4f6a8d13c066d2d6741a SHA512 528f23910ca94ddf6f811331dc7ed615b2949b2cb04c630e4e2b0ba4a6dadac1396268c4c3251a77af25db3e94dc8b0a0a66d365a8d3feaa78f31192a40e2556 DIST github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod 35 BLAKE2B 45d27e6bbd9255a355b6bd14ac839c7d87fabb393693a8b862ad974017af01309e5d36fa99d4925905c1617c0d90b5263b54cd95af2dbab186e293936dc86459 SHA512 ca8192c6321468b4332eb63c765a5798150dce9312873123b48d9ec67ebb4229cffc7b7e8054b8b0a6f45611f08130008031edf33da3468bb9a4ee9455fa02a5 -DIST github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.zip 246908 BLAKE2B 94b71d3c77553dca4889c6f066f6741fa9d17a0ea86b564e3e8ff05b015b87c18fd3fcbe2b3d942a8569c99ef4bdf42c686bd58485e9373447d25724ceb934ca SHA512 47991999bacf78ddfd33a4af3c0d5b8a418cb7664e05bc59d886150025a1d5aad831deacbd6da76d5a21a97ed115d4210c374459e7af8ed7b93c4c1c0e7a42fa DIST github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod 30 BLAKE2B d511bd14351d68fcde2b3be3f008373eb12d2c61133c80aa3a1938e53ffa061c0aa51065f07b208a073b448c25309c3b2d67c0ed19ad3697309a679fcb844414 SHA512 a986c2cac4728288aaf90667b54ffe9cbb9e1a55697347f9541e6aa0dbfc5b8d245c2ac15e8a9558d41862d98325f3f2f4055b02bcf1e9045b78bb3577b3f45f DIST github.com%2Fcoreos%2Fgo-etcd%2F@v%2Fv2.0.0+incompatible.mod 33 BLAKE2B 1ce5b6fdaf9b07e47e53896873b9ee4e96fa51c66a7a5afb3f48f34bf1b28addc5a5faa14832c24232a048b5d2b5ec0fd9af57997f0360105479550670b7272e SHA512 4fddb273aae34ba148c277266e98d174e04f5e888a1f59d44a86f7ec80168fbee85f245cea2e2fca44b29cf83f7a417e43b885438d7e3231c89604bb9f0a30c6 DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod 35 BLAKE2B 931ceb7bcae15a876b79910a59b0f4ec67ae8f0ac5fbd401e80233107e7683d9cc4a947548c4d08b26f2d47ad6bfe4916f99ffd2a98abe26e8161af87eb49c64 SHA512 58d88566898778823c24b5f4ff7ac50384075312e3eb332aa01233ada3ff385cd8a0e3b8727a77ecf068f13b52a304fbdb5f47a27957333dbd5a8fb1448956c2 -DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.zip 10848 BLAKE2B 6bafaaca5b1bf59ac01421e1726f48de06015b36217f9f08ac776428a9edf089bc64382b251be8a02ac537366542ab160c028af668316a0a821486e29b012116 SHA512 7ec927cc2547c8307631198f09d32507176af71bbf03e7192025798dfd34eed3a8350cc0c5b388069eb6f426352d0688e3ee4baab9cf78b18176eb7e46bfc09f DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.mod 35 BLAKE2B 931ceb7bcae15a876b79910a59b0f4ec67ae8f0ac5fbd401e80233107e7683d9cc4a947548c4d08b26f2d47ad6bfe4916f99ffd2a98abe26e8161af87eb49c64 SHA512 58d88566898778823c24b5f4ff7ac50384075312e3eb332aa01233ada3ff385cd8a0e3b8727a77ecf068f13b52a304fbdb5f47a27957333dbd5a8fb1448956c2 -DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.1-0.20180108230905-e214231b295a.zip 14448 BLAKE2B 74bf6123f9c29894a4d7f26f96644658c110568ad577606eb098a1e045fbfda9e334cf3a1bccbf4b3cfc4638f467bb0e3d0bdca0b219bdcb2b31f059a41324c6 SHA512 88f60c4592b779baad4e46a275566b79a8cf8ff9ce2c00fc75fd816827ad0edf266cf1f6ca2d2e5c19e45517e28ff5b0dfedaf81fdf58a2e1b6fdab512802a85 DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.mod 35 BLAKE2B 931ceb7bcae15a876b79910a59b0f4ec67ae8f0ac5fbd401e80233107e7683d9cc4a947548c4d08b26f2d47ad6bfe4916f99ffd2a98abe26e8161af87eb49c64 SHA512 58d88566898778823c24b5f4ff7ac50384075312e3eb332aa01233ada3ff385cd8a0e3b8727a77ecf068f13b52a304fbdb5f47a27957333dbd5a8fb1448956c2 DIST github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.3.0.zip 13848 BLAKE2B dc2ec3bf79baaafad410ac2b4625dbc1c520803659b480c2014ffef484d409135ea5d09035669457162457962dc6b3532a480893f399b876810fbc1adfdab8e2 SHA512 918009558869443193fed748b3cc807dbfc540967d60e0315c74c6a09324d7d783067e0f21c5461ebadcdec3c7e6417522565a00e33617af8a8168281a0040c3 DIST github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.mod 36 BLAKE2B bec7662666b7a5313f4b7ed0789ca75f07dcebed3b4498cced2b75b3622bc4c8c7d624066338fc6d77adea4b778c89f0a1218fad524c6804ef350deae2f24d68 SHA512 00ccb440abed145db781cbc7bc12695057b7dfa034c8ebd7ab1aaf5ea509fafc0be7147328dd9654e3fc2623bbbf91fd3992a86ff29e78bfa3e868d994b47e7d DIST github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20181012123002-c6f51f82210d.zip 109300 BLAKE2B d76af4585d0240852a075ec55fc5a2d139cfde0530fb306893f2d981b0c9d5675eb162fe14bbf51b67f266049795f9e002f4929ee51a5686a59826e0ab4de3c4 SHA512 8e27958a53533d7412defe10e7be2c479c8d147001f4cb0e615a130ac362d604d334e35b43bed92a10f33fe72fbf7609aea46b910f53c2b7f7f15fa1dd088fb3 DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.mod 91 BLAKE2B fad30507d91fca15291c8f13100206c9d9eae4f73ca4034e37de10d1494b42b03535540ce704582cd7a4be4ffa2685f778ac9cd3aa647d6c48d8e6fe33a345cb SHA512 54e3700ced7222d086eac5a73a5973147473e9d063a7a8dd719bff2dbe3d61d9e4cd7427f30c926a2289ef53948f158bc09e189d9714f0437d446f7c30d0cc6e DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.0.0.zip 114418 BLAKE2B 43e288a393932b03a27d91cd456cbef42c2611751d40e8a8e6c14d2b80f65990711a5be7d75e1f62b1eaef3d9eb8c9bcf3f51eb14a2436ca1dcb15b3b3a2ef16 SHA512 9df60d53633425f32d5bf594dd579ce61bee549c2672da2f7da39437031a8b0d27b7d3448adc6f9b20b230f48c355242ce8b01b0c5be25612165c53c73e10735 +DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.mod 91 BLAKE2B fad30507d91fca15291c8f13100206c9d9eae4f73ca4034e37de10d1494b42b03535540ce704582cd7a4be4ffa2685f778ac9cd3aa647d6c48d8e6fe33a345cb SHA512 54e3700ced7222d086eac5a73a5973147473e9d063a7a8dd719bff2dbe3d61d9e4cd7427f30c926a2289ef53948f158bc09e189d9714f0437d446f7c30d0cc6e +DIST github.com%2Fcoreos%2Fgo-systemd%2Fv22%2F@v%2Fv22.1.0.zip 116823 BLAKE2B b33381de26ca23c0d218ecd16b22bcf13362635348a4c9887ab2c4ec803e0dc2996833eeab85b327b838a234198dcd555dc148a02b8b1282a1dab61e44e56c80 SHA512 4aeae5f35d7de56c2e693fae7eaf6f418745b9d9b8a7652bda4acd6c2979cc2cd175c4809386b7e762d9c243e1504baf82aa4e4dadd7bc6050d2227a61510b7d DIST github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod 94 BLAKE2B 94e391c9c787f7b0b9d238f1fc61ac5e90d4d6658f7d60a4c143bbeae999ea0ca23d28f2ca204523e44b61807afa23e8690af850d14203e5755717b0a1f5981d SHA512 b54a3715ce2745ef68bf269b09d458d3712d8ec7a876eff53f5c171d23d992a5391552651c56f7adf5b90a356bcefab552a7ef8dd3a0d562fd396434970963ab DIST github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.mod 41 BLAKE2B 0569fb10d29c08fafa75095bf945bb059d1a87bb775664f748630cab8222275c1849024bd7555f7cdf9641da4c568cda6cd2ac5b12eb0274ba9f7d6c3106d6bc SHA512 9cfc41a0e8999351961d559cb39a9bc7fddeebf12507eeffb4e25a3d4913bb669120655440e33153254b5e22f6126921fdae097a8cddfab90ad9a9a28f2267ac DIST github.com%2Fcrackcomm%2Fgo-gitignore%2F@v%2Fv0.0.0-20170627025303-887ab5e44cc3.zip 9390 BLAKE2B 06e7bde44f0617d805668ad2bef610e12a6e7aedc46d726c6bce592ac009f1bf8cc4d82662cddb3cbff49449dc9a72ce008fc735d082690da194bf7e602edb78 SHA512 b6b7dafdf36ae744559777624aaa9f6a82c08718793e75d4d5a2596626fc8323244f1287bda2fefa08bf33e95677be3b0480d2addb766ff37efc95ab4279120c @@ -109,13 +108,11 @@ DIST github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod 39 BLAKE2B ad751b3cc7739079f54 DIST github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.zip 5270 BLAKE2B 69648bdf201bfe932646e7698101ae06537c9304bccfad9066149045e2842dde3b3c65a8fa2016df3eb0edda90455b3ada4354d45033e2f1ef49debae2238da3 SHA512 78034ae7b2c33884adcb317c59c765e4762ea1597873c73b54d68cb6e42930caddf03b42c971c986474d7f4c584aee1e48301a6331af983dafe1c55f2f80e592 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv0.0.0-20171005155431-ecdeabc65495.mod 34 BLAKE2B 7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267 SHA512 5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod 34 BLAKE2B 7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267 SHA512 5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e -DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.zip 60546 BLAKE2B e775860f49c6ee09a6c48902d38fdf5d2d77af4cd405d8d303902170e46493301d4aa873a48b4d12a16d92dafaa65290de1fd3a42545025fbfc82f15a3881e8d SHA512 53dc5484f488ae1f8d0eb672c3431bbf9fce33dfcee83dda7929103e3650559cf703f601716984a640422f01cc640860dba0b47e16aef04d0d2452a266fefbf9 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod 34 BLAKE2B 7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267 SHA512 5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip 60320 BLAKE2B 86bdbc333e5c23ccf4f805945ca9f2aecc5c242d2ae824d20127eceaa2bf7bbab239ff2799572a2c8fa206166a36e97d5eccc8fc5021743d8ad32f39cd53b9eb SHA512 7b4e4df2fea731e23e05437f26f24e32b2e99028d685b72e3a726c1cb616ada4a77ca4fb9db4a6fae48178cc5172e724b74499bc776d63a9110cb97377d5edeb DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.mod 39 BLAKE2B a5a917c97c8f04bcad823128c4c8d346a5c3b0c8d097b5adc051fc070a1e0e57e2f12937d044f5edadf95214a51624e82d5e08582afcef9d84b9277e97613422 SHA512 81d43869697d892072def7425ae71caf36d62746a1360974324bc1fc54a04cc5cc999f04047c4b734d618d469fc1c025976db9777f7d527c5cf107d7cd25d72c DIST github.com%2Fdavidlazar%2Fgo-crypto%2F@v%2Fv0.0.0-20170701192655-dcfb0a7ac018.zip 120931 BLAKE2B f99f79ad8718f7038f286f690bc539e9f90fc5fb133a928916e5ef680ef4e8e6a6e751dbeec3d8aac6bcbb6261b523ba9e27c48d0df480ba999065526ae81684 SHA512 369c5ae94a2065de77b833e1865e814d70393704189ed59ab02401a3b9d51a952c73d73f35025e2d60b0b7a2bef64e38189a90183d48b899549bff70e67f95e8 DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.mod 35 BLAKE2B cb878d5c7457af4aaeffc81f34740798fe5bfb413f15efbe80c0af5108add18a9623f44f24b6ec47d4f15cde98452efb71701c71dd9914dbe48c8e8ec84a4c05 SHA512 14987165f56487477f7622d40ee2ec121d6a693bc7f13525e802819959207f347e1d7e1ede45ec6afc097861bad0f702206b649d29e5603c77d2718d701d997c -DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.5.5-0.20190226225317-8115aed38f8f.zip 307513 BLAKE2B 27113c740e688680d35a1d56992568af72bf82c1f8f1204310b736c75b2dcc3f16540005fb09f1770aade4e1863b676774d746396f1c30ddbb202a48979cc6cb SHA512 f1ea48c54175d1f871135bf4b72c3c754a767f37e93f53c6149a4d12287c0e094e9e81c128c8add01c0fd705ea0b984665a33e1b65eb873e015e26773073c60e DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.mod 464 BLAKE2B 9792b2a4b32abb5a24e6f1b72b23c5cea641c403c04f376bc33c6e8323fad08380a9902570a6d26e6643c2011adc86b83db849f5cca1b0e46bda10fbf85280ee SHA512 4935cefbad5769054ca778dfca985e715354a193c35aa44895cbffaf1c485185d2066583358ecc9a7087033b8a8ae1a89630f8af2d920e7e8d9292d1ef343e18 DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0-rc1.zip 341989 BLAKE2B b745bc54ff1b0592381c8175222d89f4bdb3e663af5ad6e5e3706a8e3762bbf18c973061172139390f3179cbe0f76b212df866aef9545f7419abae15771f54aa SHA512 9ae7cb795a52f1c2e7c4ef31cabe4f2a6b250b69326bfd246b553718bec100a8ce481c4fd1355d39bc2a8c724a56f3240ed4b9cfd9740a908eca490d01548215 DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.0.mod 464 BLAKE2B 9792b2a4b32abb5a24e6f1b72b23c5cea641c403c04f376bc33c6e8323fad08380a9902570a6d26e6643c2011adc86b83db849f5cca1b0e46bda10fbf85280ee SHA512 4935cefbad5769054ca778dfca985e715354a193c35aa44895cbffaf1c485185d2066583358ecc9a7087033b8a8ae1a89630f8af2d920e7e8d9292d1ef343e18 @@ -125,29 +122,30 @@ DIST github.com%2Fdgraph-io%2Fbadger%2F@v%2Fv1.6.1.zip 366135 BLAKE2B a75298ebcc DIST github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.mod 193 BLAKE2B 0938da2ee0a3bc0acc3416db8387be68292b8848b72cf3b44c28e11d6d456037f7ed998fe08fd142f42ccb447bd0f0a7cb75ff72e72d73a5649a85f7def42070 SHA512 7752f28d6ae3da6cd4f2b5d23ff373a4bd8b8b24879d9bde17bd22b1689aa5b87ccd1c206f4f70aaf5acfd89f4e1f11a04ed822266a576abc0a1f979cdce2911 DIST github.com%2Fdgraph-io%2Fristretto%2F@v%2Fv0.0.2.zip 55151 BLAKE2B 2d90fa0671336bcbeccf4570ddc400b9203a4b9e9739001700514970dfbe0f9d4870b1ec08ae1ec9c05f87d9c25c8eee602eb1c324165d03f0a2bac2d521ce8f SHA512 c2ec421a924993de0b49237494e6773e5f158b0e7249e4a32cb2007fd48de66a0b465f6731b192f2ac7391d939389c48ab837992fb97b51eb25fe9c23b3bbb82 DIST github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.mod 34 BLAKE2B 7db9f433942253e04513e9a7e88b2a76cecb28837e808c9fd2fa444f19bb75f1567358ccdb5537dc6caf0aebffa08898127dc93f8f464c838da838f7ed70615d SHA512 ee0f8fff193e70c23c830494ebc2bbd182c1882ba443baeb4a8ce03166f399765ab8e4ac85047306b27c03e84fd0980f93b5b5e29f94129569ec8021e8d127fa -DIST github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190104051053-3adb47b1fb0f.zip 24414 BLAKE2B 4f2978e67f40c00a733460ceb763c730d41b473e493dd86cb0a313a53c6f8a172bde1124626b0f19bde5f8fb301584557ed188563e9d29150f334a272e449158 SHA512 e448b1c4c88133707a1daf53904ec79ac9884353abd25c6122c69c561a53b64f3f94e0290ff48a4f80891ed800c9011f7dccc4c670632fb1c34eb42a0de07684 DIST github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.mod 34 BLAKE2B 7db9f433942253e04513e9a7e88b2a76cecb28837e808c9fd2fa444f19bb75f1567358ccdb5537dc6caf0aebffa08898127dc93f8f464c838da838f7ed70615d SHA512 ee0f8fff193e70c23c830494ebc2bbd182c1882ba443baeb4a8ce03166f399765ab8e4ac85047306b27c03e84fd0980f93b5b5e29f94129569ec8021e8d127fa DIST github.com%2Fdgryski%2Fgo-farm%2F@v%2Fv0.0.0-20190423205320-6a90982ecee2.zip 31667 BLAKE2B 7114afb863d419c80d539e287e76ee6471163aa5fee433de95276174d1c1e9030097543afe97a6131356979bc88a14108679a98bca3cb8b38e833468e80d321d SHA512 f04577670a6649bfe5d40fb743df38fdb9499b3f584e38197eed2d958d4f3e77635e82c057aa643ab3268bb99e7478aaeccfc687be36b9723ccfea3551b45366 -DIST github.com%2Fdgryski%2Fgo-sip13%2F@v%2Fv0.0.0-20181026042036-e10d5fee7954.mod 35 BLAKE2B 8f9b63ec3e5f70db4f7f0185a03aee0608efdaf267377c48bc0e1aa6c37d431119d6e422c8e7c9bd93f0819796ca0aac423804ff0acdd49458265dc37e9d439e SHA512 2b6a3774801edff4f0b3fd40ae8e5396782e796e36b02b4d2f34e5dcce19d2f064a7a8d0787a9cb994b9208acf39b466f291525cf6f459ecd7c45d947dfba50e DIST github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod 37 BLAKE2B f097ba062c5ae93b06edbf7827cc21a40d6bf6d2130c44fc8002344e860b3471742cf930e505a74a6a2af3a77a6dcc7d01b103d01f6f208c96dd9ca713c96344 SHA512 be96d9da23cc31932c1001e2ed367e55d06ccf2af41cc106e83b92fb866b61110d06ff224797c942b9ab6104bdcba4542f2214b9fb2d88df63e69be8158c6e2b DIST github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip 26356 BLAKE2B 665fb778605fc05dc686b59a3ad82a6df9020017243cc84498e4113c7b18343507a0084cd67febc329fa6b44e675696f99f632cd282ead5bb06f93ff3bd50bea SHA512 88e19d0139de7de602272e14586a99eda26b2867ea60ef56b517d13b37c0d28b1ab62c05b2f9cf1a9b8dcc8e5afa9c915baf7a30b0f17c4fbd47d5c71d0a3965 DIST github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.mod 34 BLAKE2B dfc5ee3519612e45f0ef55948ce7f8b95ee0470c5a6538e691cb43f22d4b5ced3818fbfe9c5f4a0980c47d6388658a64984ceeea40291e4e6e06283f78947861 SHA512 310d02a673e9673e859bd24420ba308c7fa8833d969edadda91e3541119880c9a0e889fcff1e81c7c49a6acacdc11840d1f903db04d9e40321e94ae55365180a DIST github.com%2Felgris%2Fjsondiff%2F@v%2Fv0.0.0-20160530203242-765b5c24c302.zip 5742 BLAKE2B 49e40929dc4c0aca5d7dfd011be0ca1b011ec90cad123b80c86058ff4c2f4938c67eda2f72775973cbca14a0542f5bd3b8bef789a73d17bb2760391db06c454d SHA512 d5487e8756fc7a9de0b6cfa75e40f24c5b43339b528c2e65c51e9edb77c486673bfc6153af28a375bcf3809f1249c6c3375a22e2b4bf77f574433843c04287b9 +DIST github.com%2Fenvoyproxy%2Fgo-control-plane%2F@v%2Fv0.9.1-0.20191026205805-5f8ba28d4473.mod 378 BLAKE2B 571b914afee85b0d13a567132dd40a80f60224e20685279cfaa1e5e875897c8e0fc94d7097992881495f4c0c090b27c87f6d95db0161e1064434ca0434ae06dd SHA512 f0135b61ef0638fe384c875786abbf8ed9a93836f6ed29d19a2e9a626cf6d6c6a252146352eb32298b826e93bb61b8c733f8a6aa683e5856ebec37cccc64ce58 +DIST github.com%2Fenvoyproxy%2Fprotoc-gen-validate%2F@v%2Fv0.1.0.mod 49 BLAKE2B d910253a9c976078b790d134a9d75e53cbde427e7733ab9e09c9060b312a5749aa083fc48263501e3339a580cc409b5859dafb820a4465827e7fba4eaca31ecd SHA512 755a3d173d43e70ca40fde2d5ce16c405365da90ff595003ef64598c9b9734b7200fe07a16fd555e4209f83e5e17561d18227c46a5f25a41976ff7ac024cb9aa DIST github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.mod 40 BLAKE2B 788854a486508afd2c3aaf4f3c87ddf59359b08769b3b84af73cccf8594ac643be95e7d5f84479a3d35beafad3595cfdb823ab7cdad38c81aff4a3aabb7f72a1 SHA512 f76655024fc95f46ba7516ff3afbcbc86db428c8d8c907d7396b427f6e0e184c894b24a171cfa41305d959b078027d83ae4bc33e439044bce9495a56599acf32 DIST github.com%2Ffacebookgo%2Fatomicfile%2F@v%2Fv0.0.0-20151019160806-2de1f203e7d5.zip 4876 BLAKE2B a615d072731fa24de06353b213c34eab8c23b06fbc0191aa548443c86bd786513272ce909d61bfe027ca30ec7a295d77fb8d4cd345aefe7b352d29377336d291 SHA512 59f9ac4d06ece654e43bb94a08db6133cc8d3970433235f0082ee86607c476a3e0b1be822912c808df9983c94da1951909b6f6482328f0cacb31272fb2de36aa -DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod 30 BLAKE2B cdd74965525563fa7e3db19aae87c777b2de65faeaf2987957ea3bb4c0c6a91ab82fe02bfeeab4d6f523214bc2e929628c082edb967d49309e75483ff4c3bb41 SHA512 2dfc66b2f6accb7ecaccc48cb3daa338173f4751d954cb2912025d881f17a7a2df0457b2d7420f2d93b50519a2437a763450c4d639a26b3289fce7bdec5bb144 -DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.zip 11987 BLAKE2B bb585868c568466b366c1c50762376d9e2b6f3d3ac287af94c45f7d348516d2e80ee96c6980a4b5fede40f1302f0e3e900e24aae16fec29801a795cb7e514dec SHA512 70f78081c04bdbb52e8f5d24b8926b39a28c4f069beaee0d7bf24be946f2b0ee3bc08d8ecc1305412623670e1767433a37d458df3fc849d244c63b6222f1f599 DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.mod 126 BLAKE2B 629ef676ff997553b93c44e9024e6b3d613b51e276d2ffb65bd9042ec1cb0455124e5ea7c5dd0e69599a25031ed536cb3356321e37248921fd8287b47656104a SHA512 a61784b08b335d2a893688c279cf6f4b1ca222c3bc8236fd24536aad2b185fa718805c9022e1ce142bd87e39fed639fdc9035c9ea9ff110e985cd01cd612e9a0 DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.9.0.zip 12428 BLAKE2B caf7a05e79d8b7dca069966765705619ee15800d8276d968bdf4385bc1141cc06b24755ac49c65caafdde5d8b34869df1f7e42ca302ee6a80b9ac7edd8a803d2 SHA512 c757f8455ce261c06749eda03ba807ba8b2427f0a14b0b62a6ee4e9d1ba220986e6f122b061fed6f44d68e4802864a988c722604b52989a4e31761e0e7ea8163 DIST github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.mod 252 BLAKE2B 194114a263aeec4af30e802ab12458933e3d4c2641ab9d9d49110ffcde6557fb229883840c9d133a988d2e0338eff85ce5212cafd2a9a1d46f6c77018f8261dc SHA512 dc86e98b1585fad3251406a63b40a42f65ac19ab566bed099d5db1d4f7797b41d862adec9eb156730a224be248810f12d1fb67aeead96059260703744c2941b6 -DIST github.com%2Ffd%2Fgo-nat%2F@v%2Fv1.0.0.zip 8511 BLAKE2B f8c84d5ec4c8afdf0f80e14aa99ba0b54549d7b374c3925a7af29bbc5b42320b9f57122cfebc4f75065cc62fc8487a6f3b5b2891a450b3b98283e7249ee3a933 SHA512 98bf4cef23a5c37051c26913742d3b5a17d4439e732d2d5ee10894319b4cfcc8792c9c5234a1fa3e0e753ff20a3e4b4937c6b2dc12b01929101ae70f0c2d5fdb DIST github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod 33 BLAKE2B 2c279a40bce4e61e5aad9d25a1c374b6c154586c296cfdfd56f52435c7739c8d9a8958e19d6da8026c2a03b728e0cb9bb512d5c094aa6111f9b10af24ab894ee SHA512 2bb0f125a91c8f92dc1cb5ec16441b27027585606a3862c216434b76324f3069941055c4bdc98372547543b095a4014155446de1be98264842504450121c941c +DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.mod 30 BLAKE2B 2bb0a02cdeb2dba2efaec54c74b56d539f522416489c4e8d3348ac741e9c095965e1b265adcd2f50b890392611d48954ca4350d594dcc9678d7de50c4dc14169 SHA512 caa6f356856e2bba799701a0ff8642a1eb9755d672a03f9dc300281b69ccb4bb64f465892d20ca98e9264c29c84166c233ffffad5d681939bf44254c20af40ae +DIST github.com%2Fflynn%2Fnoise%2F@v%2Fv0.0.0-20180327030543-2492fe189ae6.zip 200520 BLAKE2B 2537341833b898c0319f10cf0576be41e23333764652914b51dece4ce5f5116034c83dfa61586f95ea130b0a1980c2a564e11934e1cb9ffa1a298270a5dca474 SHA512 8ab0a3089a72d42705d4ab61340b60a6a1a9b547ba4b63085eb85adb7d5b18ea600309044d306a4a541a04baf378cf0d759778d72614c96a4d0079643de55b50 DIST github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.mod 962 BLAKE2B 4e010a5ff246d4e834d72b522e958d6f8063778261deb3abb11a5781a5d79c90e9697d43388158b4d80f811111eee0e86767d51ec58570d02ad4d7c8c9a31ba7 SHA512 c2b2b6ef8de68569c73aa8ce8c778dedd764f8204c8bc8a78b335d0138c49851af585da65e0ab9b2e561500f1eb0521a6f77d92794e38fcc22e6dec12113c959 DIST github.com%2Ffrancoispqt%2Fgojay%2F@v%2Fv1.2.13.zip 231306 BLAKE2B 8db056d6fc6796e16bfc456d00ec08eeb0884fb7cf6e234193862453406a300e5bbfc23f0910bace51fc66e5c3801a14078aa8846dbf6b03a64c79414e350892 SHA512 822d1395436aee93d26cf53cdf65163247e8620b4f1bd3151270b9a9e2066012e9397158a10f433c0d0512dd8c4b6d53ec76b5e5d3f169be3e5970e3912dcccf DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod 36 BLAKE2B 2b77fbdbb6c6c20767c120b390fbd2992bf79dcae0a35c27121a6e755233da3ecb7d74e74c38c0a2463976b546ed8bbfb8a8d8cb140526dd9a0c4f524cc131a4 SHA512 5749d33fb085d63b7c12f43df824c96f168323cf6d88cfea3e2536eeb7b56689dab9dddb8cde1ec8bc9c2848e7148b8a37abf8523a99c55ce10f896245c5f341 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.zip 41278 BLAKE2B e0b440a81efbe3c7c16ad276b4509652fd58bc94cd162b9ab13bb37c1e6edcd561e3fbb999e55619d58c8e3279b785b8eb67fa4e200b38fe6fcb60f0918e6e8a SHA512 9b1075ccd3d1f53773db97687e06fb777741d6c3b228bcc329be580562fb3c34006768eb3f989f92367ca116c597140045b3c345fe36065f5015d1d4652633c3 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.mod 106 BLAKE2B 4876f70d70d2d8703d7b6abea5457e093043912d6a672bf7794a892d1c17b159ed2b92dee05ba1625a1b7cd6c8d66d6dc715bfc1d7c0f1c47965ae8e30506bb2 SHA512 ea3a26ed1f6df26a7e2aa64ea9d5d4a4c3005163cd8adc05028cf25d56d01d115bcda38b7af992242013c2610f26a184ce43dd1826309c95fa008fa9c8c387d9 DIST github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.9.zip 42349 BLAKE2B f2c476034a47330b5424159be4a323bded799ca489163c8d485e95f17ce519d6c4d771a35eaed83e831acbe20c1d9ec5b782469ce20aa224ab03de459228fe59 SHA512 8df5f490e26760bcfbfee216b5479321d060d4e48911c98e4d3375a6f84bd161b5d80769fb0326b3122534ff726e8a987bdce365464cdd042ab4cb5366d674aa +DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.1.mod 51 BLAKE2B ebde0d586e331eb1d432c0284491524133797836ae3a12cc9eab25b46ffe1fd5ec1d4d46c8474cabbef0edd041f684486c7183a2fe74cb2385564218173a17f0 SHA512 e25792acacf4e07e445247eeed246a24b34e1199b57ff6974ac5a0b76c254dde9b6917ce68d8bc067cbf705ac515fac6a67ea73df48d058d87f9fee50b6365dc +DIST github.com%2Fgabriel-vasile%2Fmimetype%2F@v%2Fv1.1.1.zip 24429858 BLAKE2B 5184903acd02a9f2ded09a4185156cbee3a9b0382dee88f44c1e56897497823d41b05574019427c74d29a7ef5b39f706dee7f451e7bfebc41f15dade18d32a91 SHA512 2dcd698e6afa955f280c0e09eec5a60ea3b1cab91babd58d86d23cf513ef476377c7a124dc7f56eb65f937394d170b888bcf68d366d8e1d7c2b6bb3dde49572e DIST github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod 30 BLAKE2B 6a680b6e14f0cbca536b1ca02d633e16b2010cee7f590088748339785b2989cb0f86a51fba709da938d4c10ec810d5fe022d7d1a5c269d5ece253a78a5b2069f SHA512 7ffc7a5c3e0b39831e590ce3402dbf5c95392e88a08576a16d9e1887b11400efa71a9d183d3f1e080081246f28a70262a679348f009f7da6bd41f253a60b0741 DIST github.com%2Fgliderlabs%2Fssh%2F@v%2Fv0.1.1.mod 33 BLAKE2B 18725478b6c6a565e4adc96f4edf09f8369553b8b6523f36f8e4733ae64eb9a859af67e14646e61d2faf5cfd651ada0a6bb2bae455ba6bb4570c92696b31f23c SHA512 e6592e0b4e0c9f344378efbc06365296f5978e173421824512ce6f8921212691aad2f35e73ff4562c72014897a4992b7b3e56e3c424a82159747f1fe328eaf50 DIST github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.mod 155 BLAKE2B 12f1f3881e9759533364a5140d065784b0c9e8fae5d61191f73c985bd08c5a7018556e7052c10713308b36398193bb13583c9fd3523a63517223e7cba39ab2e2 SHA512 a635cb6eb0b8d690c45dd8892f0474bbe5d255c801bd242a2282751ab6474135a1e6395161ce6faa057bd4eb168d0d85208908fc5a723cab1f10ab92f413887e @@ -155,44 +153,55 @@ DIST github.com%2Fgo-bindata%2Fgo-bindata%2Fv3%2F@v%2Fv3.1.3.zip 46496 BLAKE2B 8 DIST github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.mod 33 BLAKE2B f3047b593a38c87128a1304a48b8bdcaf8d5c06d275460f5e0908eb499259b2228754404015935d871f529697b1153c3a86a151cab4fa7aded7d109b4c40f48c SHA512 ea09ddecc4d78f7e9e0407c02de1e3754c68f5efcefa2ea075086f26c203c6cb9551a4d4fd0241b86b14000dd9501bac8e3d9857a98b56445c371a882caeaf28 DIST github.com%2Fgo-check%2Fcheck%2F@v%2Fv0.0.0-20180628173108-788fd7840127.zip 41849 BLAKE2B 58f58f1cc24a3c545cbacd610f7fa94a276940deec4650b32f57834eda8a0c437cc9fe2087b9a50ba68c1963c1445bbf49afd6c30c963fadabbf13a1a35bd00f SHA512 4628f7fc8594cecbb851fb60338645ee5bed40385ff768366368210be886e848911623d806fa68484d5041358aa7e7042cf5069da3e58aaf775e438f4af4d29d DIST github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod 35 BLAKE2B 088adc516e2f6f0a693c745963d6daaee2c196b1407e36a469eec392b232ed26b03f9c515d422b8e536c2b2ac8bf199cb3db5ba4ad19ab71fc338919f57a3a53 SHA512 787962ce037cb9143f496d5a7dd11ab1a487180cb57ad498e6c24a8da7a5bf36737b0b2730d2e0837c60a08bc7467ffba744026ce6962885fecdcdd1bb6c07b7 +DIST github.com%2Fgo-gl%2Fglfw%2F@v%2Fv0.0.0-20190409004039-e6da0acd62b1.mod 29 BLAKE2B 1cefa73995b3d0b4206aea263f55c672b675dd22d42c61a92f7380b6e726f2d7ea40e0a9e456181f34808f5386eae3c485bd2872857caf1824254fe4a55cb635 SHA512 a709c650da5d5f513e94891b88c26697826fafebc1ca964fb9544415637ca14e3b9f1f4ddcf738e28032e10a2d39b619678ec5c8d44cc0a1dff738c75645e2f8 +DIST github.com%2Fgo-gl%2Fglfw%2Fv3.3%2Fglfw%2F@v%2Fv0.0.0-20191125211704-12ad95a8df72.mod 48 BLAKE2B 7d441b7bef1f34bd7065c63630add910d504ba5a2897d6a0b7cf9c9456337b8e55e1ffd9e12cb3fb8c7f021e51cc045ea41cdf62f2c33555f4b61aeda07c332b SHA512 06dd140361d7cc1af9e37de85402631a5310d34198e20d6ce1521dca15d1fba1dc9e40b512a30b8e850e105e9fbcfe0691b298d092eb92b79da564532dba721e DIST github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod 29 BLAKE2B e43df3e551bcfb1d4a4843ddf00f1a9432cf768420f49943ee2936fcf3e890e59734b71ecbfcb85a70212122df3f03582335e37ca7330df9e335214e75a849d6 SHA512 2ace9d4bc029947991eb7237e7343fa31c5192d63927de1701434c305a659cb88fdae12e9b604f06ab318f1c26b207821edbe11e8d9382a0447544b782630c6c -DIST github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.zip 423237 BLAKE2B 5214c96dcd8d592de4a7a10a497bf8c39c668c96de8a81b4d6ac1a51d43b05953526a4d2e83568da3761a8bff76b53cea5644e7b1d0d33fece5abaf93f11eae9 SHA512 4353387fced40671cde472058e1aa3dd8559208e035690d1f763de2d6c68437fc8d8637a49ce2e2cb292bb30de639046238a0fe4877d8712875aa505f11ebc1b DIST github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.9.0.mod 29 BLAKE2B e43df3e551bcfb1d4a4843ddf00f1a9432cf768420f49943ee2936fcf3e890e59734b71ecbfcb85a70212122df3f03582335e37ca7330df9e335214e75a849d6 SHA512 2ace9d4bc029947991eb7237e7343fa31c5192d63927de1701434c305a659cb88fdae12e9b604f06ab318f1c26b207821edbe11e8d9382a0447544b782630c6c DIST github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod 35 BLAKE2B 0868f712c026b68559846a28bd29f39f584603cd79e1189a9ad76909cce7423a811f71265baf5b7f381a33bee76917759a9cb6ac131ab21450b4b52558cb6190 SHA512 526b97ecd0ccf878c0ada56c5217405c34c59d4c9cb53808f98b24a2823c0b3f1a74e862b9b1a5594034e570aa6749574d5e49212d6d48724e984f528b8c67ea DIST github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod 100 BLAKE2B 2558b7edc234429c8bc0926d347231c2352cbfe83d83bc3c7e76ed0ac4b3a843de65cc3e0dede3f0acb7a2dedc623584eff8cb236787c12d7f5a47c9e1c39145 SHA512 5782a5d5e5d4c64244a8463e0f15dfb97de4b60b9fed527ebbd8dc5a26999af8ad0b3ce0064da30182c757785ea9b35f253c5946b233fa3d9a61c873b23011c7 -DIST github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.zip 17559 BLAKE2B a527ab39ba8646129de4c22303bc8c1c58e9834b8ee898a55cfd6940c665134305290fe531e9c8f5c9a1d8d7171db671e479af5679c8abfc4b60c1200761d894 SHA512 a47e8dfb165764ae38985658525e16d7e0942248aae078d2bed543c355ab177e49743556503b59a27cdb33935954ba5d8f08d890b29e5d7fe5d606f2c5b57bdd DIST github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod 33 BLAKE2B 366a1ff397488b2b1c7e42db8a946bced1eb8d4260a6c177a978eb978e14f89265e7ac1d0bcd77905bc89eb35b68b3ebb028c0dfc67ff71395ab14b62335d16c SHA512 f3dc70dfcf086b785750d5b346ea07d0dc7903937bdbba58eace0fb903e656b02ddf3a1d49b486ac29b1cac9ca9d346e964d55d3a4cc5ee5ae79ac40b24d0cd0 -DIST github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.zip 10204 BLAKE2B 37977dbc6c256bcd404d5b7076ac49d1c3c3c495ad0869cbdf8943b24b80ea5f155c80a0a23571b778e7fcb381140988fd19cae6b8ad681e115260b0fe19394c SHA512 1e834ba368fcac6e13fd8b3a478cbe9b181ec3660087733b68adc0dd41838e54367d22f9bc53e602ece889e6051e319fbf80d5874abcf4daeb0bfb9b64e298e6 DIST github.com%2Fgodbus%2Fdbus%2Fv5%2F@v%2Fv5.0.3.mod 42 BLAKE2B 79541bfacd3378a6c6dbe9591309a80390444f2dc2419fb0137c723c6a2ec1e0588c00704ce3c19dc93297b19db89f79bfa09daa2632f6674e35e76819473cb0 SHA512 b9aad4f1c1d4f2c43b293b0c9ca8a600a37ca407ba8b22b0f826c8355828cb7860a96a85df84f720fe8aa2840974807ea7ea7b790790c6dafed794e761f1f26b DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod 32 BLAKE2B 939b72a591bc5fbb649c21a95b2c4b3f5d3ade273377f1f89407e55f436e7a863f15d708aabfc5435334500c8cb1e3ba057439c8ec81cfde68c1ec6794c6de6e SHA512 ab6c57ada3b0d1e36c91f3e0f45e573b91a4869f230f02a7e5e3e5a8f7e020bf56c63df1cbdc5b552ef9a4229ab739cf76df7f799091a2efa148ab9e5c12b1c5 DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod 88 BLAKE2B 0699027ef7284edb7deb6a2640db52a5b93076e3250d42710bf02a1cd7d5f591f1d335ffb1e7e753dda5fe177837fad87a25bf69b03466bb545708fb2952fd7d SHA512 b91b25b4fe769a403fd7a1f82d7720bdb0526a349ffe7cfdfff09a2ba5e0015d5a3446cd8e0e5fe46479b7d2296a8616de38a8183c0185f84fcfc75d202db106 -DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.zip 2656615 BLAKE2B 08542db845ecffd88d279cd63919a705d566084bb556aa4a6c98164a11520ec6476841128134f8fac2e5132d5fb298c9ef6670074891e91ca90577a8535049ff SHA512 2e51e876c4533c4b34f0017f6f13ff3c34922a1905f6a4f90bab241152dbb344689d8d1f5ff1040c79632feb21fbd8f213831179bd424579ac9b5bb602325bac DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.mod 139 BLAKE2B 0c793b0070acfae7ad92de8d8e177d6b9a2519d521bb397da4dc2610927374e4c010db6a4454783556edaabf64e585b00112aea05820874c49f9bb4c4f049fb4 SHA512 232bef55468d9ff66ef7f446d8096a44a0a947533c8665f0f018300b7ec1804a634299a1a6ab64deaa67f1475e9ef68e7be233dc72fb2d9173559800f01af142 DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.0.zip 2678507 BLAKE2B 016de242c488728027e7867b9e6bdb79547c315035769b9daf9f35200602e2eaa9c7f86ed37da6524cc4913e8a0ccd8306f9439f5d139ec00eefcc6c72da3eed SHA512 0dc9193de5a4dc03e31a128d3eaff02072f6a8cea64101adca52fc66be93374aec522b511032dc19514aa200ce5672641304fcb812b26b26a18326868a527358 DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.mod 139 BLAKE2B 0c793b0070acfae7ad92de8d8e177d6b9a2519d521bb397da4dc2610927374e4c010db6a4454783556edaabf64e585b00112aea05820874c49f9bb4c4f049fb4 SHA512 232bef55468d9ff66ef7f446d8096a44a0a947533c8665f0f018300b7ec1804a634299a1a6ab64deaa67f1475e9ef68e7be233dc72fb2d9173559800f01af142 DIST github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.3.1.zip 2698974 BLAKE2B 5fcb1c66d3fa55efca631fe5def383ec089fab784cad7d6a031ea390463a0c552f5fc4698f7648d271f40fb0ae3eee525f149347bb409c951d15d86b7f560e16 SHA512 c7e2170eda176da203ca64e402c11489c1fd183afd3359742e373927ff228d62e445f5dfc001a471303e1708862998c125ad4c2db86919596297b11cae4aee9e DIST github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod 30 BLAKE2B 6dea6116bb7fb72123a93cc8b83dca5455b76591c7948524ffe664bf966780799c4d007154502922e21f688aef5148211db6b0e3dd3f6b545c4192f5bd5166a8 SHA512 3714d2a95d0435a113c36df5feb13f77a07a1514fdf6b5f01e6e8cc5d159067736e0065bad8062dc636fa5c52c98e3fea6985075005b2838bdf53e0b07093024 -DIST github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.zip 22449 BLAKE2B 8d2eaf41ab75e870a445d50b62c02877ae8049e282f066d9aedc0dfb54d04af55d921ebc84d1e4131cc66a3f9efdf8270a0e423e563d3f8fc5a6bdd403bcdb39 SHA512 a3c086e660f2285d9fb7d56d1eba74994e8f0052363413337413cb50009ba46d3a432e2b4c67a73bfb753e7c60646d96bdad308d8e634e53f0bb0bb97ea17bda DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190702054246-869f871628b6.zip 39652 BLAKE2B c4c9dd2930eb417b8c6bf129489c3f067b5d127ed0194808d8e7594b477fd13ef20154508126708fc69cf855ee298cd4e9031bc34d3ab8025d2b2fc67ea21f78 SHA512 e23a4491896904321a371bb972437a0b55df33fe7fc31170967d6b4c0ccf917e34f94753112d4623518875ccb4e4da2e58cad54e0a821dc4e07528021a814b3e +DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191027212112-611e8accdfc9.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 +DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20191227052852-215e87163ea7.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 +DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.mod 36 BLAKE2B 3eee85c76d1ccaca7488ee3039bae6a7a9b4c8253481cdf6d62d1126623312a07264ed0e061bf5d7bde3aafb23e078b2bc86c3718cb2fff6618976c420c7dcae SHA512 5a0f44d45d666885e31206077a515fa02246d56699aa02f7809868029fdf6a718a5df8edac0ec245880f982882c2f4ca1d13a1dc0c7c0f79d7e89c6c46fab523 +DIST github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20200121045136-8c9f03a8e57e.zip 39701 BLAKE2B ecac1c4212267252571babe2c7332b517c22a7c535777a40b6e318299bc284ba3676ca75df60670dad69698450e97dc614b98c6c9fa793a4f3daa3bf88859167 SHA512 e4cc88b9e484d43a328c2ce80b812d4886fee13b915a41fb64b28cacb163960059de066b9be8aec33be081fdcd3db847ee491aeeb1a74b25aadca2c206c9587f DIST github.com%2Fgolang%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod 30 BLAKE2B 342057d82bd6cfc545f94289ce6dda498b35f949a3e5f9ad978910e5fcde556edd6e7a3847d136c5ef40115d99d9718e0c2bd2f420ed4ba72a4cbfda31db4c6e SHA512 fdf76199e91b2db4f75d0f8ce5844df0c4d0ea77319bec31ea1cc12f67121ebdee9f236eac8f6410313e84e3d4d625b92105802b8f1bf25de49c870aa6574d49 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod 30 BLAKE2B 5c355e64d858c99536e459f9fc4428dc00435bea944b67bf3dda5b61edb5f0c193c5857eb10bed926987cef865836c3f7ae3d8f081a58551ccd0772e4eb565b1 SHA512 ae6a1a6f8d31592ea6141f2ea39c9b60cd28e73ffae74bcf370fa739865b95a7ed56f687975f017b42c59e3b0f1c02884fbd5c93140bce268771380c8c7a7a96 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.mod 30 BLAKE2B 5c355e64d858c99536e459f9fc4428dc00435bea944b67bf3dda5b61edb5f0c193c5857eb10bed926987cef865836c3f7ae3d8f081a58551ccd0772e4eb565b1 SHA512 ae6a1a6f8d31592ea6141f2ea39c9b60cd28e73ffae74bcf370fa739865b95a7ed56f687975f017b42c59e3b0f1c02884fbd5c93140bce268771380c8c7a7a96 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.2.0.zip 77887 BLAKE2B b83e776eee00d6209b0470b2a68588faf8d0a73f3624ab036b6182ef413326933bc9265a2435984a08c7c1ca95731cd8a81c215c322f720f3a9e5affe7dbf689 SHA512 772dfb4b62d9091afa15ef6e0e12f23844db25846aeb113eb513da1b0bbaf51d11afc327940d8f5520be2d239da0c7cbc02844f3e26ede26d70ac3428bcecd85 +DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.3.1.mod 93 BLAKE2B aa4bc48d8914434d540f570e6017b3572dc4b75563174e73ecce9f86460669a264389e1e24ce26cbe056a26865b3cee294457315034b6ae9779001b7306d91a3 SHA512 5dff0170dc085e1be63ce69886cb019b9df09a5678128b3b0a1b174756500f7d4bd62dc25ee7546977e298f719746ce951119908ff59463a79a1aec7a8882e32 DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.mod 131 BLAKE2B cbc0f2260c45f1696c2dbe5b134328dc37ea8f95f75817da19f64b15d26cc4942aedec755155c21fe1ca2288190738702bea99511af61dd11e2071e9d423489a SHA512 fd32c642f3512807877fbaa2332c9b83a02d025d469226a527c19c144c8f6b20ca4bae3f6d1f17da74469d6396c1079014493b50ea8a1e7b4be3bb015a82aead DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.0.zip 95677 BLAKE2B fb807ef51512d0f1099b43e9cccf9a64ebe19eabcade8403ca6c033631790328922bb32360a48a7d0a3529e169e71dc8ad4519ec3bb87aeb678ccc0d2d48e87a SHA512 68bf6763cde94ad213a27d17ea5abc474905643274f9cf5ca46083f86f96410958504dc84224e4cbb307b223f70a0b6732373745074231ec6a0c95e944c2501a +DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.mod 102 BLAKE2B fc65ca5527061bb3ae4b156ab646ab37acec93f14ef00beb21d4ea93100e13a7f25e7d7bd3860b603ba18923075ccb2e106376f6f55ff261cdaa37ae325c554c SHA512 4e386a43067044e410312e3d6015ae59d6e77506b0db35d08fe7e6cda7b3908a5bcf6fa7432fbc5391252dd4dcb346bf359727680250af1311d5c839a4cbf4d7 +DIST github.com%2Fgolang%2Fmock%2F@v%2Fv1.4.4.zip 95367 BLAKE2B a94e0a99550bbf412c113e9721d41b4ebd81f0ee0ee1cbad9240abfbdfc91205a32a4d26676ba2b77e3b74fc86a739b5f5910aa0663a820757e541e6c889c0a7 SHA512 0097c67ed2453ee0ecf7571f15f229ce49ff98a9f7a9df8f7bb374fc693c784b6a74453c57509bb3e006833d341da7cdb9887ef3ad7e55a4ae8681e73b783931 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod 34 BLAKE2B a4239cba934b6e80714b93d47e88f22ad28ce41d1d984c4261cc3f5f3b857fb28785223fa911b258e2665be2a9d24ffbd925e9e0f374452a2aacd712ad9d5f75 SHA512 e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.mod 229 BLAKE2B 06324a68b7cc3b2741d14958d1cf1f99d36f066f325d54eeb46b60f18536e0a3dd1d50849f5c45a28f7e555ef1927339dc5b6992f6339115e8afa5e21faae063 SHA512 32c223b7df4e7f40b55bcf3ffb031bf370166a636ef2de985e12bbdca16589caa4bb440c934e3e228b08cd72f7fd6005a6813419c27646b8d855c21cc46bf1fd -DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.0.zip 483431 BLAKE2B 7d98998aee28135aca9735953e0b3df3c852c42575d215538044b2d8802e6618dedd987fe2c5c991248eff8e37b73d499ada3ae58608ce5c90e22e8fde4aea6f SHA512 9365d55f95129a9f88c99c94f5051769c95f0f859be1e4af67c29ec1e263b66793a94b75de132df16101af00addb3f15705f67008e072ddb689c13afecdb4e3d DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod 34 BLAKE2B a4239cba934b6e80714b93d47e88f22ad28ce41d1d984c4261cc3f5f3b857fb28785223fa911b258e2665be2a9d24ffbd925e9e0f374452a2aacd712ad9d5f75 SHA512 e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6 -DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.zip 461624 BLAKE2B 37b2bbde9cd1153fe5811ae008983179820ce40fd6816155fc7b7d040e29b8725509f68c30b5099b686e9a6ff31a2d029188aa526ada6375fb9c7a236b8a7d1a SHA512 a99c2150515bc3deef1d7887644497fc4aaa96ed6c2aaeae91aabfaee6668c144b34a2c75ca829636c7e88d59b297601867b0f188ac048de452b5e0767480608 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.mod 34 BLAKE2B a4239cba934b6e80714b93d47e88f22ad28ce41d1d984c4261cc3f5f3b857fb28785223fa911b258e2665be2a9d24ffbd925e9e0f374452a2aacd712ad9d5f75 SHA512 e059a34363bb826bbcb8981adbfc10da90e04b86dc5376ab20bdfe1fab135953cff41ef1daa116aff10e9f3e6503168f6baf902f09aa0e8cd9a0da96b932f4b6 DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.2.zip 465217 BLAKE2B 4caaf832a22faf1c45e04bebf35d29b38bfab18a490ad1fd7b2c6cd85ae678fd3991505f68e526f9f2205cf919374b07d57f8abe95d8f74dc8263cd37a9db3dd SHA512 7fe69c066b2407e6000ae21888f6cc696e51df2342a71e196aba1a9a9ecce630bd9a4d41c58b3105002508a4d0efb9c5ae2b8a87f848b8e2c6293558b8c4b4ad +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.3.mod 43 BLAKE2B 1985b508a7ca5fbf7283bfe42510dd54e1e409894b4bf404c918943c8bbc38a3682d00322514c8fef7d6528059fc547534bd956fb262f91fc63dfd6e97fe0bcd SHA512 17d97ea39719fd59908591504c8df288f5914243fcc43a2cd8cba6c2c50fd6f5315b17afa008f92ecdbda732d5447f848d31bbbfe59ef9bec78aaa3f25f51833 +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.0.20200221234624-67d41d38c208.mod 151 BLAKE2B 9c1bc32114f742984396777149c3fad997bb47288dfe265614a1d17412ae3946581c2e60ff9ab87e784d71cfbe423b7ed1ea5864b6cd3f81f35e9103c8c08a00 SHA512 431b8d4756fe79e43cdc2f8478f3171ac9c90912222e50503301fc83d34c90001fb6ee0fee3bc05f66e47d657977395769e54efa0fb74ba35f34429cc0dac5c3 +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.1.mod 151 BLAKE2B 260f1bb3e48b0bf9870ea3b725b13f84d2f18a12c6ca1275afcc2897bef547fcc1e893bd6b1efd46330bc1de66a00e3ef133a4418a50a075302aa3141abed8e5 SHA512 b6d7911148c590b3ce2a14a158cfbb94dd56dd402b3a4a2399adcd0421604f85d904244ddf5f8dba65326f04a7817d5652b30a306c65f44fd248ed269485a21c +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.2.mod 151 BLAKE2B efe8a8f8394f082a813ed4983158ada7bcd20f92f9f8b9b0d0e61e8dbb968b3c825432ae05d69c9b61a04ad57533c1e60438d9a1964312d4c9168f86864ba2d3 SHA512 2df7aaf6cb36a18165dc458a7b3f4158e2bce3bf10165418de401dd43e06d44378511dd4fea6530cb668a8ebb17b4c3f294ba35f5018e6aeb1b7b9082aac8a84 +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0-rc.4.0.20200313231945-b860323f09d0.mod 154 BLAKE2B 8645404d124dde54c3e9c284b1243b1faf2124f2b7d6c5e6566ca600d3c965f7787f09f6825840f5e3ea6d36c016ef2c7fef10e8e12dce354593f7a8a3210a33 SHA512 4c9416c4777123a39b23b49ecf6265295fc3432de083a04dbefc87264b8c69f0d9e342ebb7e8e488f30c3efdc02951fd7dec23dfd1fef0802c8f0250f96612a8 +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.mod 124 BLAKE2B 4c032e7f2e1c8765cdd720690c1067c7c0ba1005bbfae01cd928bc60d96bd82321052fdb18a4ae12119144e34865cf910e306c5116e4f4f56cc5f70f5d52004e SHA512 acbd5afd399b3798d4b24529479b18523ae4009e21acde15a3893d2af75f9a6e65fcbd5a237423849003eb8903718eaa0b1aed9177c390972ab9490f3acc0d1f +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.0.zip 205991 BLAKE2B 75d746f36cc90088b863fa6c00c6ea30f071c5704593de0fe37b810c530170f6062c35460717a52170f7caa7e6c015ce2357384147fe4a12a9d695add2915394 SHA512 4542c6a57361c255ab89d2330c1af61cd706edf82c02bc48854e6f4407911a1657151ecc286b774e25be93bef29d63d2f031a99e24ecdb212030bcb1dbf7b17d +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.mod 124 BLAKE2B 3242575be48f0e1f74e2d0976d2a11f0edccc59c7b74cecde37233c19f97c51e576cd3032175cfad3c1ce9721cd41053f459341182fba836e0ff0456126e493e SHA512 9586be76b697c6a5c3216762ac13a7d297372ebe0c7ac5941d16c326d1580c8a73fb475236ed9a4214d158a7386e761877be16cdbd4ac2074e8a5e1dfdc95b54 +DIST github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.4.2.zip 206762 BLAKE2B 13c74350dfc3bf39540c37f6b7771f18930d6bfd6a5c83c27c723065da6458e0de544a6fa4d57c027e6c67eb528493c620228a56249b889f00d67a064218dbb0 SHA512 3d92469995664037149e3e11363db685b3175fff01f4ef3b578ada273853a16131b3c97899b497ab75ffbeb6191fe59a28f073779828f719681b8e15182b6211 DIST github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.mod 32 BLAKE2B 8b498b103962181cf69cf5de686eee1a7f0e481ccd35430e33999c951b91ebb98e9dcb1dc9c4e40cb379fe4abae40a47eb36d9456fea076e44245022552d055a SHA512 c9faa5760addf2869df9a3ec5ed9da02944823afc5be93b8b6193c43261d167cff2aeb65bb844d959d368ada83932c86056aefbff799be326e889d3de4c2b8f5 DIST github.com%2Fgolang%2Fsnappy%2F@v%2Fv0.0.0-20180518054509-2e65f85255db.zip 70555 BLAKE2B d83b37593eea44bbd11100af9c0c41bc2b55e14d06ef1fae1dce5242bf8cea1574c97a7148e7878385fd4bafbb433aa26fb4fcaa47e766353b2b6c179ddda124 SHA512 3ecebc76ab8e8f3cb65a95065639f3e90b5d722ba1aa564b42104e83ea4bd67af65e52c73a33b9b327b9934553f2c5b7324be8229f2c2e95c495065360a37c54 DIST github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20180813153112-4030bb1f1f0c.mod 31 BLAKE2B 910f367210db741c9f31a77f8eaaea348d3accbf0f219efbed95a780b93e2416fe64dd420ae45ff13da94a8f2a0c7b19850b13e1d9fc6cc1249d327bf04b5fd9 SHA512 f2ff873ecf0144b7f434810af1b49f66f09b4bcadc91d99201465a6ce36c7e7f05996f52800be287dcb3b62e14b75fcebb7c32be0eeda6bb0a15a23058c2d410 +DIST github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod 31 BLAKE2B 910f367210db741c9f31a77f8eaaea348d3accbf0f219efbed95a780b93e2416fe64dd420ae45ff13da94a8f2a0c7b19850b13e1d9fc6cc1249d327bf04b5fd9 SHA512 f2ff873ecf0144b7f434810af1b49f66f09b4bcadc91d99201465a6ce36c7e7f05996f52800be287dcb3b62e14b75fcebb7c32be0eeda6bb0a15a23058c2d410 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod 32 BLAKE2B 7c7baa1e29b9806fb97e0d557200e8722f2d373e149127307efa285cdfedb36dd57355168554d1a1bada62144e6a6a00c4d3246aa9afc7d0ffae0f087459c552 SHA512 7229d917bb0c788b07297e1b09b8f7952f951998a56f17ea1f69ff7c2f565a5686b212f42f45c6b8351905d6740a2ec5a235e493daa531ae00cb709faf67ae45 -DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.zip 74164 BLAKE2B 6a3c04c2986b35dcc32f14553534758c3270c294a5e2595487f884e32e76cac2ebbc34cf7e42232eb7d85e71fee7660b513de4e365981e625515b086c341d15c SHA512 7be2dd2b362f56ad7fb7be35b62a841ca051d4fe31ffe1ca784e393b0cfe44674a050cf1129a15094872bc16c8ed9bc62afe0e7017bcaf1a4eb9b2e39423f790 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod 40 BLAKE2B c717b6aaf18662c20120746a021b0ca878e7b190b3456cab24ec98032390a85b0af8540295e470647d403bf1beb582c8f8a74fa7129c4cbf747257206235c5a5 SHA512 351dc24af135b9c9d714aadce40fe9fa1ec05a35a4df90af79926d5119c3f33a6510ab9d78243748d7dad10bd2178f47d342ea2389972b88d5e9b4be6dee7daa DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.zip 99332 BLAKE2B d95e04036796b0687ccfe18e2cae196efa87fbfe7a763a219860a82117f5a7ac594af005d67698289a9fa0f19b9c397f850ebcc8f6b2e2390fcc6463e95dd47a SHA512 6922e27a1a67c4e858880ca338f68ed80bc01175801b2194a900ba265c00eb482c29e785c564e9afb8f60288593b315ae8af6c8f366d35475678003440115d26 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.1.mod 40 BLAKE2B c717b6aaf18662c20120746a021b0ca878e7b190b3456cab24ec98032390a85b0af8540295e470647d403bf1beb582c8f8a74fa7129c4cbf747257206235c5a5 SHA512 351dc24af135b9c9d714aadce40fe9fa1ec05a35a4df90af79926d5119c3f33a6510ab9d78243748d7dad10bd2178f47d342ea2389972b88d5e9b4be6dee7daa @@ -204,19 +213,25 @@ DIST github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod 40 BLAKE2B 081291e20 DIST github.com%2Fgoogle%2Fgofuzz%2F@v%2Fv1.0.0.mod 41 BLAKE2B 32370943a480c13662a0847b33fadc7d7f909784d044619ae8b00f03c9f537115448140ef2ea1b47606dbc64d7593e07cc8f9b9000fc5382e4f1ae94ae4086e9 SHA512 3dcfdb76a938cf370310213720ca952c6aa99c8b1b96afe41eb05f1bff15df7d98d279509d921893c0c749337c83d4bf40613813e117c01205859a041716b2ee DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.mod 162 BLAKE2B f0ea72b4c8365cef78144ea87199e276b4a17384af7d060b7e94df9506259d314532d5d522f163b63740971036828a400b4642d1d96b9379fd09b85a80704b4b SHA512 860ad8012e5103242b1a02208c224120454a4ddcb9930d9fcb9bae989df136080d32d397426e4c2556e6fafdd16f2fff6cf205e983107ef2f70b87e1b4e23da3 DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.17.zip 1032631 BLAKE2B d4dba3c5f53eae21e2a10e3264d2b7580884bbd9b13983ce25ed77f1238a67c0456798a829d5d7ce19c5ec9b33058de34402e7fdf1563fb3f5ff9a3281ba442b SHA512 5afb49b688dedb8375c002ef172230a69f48628729bdbbff2a7aaa6dbdf5b275992bfb0761aab6f651c578d5fe1d29a95f9825aef102a6652b7df596d7f8a3ff +DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.mod 162 BLAKE2B f0ea72b4c8365cef78144ea87199e276b4a17384af7d060b7e94df9506259d314532d5d522f163b63740971036828a400b4642d1d96b9379fd09b85a80704b4b SHA512 860ad8012e5103242b1a02208c224120454a4ddcb9930d9fcb9bae989df136080d32d397426e4c2556e6fafdd16f2fff6cf205e983107ef2f70b87e1b4e23da3 +DIST github.com%2Fgoogle%2Fgopacket%2F@v%2Fv1.1.18.zip 1088297 BLAKE2B 9fcc0fb4ed635cb8ee65544bfa3989f971cbd4b8d9082503249c232a300bbe5e9b4faa217300eadcab79ee92d6637795877425a3796630385ccac35e3737cea1 SHA512 51c41ec4abffbcb25eeb49ae691e9330e9b0585cfb3ea3b7c35ea1c764f6b332d90ed3a17055dc59639f99e9fa5f10bbdca4f6b5ffed7255e6b05c3094b7a450 DIST github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod 33 BLAKE2B 694b57887cca857fe6950b0df444dc6e3d757dde540c1846ddcd4bb8f96a5eef3f469eaec30cf415541ff2f53acaafffbf4032189122875603d7e5e3dad2ef97 SHA512 cffb5dc1c6531ae9d5998b3a57ba14de5dd8631a36dd48975da07ce5ec052d97b6f632c5d30ab9ab695f178758837aae8a6344c67d57c7a39ca8e9243f8211df DIST github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod 31 BLAKE2B 705b12f16ca8f0258457d0972bc8845b553e9e8d9001de0f4a4a548afe23424b0902fee4c84e94bcbc4615401d1369730a60bc57de85aa674300c1a96ad1f128 SHA512 c7e8b1bdd0360b88ccdcfd0cfe73e5cce50010a21db41ec2d533f7863b67930fbb84f430b9ffb663c394256628b05e884b812c040354779e0fdac2a422ac57e9 +DIST github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod 31 BLAKE2B 705b12f16ca8f0258457d0972bc8845b553e9e8d9001de0f4a4a548afe23424b0902fee4c84e94bcbc4615401d1369730a60bc57de85aa674300c1a96ad1f128 SHA512 c7e8b1bdd0360b88ccdcfd0cfe73e5cce50010a21db41ec2d533f7863b67930fbb84f430b9ffb663c394256628b05e884b812c040354779e0fdac2a422ac57e9 +DIST github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20200212024743-f11f1df84d12.mod 368 BLAKE2B 5cc8fedbc9bb93a20e0ae5cb9a69dd5a92ee4a7f55c6b5a93e7925b402b830316038cf99d0c80bec2cf5c8ae1593cb879dd8ad29dbb10b66c64fca856367f816 SHA512 9b278d6667d9380f84c972ee1d383e2b54b460ded5b84e872aa3d64336ab059a8a747c442f4227d60e7dbfb67414ffc98a26bc2507327d9ac85ed1c493a5fc02 DIST github.com%2Fgoogle%2Frenameio%2F@v%2Fv0.1.0.mod 34 BLAKE2B 1eabef50b2977886d7980d7da197828b826c54018766418b3160f5cd512784635e5791a40cc4fb806d52f5ead99f941fae8037872d6cedfd6c851103f3be1a74 SHA512 a46cae976ce90d1cef802eeaa873c059cc9ec3678d5c3c304a9de45f44f20a24d68fa290cfdcf78c4ac222a6d619a005825de8f11e72b9a5af476a0b0180092b DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.mod 30 BLAKE2B 704029826c505198458e86463528ce2c1b209376f376b92d4f05a0f4094d161b45470d04ed3c1b5635397aca3126c25911299711139d794cca3e9b2bb373ee17 SHA512 695f3424e0cc247a069fbd6b94820554e003030eb0e208ba7be38f660c5fc29f74a057e60031ec77918b5b320913d6deabdf19a0f0666b0f5bc5e2724e1fddba DIST github.com%2Fgoogle%2Fuuid%2F@v%2Fv1.1.1.zip 21279 BLAKE2B d8013c686f7cd497091f4c7d782b283eb95faa7617d68ec7f8cf937c5925d677d8552c662291e41cf2c137fce163d45fb62dfcde88088225c13e0980fcde3d7e SHA512 f28071ffb6515262fb73276725181a806740688fea8de8d9484e1204fcfe6e5fd437e38a3299acec6bb545deb31373d910a09d92937308176b2043ccc9f5397f DIST github.com%2Fgoogleapis%2Fgax-go%2F@v%2Fv2.0.0+incompatible.mod 36 BLAKE2B b84f97e1dc580fd7a509f321486bba195bfc339dad35ec7dcecae4b44cc20690b04077d51cb4f70466a19e7edce89a8a50043ddef355c37fb4e529b81b99efcf SHA512 3f00f698f5b9c8c859553086638f72b732a210572ab7319c1d641a29962b317e4b424ee213c2421c06ec76c70e1252d7a770f43d4c46b999c5b371017a3c54ea DIST github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.3.mod 79 BLAKE2B 00b450e2752b2b87b8c630d67af470188b9c3bca1cb1b7b1d619a573f59f3cd4652a6c2dd776db493323c7152454123e2b5d532161248e025cccbc5f55528b30 SHA512 b6f6f34a079219d53b3d4aaf2bde9a5f9b6b9e3265f4acc98c19ac150b6d0c8888a519c0a17a1952f8339b93118390af403fe3a259d10f4d830c030480706059 +DIST github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.4.mod 88 BLAKE2B 840afaa28e8d5b816289e6556e114311f039b477e5ac86fc1c2ac80b1f8d7729ab6a83b99baa4c03de9634240481feb13900fd4049753b8de839656d6a7cef8f SHA512 31e50016a01fd485775368e2e430959278cb6c03ae6b1871b3d0c173fd43e91654ae87d1758c08daf897e55be8b4044bcb47fc072ec645d16e2594f345b46c73 +DIST github.com%2Fgoogleapis%2Fgax-go%2Fv2%2F@v%2Fv2.0.5.mod 79 BLAKE2B 21f442637ef0be838858e192b563e158bf6ed1f7e06e09a3872fbcd613046b095c5209d9ccd9cc0853ef14947b6b70d4483675505d0905a1d2aab15e7bfdf80a SHA512 2af320b0514b032ee87a92d99d673579981571f325d0d46133e212a639eca274d5a6f8164a7256cfa6c063967b98ace36e637f53d90331903fd6e4a21f1a5a19 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 -DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20181017120253-0766667cb4d1.zip 257755 BLAKE2B 13d505a73dd179828fd3dbcbc1dfb90f6bdf8a888bb7ab160713a566472adf63d45491fa29928853d76725c2ffa5ada33e802cf857376c83cd8085a31acb48b5 SHA512 5bb0e61c8622e09cecc099c80cd97cdefbc497d4ad0e88984b2936e7731991e972883eb639be1cc3f56249a97b4f14c6820cda6b1c08e4a2323aaca22b840dea DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190430165422-3e4dfb77656c.zip 271834 BLAKE2B aeefe3121b7ecc2743f4f2c6d3c02f543798616aa10787ed6638fc18823a6bdf2489139cb7885cd244f5b47eb1d59e235da3765bee4f72adfe2a7507a37b4d16 SHA512 d4d15589ff870b69c6a81a478107cd594309679eb85034c24d77b530643896dfad09cc945426f298fb6a20016c1cde6f03ed30af73a724a9074d481efdad4df6 +DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.mod 36 BLAKE2B d7cd8f31950392cb5de7f4223ff9fe3257568dd0a1c1b81c8b97934ba92379753dc936c81c39e5b553e4101bc7c035ce81c8d669d85ed1d1eee41a74218f3d88 SHA512 35151946ce44fde9d3bde1d0626749ac4bc68cc448736c3b0f056f40a9ae30aef591db614b271df3eba3a96dbc94052ea5bf7ff68749ec980088d60361934771 +DIST github.com%2Fgopherjs%2Fgopherjs%2F@v%2Fv0.0.0-20190812055157-5d271430af9f.zip 266859 BLAKE2B 50d9f8947a6aa6dec084088e20bb6fb15c3f55e741609be0e0bc13c53a069d302ddce02f767a8bebba89c18e17fb83ce208afe3fda89ccbffbb737b870da4383 SHA512 0c95b8842bc2ff2cede1b3614ee8e705a63bb1a77ea0eb73f34bda34293def3317d49d79a089a2da225fcb0eaabba1c20fdd766d4e4bb186059af9899ae66d2f DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod 36 BLAKE2B 94a5b4cb6c6de32397f001dfc95c49960de212f67fbb6b4a1a4806f78cac88a2698c3c2e19b7e1cb64d07a3ad6caab25a1006bb4f51b65e1c62c5a12c77d8b9c SHA512 21ce8fb666af3c32e843c816626a7c4c0c63ed1f170c7a49eea4a2f40e28e4ba0105dad2e17aa527da7dc3eca198a20dbb6566e60ef48d7d7cf72413bc81d24a -DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.zip 73861 BLAKE2B ab1760636aad8ffa0aceb1720b6221debe9ddc6ef0c50d180cf5eb30d19a746acbe07ba3bb83047d7595a7e3060370c63ae6288fd2c57fa66a49e36492fc93da SHA512 6261d3ef4f67e239ad3a2d5b3a6b7b05254f6596ee7e9410c1e80de1b42047642286b2c0239b62ee769fbd2319c5aaeae595a1b9beb69abdd85504b53108bac8 DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.mod 45 BLAKE2B 5f187c997ed74f2aab1da57c9a828be383e41f47905531da8babc1360612ba5d4cc0fc6cc48106647ffa450f334c7cc5f455bea7f6e6b9734f3e55734cf623c6 SHA512 81ef224435efb5cbd429dd4339e8410234855f4a268302a61d34e76c388e89ea22c97ae90d71a6ef910ca00d3178e40d3587eaf484112966050fbd1f1f4843ab DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.1.zip 79215 BLAKE2B 25312a1d971b0e214f92e88846586f3cb96a23a8df927d2fa73e37cca6eec4d55cd88c3757831f37661ed82a0681a9d0c3e1edb32e5182b1a0b8e349e28ebf79 SHA512 8de80f729d0538295606f5900e9f70a3f77c4b6ea7782c9bfa8520ec89c75b6a7ae08b42b6ad0dcc261f9e9a298bb58645fc97c4e5c2b51cbd6cbab62401a2ae DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.mod 45 BLAKE2B 5f187c997ed74f2aab1da57c9a828be383e41f47905531da8babc1360612ba5d4cc0fc6cc48106647ffa450f334c7cc5f455bea7f6e6b9734f3e55734cf623c6 SHA512 81ef224435efb5cbd429dd4339e8410234855f4a268302a61d34e76c388e89ea22c97ae90d71a6ef910ca00d3178e40d3587eaf484112966050fbd1f1f4843ab @@ -224,62 +239,42 @@ DIST github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.2.zip 79096 BLAKE2B dfe472a489 DIST github.com%2Fgregjones%2Fhttpcache%2F@v%2Fv0.0.0-20180305231024-9cad4c3443a7.mod 38 BLAKE2B 1ee03077667437ef310e0e9d77f917474151294d0ae6654596884b28fa847c4be1fc994e4a2dd00d4551d5a4550e14edf1757f5061c44b527cff91353944b989 SHA512 5500094712db06267cf0d437e774bb1b4df9affcebd73ac218259f089f035df59c7ef38e6f36197014acbe1c8b08806734cd27c85a4bc86cd62fd9196d7f5b3a DIST github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.5.0.mod 46 BLAKE2B a909a61754bdc458c27211bf62b57f4ead8065bcb84511f4fc8c6fa77f56d78ca714e7e311035c1544d92f596de2fca56bcc767f9aa360d8d2cc36b7301fde21 SHA512 b1c1ceafb509b0b3c2b1c5fa0a28281880084a63a071a32f6ea4a04dcd2b2c455c9824414da7f767b1e039a079b6a40c0505a2e71991b9e737c1ba01947ea434 DIST github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.mod 41 BLAKE2B 6c8ce7dc8ee3fc1f0a4eb30c5060f295c8363280483e9139f6677f4349070907af83a039a262e6e4fd93a73457f7d5f19290a28e21bcebbdf8bca432545ffd07 SHA512 48609c2894e08cb9f5e3be29056184854dbd7a7a62d4827828d42d1ede7287c1b3e4931562c575daef710acfc56d507771e1a7e1bf36bfc7f826d975453a4fa6 -DIST github.com%2Fgxed%2Fhashland%2Fkeccakpg%2F@v%2Fv0.0.1.zip 394023 BLAKE2B 88e93e4ae43549119abde67ba89f92d6e9ce3249c5d1a9de3b840dbd78b1d695fc918b9f8d4ad0b2af0b814fba2602b34835e49866a9a5fb48365ce376a035f0 SHA512 ce6421ca2b9696115a26e4cc0d9aba7ae6c2c7b8b8ba76c9fb95b1b158d39b42a52152a49a34f4782aa681e884bc82b30c9ca78475b41194b82b59e72ecdf189 DIST github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.mod 40 BLAKE2B 41be101e4ba6b9db1ca8301e1256ac23e30fa8332d6dc882067118b2d2098462dc0c04a7893421b4bf8b52227931cca02bc39a24b41f41529a14e87e8a48ca11 SHA512 9148e51779191302dcd14e9a9aab684ce14857d9dad31914dc69b4b5708cdbf6990315e119e1f3b11640ba7dca07472d25cb6412405675d34aaa80c9389a7e69 -DIST github.com%2Fgxed%2Fhashland%2Fmurmur3%2F@v%2Fv0.0.1.zip 8796 BLAKE2B 0dad6b5f8b1efc949faf4baf48401eab5252d991968b87e03412e97b5251697192ece20d72b3b42919ff8fc9d98c3ebe35ecb887d23b862e54895da9ff159375 SHA512 5d321b83c30ab8eee1945e6d77e2e258d1d23b5447113decd47d5c97c3c3f090f7b15928b19fe7f5c1cfa186302f4753f0fc418e978ab94aecbc5ba7d5787ab0 DIST github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.mod 30 BLAKE2B 636c54202f2dd7ef66b5a47ea963cf2e8688dea8f08a8710cbc6348dfae0d6fce33c0ed79f3d1eef8b9eb024404cce4d7fb88348a90289fcad14d8909c1855e1 SHA512 9b07cf356b10c0eee6022c5f418c7c3b4cafab75e92da1540caabb5a581351e80880dcae09f9db9516c59a8053f52c91b1023522c959585c86a30fcac97f5085 -DIST github.com%2Fgxed%2Fpubsub%2F@v%2Fv0.0.0-20180201040156-26ebdf44f824.zip 4712 BLAKE2B 0befbca5287ce00cb8104075cf78962480ee04f59e780a71dfdbc1f8ab62188c6fe0adf263cb00d11ab66707bc3fa1f0634e8200ad8df211c9043b72740153fa SHA512 9a730ba6ff29b534e90383f3e9ae67f5211070090eec6ee82963213c0b09daad4e1c82c0f81539f6d6a506babd629ba6c8bdf83799d1f9c3811825ace9d2d89e +DIST github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.mod 290 BLAKE2B a1ab5301591d54ebb3c37be7d2b57f47af15418a9a1a2f4ce365de391d4ae529b3ac34bf49cf6887140fcc2a6b9b12837d0307bed73342b8bd208b3da9acc1ec SHA512 8eb906c72d5cd8f19e3799a99f3d947fd5848979ca4adc04f90ecda6493793046a5912ce0e6b556af41e0975fb14093dcf5bd2127f51d418d46c95f280cff96f +DIST github.com%2Fhannahhoward%2Fgo-pubsub%2F@v%2Fv0.0.0-20200423002714-8d62886cc36e.zip 6657 BLAKE2B ee69b05e6565ff16512d3460bee87950ff5b4ddac46be75e8392f8b4385f0322969e789786cd1c3047707cafa1acd2c214cb9c06e7a6f93e4c6a7134e972e2b0 SHA512 11acedc68dd1a3287274f1a4a6b0a0349b48ab29145f7c2792a82c0ed7653238091b356eb6114723d62826c1d72094c1bf7420c9e22e0bebf4fbd1ee6655eeb2 DIST github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.mod 36 BLAKE2B e3101c1f32c24b5d5bd3de55b4f15645e7f0b338cdcfa00d30cc4c063bf4e9e31e68972979e8282d04920ffcb54f112c8c8f6e0e109824e56881a6a699cdf622 SHA512 2b68ca06311d8602f04eb738a68a24951a9187aa70018d938e549cf7b555bf54dadbda5825501436c52f6103bcd220ed170c99e4cf777187e2b997c87f05fb0d DIST github.com%2Fhashicorp%2Ferrwrap%2F@v%2Fv1.0.0.zip 9306 BLAKE2B 1172cbdefac5f63dc5dc155b38f1f6e63bafdcc4a9ec057c3714a93251fa88d9cf29aae780587b13dd4eb4af10fde2dd305c4ff774bd843068726c05861ccc4a SHA512 fcecaaf6496b11fb35d01da0d3375508c978b0a319d344c61f77539be199f1f13ed892f2019d5b6d8ee1603c576064203ab87e235bab4b0bcb96d28f9e16e88d -DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod 87 BLAKE2B 34587a565b583aac6338d7d23b4e7c2ce12deb6700e00bec711d3d8d829ef1ae356eb1b28873d5bc2a0d6ed249dd6095539a1dfd8c177bec32e08d97f4003620 SHA512 d47dfa43806a386eb74b60f692b3bc580997edb9d7feff6633992a5adbf94d102a238e036d828952e204960152c62895288af6f09e2582e8b1408d259fb834c0 -DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.zip 14840 BLAKE2B afc6e5519fc2dc1209382c6ffb6f73d29dc97b6cfa03ef525d6095e65870a1ce25ca59d56648e24bc399f53f6879c0a3ce91e27645a48734602292c7d99bfe16 SHA512 8f86f79788cec64d9ce4f02af2ab7acd64f2014e5b592256f07563841444520bf4810a1dfa76abf04909dbe5f3298c67c0a88e636e45a181e461a2fac08d385c DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod 96 BLAKE2B ada026bc3e6104973cb7900d638acb7976ee8301e98cea55548fc800d8954997b666d0c605dcf1de0f639932c8834bd13e8f8512e74529a818d3de978f0163d4 SHA512 7276c308f91ed52579965e7e83e839351f2170cef2b58ef67887d5eb926dd21fd502f98ddc84ca8e6f16c81171490c1e2d9a131569b5d6d56a1e2ba28f227451 DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip 17595 BLAKE2B 06dae93e8077ab6235d59b57646a162ff31e044624bab3b6ec86c7aaadf49c36b262b957704151db889c515c425630299d396d0b76919403eabf4a3e71098ef6 SHA512 aa4b145476a80d7be7959bf7d0a9a278765496dbf915d083fbc40c5b216a52126af9ba12cf09f9cc178ce53987822ed61c92e2a0295fa977f8a460262e857c30 DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.0.mod 39 BLAKE2B 13f90f934356dd1daefd27a94bb7a8c31f09835ea69f3fc83d343004858c6728bdd6bfaaa919331f7ee04744d18ac37f46a13be9feaa20e24e88ee364991a9b0 SHA512 bc3e0c3b16454e0f079bef539857c22f09ebf11e78ac1744a22f5af87d7297979b7ccdd48e4f59605cac562c268c3cacdbf2745f65be5c934f73f216707120e1 DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.mod 39 BLAKE2B 13f90f934356dd1daefd27a94bb7a8c31f09835ea69f3fc83d343004858c6728bdd6bfaaa919331f7ee04744d18ac37f46a13be9feaa20e24e88ee364991a9b0 SHA512 bc3e0c3b16454e0f079bef539857c22f09ebf11e78ac1744a22f5af87d7297979b7ccdd48e4f59605cac562c268c3cacdbf2745f65be5c934f73f216707120e1 -DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.1.zip 19548 BLAKE2B fe48c3db37bc280cf5f36e522f4b13f7daa45768cad11c1148634ce7af618c1c20f568f98ea7193b0be7021fe8a4d209a4a7f1c94be3c05924a36022a57c46b1 SHA512 6927a910a368e1f2b0792989858d25c5a55891082cc38f5907c539a35919916e02872619cbf45ed583c6f6f8e85936a3fa790a161b071dddc922383e983d37ee -DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.3.mod 48 BLAKE2B d49fb83b0e128d1d891c78fd7efc4d1f6c92ff9ba30943fcda9b89d752d468836df7c37d6f30d1b4e8eaa5cd966c4b2ec90efc087887f037cce94654761ac107 SHA512 a55d0882366adebd894e5ebf9de5f70ac8b5f8f945e52b7dac8e56b4efc03f40930d132ac03bacb51ca220bad114940b9e27bc0ecbb92dc739691674a8aa5e15 -DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.3.zip 20071 BLAKE2B 721bc6e9c5da0368495a107c94ef994641147880da54bc7e39a8497f3545e8d21b3cfedaf01aa832c5c964e2eb239babe2d40b9722f48415b230a69b4feb8fe4 SHA512 d763c2a4bf816b333da555a9955a4b2aadf4c6d89d0ac1c5b07a7eaf8792229a810a445995a42fed17aaa880630e834adbbb567901351e96757b263aa1616065 DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.mod 48 BLAKE2B d49fb83b0e128d1d891c78fd7efc4d1f6c92ff9ba30943fcda9b89d752d468836df7c37d6f30d1b4e8eaa5cd966c4b2ec90efc087887f037cce94654761ac107 SHA512 a55d0882366adebd894e5ebf9de5f70ac8b5f8f945e52b7dac8e56b4efc03f40930d132ac03bacb51ca220bad114940b9e27bc0ecbb92dc739691674a8aa5e15 DIST github.com%2Fhashicorp%2Fgolang-lru%2F@v%2Fv0.5.4.zip 20160 BLAKE2B 19b98d09d695d9d1d999e30896d7bc6b5f7266adebcf182ea18cf8bb379ded400d2200e22ec4151831d4e124c4cbfa0c6332678b20311134d5666eae24302f07 SHA512 f18b267cf4ebb61f56c726f2e6b7ebe33bf97d445d44648d41a5ba9734fd7ef7dcb034ef8881f476ff2ce843118703ecaa01f9925c2fec08bc642cdadab742b7 DIST github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod 75 BLAKE2B a44a3c2185418f331e2648bdef36882414dbf8416884b8fd385b7e926c9b837d317322a433e7312e14c27eb095cbed26a74eec9822f0f063a2d14e753031f632 SHA512 045ed40015294ebd8f7a6df06b418415da8f091d09fb4d34fd70718bbf5ce9f49dca7399dc5649336de3fc83bbbd93e740ad6f62d41ea540fae3b17f349cd66b -DIST github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.zip 121655 BLAKE2B 071d008723f19fcac3ee740e1b4898414cf09a2813bdb6922705cdcad5913d7fe4682d11219ef10d8bd3921fcf93c7d568daadd33b8e7c307a55eea6ac0d54ca SHA512 19403c36137b6ec9247fab3a9255dc98ad9dc46ba03ad3788e11298f8a310756b24dbfd3a0d9893ad93dc111dd228c421f96daae09e2058438c3c7c58386a71b DIST github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod 31 BLAKE2B 7202132cff9b47a4484c61586949dbf7e13622067675cdd09dace3ce2e5b3a37b6fc5275b3bd6dbb0ec6ca0335bb7c9a036cc043b2d8ff1f38bc90ce13041aec SHA512 54a5bbc02b82693a977a4f690314b16d94cf071decddee3a4af2a90398e626ff188bc34ab3517278e7aac4e657f3f3070a020c85274be3750371dfdeee139b23 DIST github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.zip 24894 BLAKE2B ab55c48bafc78202f2a0a494c6b00657dd81c078c0a23f797a59049e8ac59bc399f784ff81beb710aabd1d035e7ee3db5a4c90653d6e57dc3b3f0bcbd098fd39 SHA512 b77e39712e985744e277604bbbcd48f32d28ea69eac7a6b6cc0a3f8706e2970ccd5410761784b64eae73a07786cf81c665934c145369317b8b961b503582643a -DIST github.com%2Fhsanjuan%2Fgo-libp2p-gostream%2F@v%2Fv0.0.31.mod 353 BLAKE2B 0d4d75963a81ef8eea3ca8e3c0b13079ea8ba7e7ff9027061879d9970259f8c805ffb219dabf9ea2243cab00a8f5a7952d1aa6fa55d0d1aad4cbca4f8de56f51 SHA512 da6f2bcc8a2c6f6b85ba9d45e48a8ba18857da9614753abfa341ac08746622261066427a71385db73dd6e11bf387f0ebb5490cf8cc420f9712ce8e5bb92fd98e -DIST github.com%2Fhsanjuan%2Fgo-libp2p-gostream%2F@v%2Fv0.0.31.zip 20168 BLAKE2B 5292b1b0b2d7e2fa34316c627e63de0157fb589017ab1e5b29433330f62677e78b20d1aa329077379815758821d5effbdf88f2ab5b491b1eab442b362a5fc682 SHA512 832646f3642262916f767678fa6950fdb8e961542517822d2ebb637a28b5bd07af8fb7251b7482c6235fee503b84ab2f7ba4841c99d6bca933495c0c7df11f4b -DIST github.com%2Fhsanjuan%2Fgo-libp2p-http%2F@v%2Fv0.0.2.mod 357 BLAKE2B 8fed696bbff89b8762083c5448d1e600c87183a00422717eaa4e2114be4ca7c640ac5237c0765a353058f960f0095ab372161c04520143e2481e58da2b61378e SHA512 ae5e86732a97ca4e99eb9e1c6f48622cb8492b9efdf9d3633d672bc8b511ef60c7d4d363c7327f13486aae64c17412803d91feb56bbcfabe5dabbfffb46bd56b -DIST github.com%2Fhsanjuan%2Fgo-libp2p-http%2F@v%2Fv0.0.2.zip 18439 BLAKE2B 09913e1ebb7d690ba8f4f07c79ffeb51abd46a48306577a67911c9bb6d82971aa9c10f0ddc6eeffee8841f55881c831f7e2f644ee19ca85ef6b538db5052e251 SHA512 cd246dd6bf8c4983325f7482c8ce4e5512032e0e6f3a5248d30d815fe3e5529d74cc03cd7491f9f54c09ee6361106091074c68c9f40cde2ef6e5f1d218d9f2ab DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.mod 30 BLAKE2B 0220225ac49e562c121d582bd6fc7233ea2939b7d8c9268a25fbc395f078bf8a982e6f458d04d9f49ec9ebad3abe9b84d5784d224f9093cbe57ba16d9576d3e4 SHA512 de7877cb78323c0945f123a18925f07c1faa5d7666be2e5e5efd6a2c7953a2e9af7da41600396344332c4ad564f8717b17b0b0c3958e049bac4043b3acdc0cc5 -DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv0.0.0-20180415215157-1395d1447324.zip 70004 BLAKE2B 876462e674d34cf94392837b202fd5897984e99afea15c06906802e1d30b7430a938f6b6e61aad0f458b6c8c36d6a5937b64acfd7f3231357c5cd49bebcee2fb SHA512 286281718a4c73a5a8607ba93039f253071f0321f54c7a416f7bcc64b12aff8f6ff728144b99c43fef38c7e8152dcf1acb9764b0410d62c5591fb8090d8b089f DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.mod 193 BLAKE2B f2487263b38f57fd7665951860e05a081f1456b3c3c2a8234b8056f972896551c254a90fe5a427f3f3582f5ffe1b607c82c879113b21201322ab23ca0eb36dab SHA512 fb2883f42f2e1213b77af90b96dd97cc7b8aa303c08c2326fd126cb5c5bc40d000cface357006440b152a1bc40c751d14c2f49208294e80ab870689ea02ae7a9 DIST github.com%2Fhuin%2Fgoupnp%2F@v%2Fv1.0.0.zip 72318 BLAKE2B 74b3d91b06d4b220896199646f0bc9cc90990ae913ecf4f0a63e6cd3af53f76fb88c294ab84328f08e83c023cca672337aeb0bda5467ebfb40b4aabf93f1b232 SHA512 5833e9edcc647ee035f733230a388dcdfaa7e2d9d64be882ad2783fba3f1a4a08187675de5d2b4c097ad822054a412f0651fcb867dc126b1c41333e0c6877656 DIST github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.mod 30 BLAKE2B a65905095d4e228a2e51c6626234e058d8dd1477fb99917c8eeac3b1eee371e8dba4231c30bc70463794afd5419ff5762361c8ddb59b3d69cb7a197d1424976e SHA512 2ca1e0cb3cbfb97598f12cca770d13fd161c4c78714c0cb5fe4fd329f3ae41788373420776608682fee1ce883c403769ff1dbb9478e9978a7a09c4483008684b -DIST github.com%2Fhuin%2Fgoutil%2F@v%2Fv0.0.0-20170803182201-1ca381bf3150.zip 5522 BLAKE2B a2cce679387f4f89ac71402ee396e079d86317a3b0b5f0a334c00f17cde7388da18d991048879ac01ed48a36f0bc5c5dba8755a4d9663c64c263906ab01526d6 SHA512 debd3c1ad3535d3ce1e2375a45cff5bc78a22987c8b871e867199a551f551aa86a1138cfbae4ebf810288fc94e730d39947ffcc1287abce92f032573c6ad2763 +DIST github.com%2Fianlancetaylor%2Fdemangle%2F@v%2Fv0.0.0-20181102032728-5e5cf60278f6.mod 42 BLAKE2B a20b1ee1675ded231069e976e9e3812b116d80b207914ecd1266ce87160bd6fd3c0bdfd7f7afa4a2a4d7891a01cd7e4a7b7bcafa90ae31c5875f6b0eca00268b SHA512 ff238b036db5df69dc734f4a0db4d1fd1a94a04131d64ea20c5268078a645327527f185da4aab38b2aca60da8c6a5f8f118b660f5b0773cc76d7d108a47297c9 DIST github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod 44 BLAKE2B 764581d416faa477a91695a42c68cef5638d019a1622fb3bcee976c1581e904995d33c79ffed1d3b805f660931ece844b3e17437f158f8b82ddae82e95f0358f SHA512 0c77200112d96f9cddf8cf7da0059204914b06a8c400e2e672443bd02a45d9ebb3274275c20e6e7ee0728992e77579d945b36de44ccbaab2ee92fd55f382f7ac -DIST github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.zip 3712 BLAKE2B f4f79741bb83862583f51f2ac5e80181eb0e9c2a4578df32f7e24eb98f4f548b99333e0e6a377e03ef701057b01e852e6b710ab885b65170c861bef556863da4 SHA512 e16bd414c1df566a12944e4a99ebd84d2103f0cb3bf8ec312e3de400f20b3eae27845db50672801c10474dbf1dc61d0c2e16e5dcd3c4447681c0b77f9114a411 DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.mod 30 BLAKE2B 897b4bb38b2b17c707587cbe576d0624b6f98c244c7da90bf27df097df3d15ac148ebf961e6376193c80b027df6334832649841729c4dd05e830ea8fc689cf29 SHA512 0853c35fdf0d770d9f85b78d3eb3069d0ce993064c9b2889c97b14d3b4a07dfcece550cd833009e8525b36f62eb407f10fe91c923749606bfde5f7f64fdd5c30 -DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.1.zip 10732 BLAKE2B 349f33d012d7a9c7461a464434f5436df7142a7db835ad67b40c2a5c8f3b2dc41b1f7da014ebbb5aa4a0aa757494a1f8e2f8c55cdf7b9f15e9de7daf9a863e72 SHA512 2af385eefebd7c16e3f21f9ca49e629c017290a01a97febdf79a57bccf5a013ab5e2c85bbfa0b80abb8a44872cf0422c1016b3163de631ea3d5137471c2337d2 DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.mod 39 BLAKE2B 8a83281a278e4d22086a6256c032905ab2c93f46393d45d411df2b5b958fecc2744b12bc4adc73bf4d6f7d36e79733c6bb11ab61aee167d6acb4840c66074aff SHA512 aa42664c464e5f1bd00fa5038e6128817d3bfdf60d41b8c3f6d2e7c516f5680591d757bdbfbc1618166aec56136f1831437c94f4d2e61816ac1266672c3fe8af DIST github.com%2Fipfs%2Fbbloom%2F@v%2Fv0.0.4.zip 10972 BLAKE2B a1425d0b6361ab463100befc84538020127cf8bb77fb593b21b8825687a7ccb49eb4e3548aa9a9c17dade9f3fddbfe165f53ee3cf5a5d3ccb6ef1856a3aeb1c3 SHA512 41f60088c4d51ef6ec71cb3c2f1a13cf58e1709005a67e97a6ce84b468b9b23a27d013e45a412d02625b36b51794aee4510be8dfc65bd7b9230f7e70620e5edf -DIST github.com%2Fipfs%2Fdir-index-html%2F@v%2Fv1.0.3.mod 38 BLAKE2B 92bb6a7e67afd8076b26485c588d42f3a5e60fbad4f68cc098b4897b27f6371ffd32dca55be73ecaae7d9c15ddbc58efb427206e4a2e053ad8b364de9d62619b SHA512 649f600eaa2d298ba1ed51a20d2952433e1e44390e0724ffe552fd3d3257fc0285f0b414ad7e55cc2d779911dfae405c0018fad3611ded6e58e4e56a36f9bb4e -DIST github.com%2Fipfs%2Fdir-index-html%2F@v%2Fv1.0.3.zip 152362 BLAKE2B 1678ec770733ae79e5824d5581b6654e1019e3087c141cf487043511965299f08e2d1ff292a82db076d7c5a21d6a26c5fd2695d4641aac45b1e5583968614a9b SHA512 2f70d02ad883a0cfa0340b835cc944a47f0c003f082d5915ff5caae59c04f962a7fc54a637efb7c14720828701c631cdd998d6dbd8ce3190a275960c65000c27 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.mod 1283 BLAKE2B bd79ac047ac9f952d5d25b330565f4ff1da9c2b322651dad789d322c9d4f89239fbc636ae28ce8bce2509dac7cee5ce453165f3c6b491d4ec617e92107e3584c SHA512 65173694276f58fa788057a52e674895ed1611ca0f501d7ae8cd0edbe4c9fd3f89f2b4bfaf9e963c06324cefbec0e690a8059edace3d6bbd30268ecfee2f11d6 -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.3.zip 105627 BLAKE2B e491371b38044f0eef7d0f73c620d0a5f384e8cfa707d79e4110438ee6c1016088056fff69713efb9636944356c47a79d1072454c80521a9afbc5cb33bb0265a SHA512 061478628223480e61e6370b676d43c6a2a02dc80fbba4c5e66610017c4a885c925277f1314a7326cdf45538bc0766a502130b5cc1c963120fd9e72dcc17d1fc -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.8-0.20200117195305-e37498cf10d6.mod 1807 BLAKE2B b513ec110be2fc86b968e8c4756fb8350cb19c448011df6a8567276b215cf783a2f975d1d7df91b3f03cb2a739e9dd7c671ee85f05c0d39c8ce8c92857d9fda5 SHA512 ef532571862e748bd69364a56e0b32f5687ae77c64c04b5ca9850a98859686adc83a5875878ecacaf233fdd0968cc49c83b53f618f1cb9184e93f4a2a6fb7e95 -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.8-0.20200117195305-e37498cf10d6.zip 110270 BLAKE2B ecdf930cd745e1c64bded00ba13f8f19981fe3a630c42dd5165f26bd83ae579a18b17126f2310ec063667eb54125398704a5c490e3b626593b380f2043162994 SHA512 9ee7245af36f09125d8c1d331a94669d183dc2922767b285b192f386b200fd06a3b423ca0a4ca386148cbf7f5baab29ae4cdd5fc242dc0d8c61435c780509718 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.0.9.mod 2199 BLAKE2B fe20b6b3344137f1a1f852fa494f17a213754aac450ce03d801a4f410ffee929eef593db52138a666f645d90add930001310f16c2d8359383004524a67befe6a SHA512 c20db38ac2fd0f4c3b55be87f2886066e2490d519bf174c37183950c9a8a162c22caac294592ab93fb654362cc148a70ee8c8dddd157affeb490193be27f0d79 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.0.mod 1435 BLAKE2B a216e99998042b443055d1e3de0ff85ce4692878d4930d4f67b3acb903c1ff4edb2a53b13a22137af179fcb316cd080dee91ff1a26a84d5ab5ae2669195781b3 SHA512 edbe93e6a81ddbd0ab3ccc81daa9fb78edd563346fdd14fd867d15750bf3ff8da9601490aef3e7ca2c4d73aaa9b56613d110404581b7e4056f764f8ed587bd73 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.2.mod 1585 BLAKE2B fe55ddcf7d388596d1d24c0e98941b4741944bd7f284a4cff7b7579d72843543381bec018aab6ea0ec2b92bdc647799c465dfc0651245ad5be3b976965956ec0 SHA512 a55775b242a59f359906638eee4faaaaf5e9377908cdabea52ea2723300eca1fa04e62cf92cef1d4af59551596c47217b747000ee2f3fc45a621731d63abc291 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.3.mod 1585 BLAKE2B e6719a09214b6d908e1e6bc133fa79c8084f6f727c2cd4ae65629bb19ea37a35516cbf0ebe7bf47a94078012033ea6ff724b57e7bc6006df36bb8682ddbda765 SHA512 bca6921d95f082f5cd043db39ed74d557bb20a2e1fa20ca7d4b8652537a6c6e497be0fabbdea1f35bf691a2fdbd2c2aacff4900d2ecf38696a87aa51ca6afe63 DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.1.8.mod 1614 BLAKE2B d9db3bf4a67d0be13bfa612658baa0b17e857e97cfc235d5aac79e6aa69459f02d8a75e416b6733df762596c3dcd4c3949482207ad628edfe5e4e0ccbc2245cd SHA512 a1cdf9f18b8b85fa42fbc66361efc3e91a43465f217a8492a19b227a825a8e5f1969707cd16ba60ae6025794e0feeafe477b3e3d5ce0610ef7d61e60083bd8bf -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.13.mod 1154 BLAKE2B 4837ffe51797b39830f4f6b2b3a3d6bbb2df4a0cf8a6823015f75659a2e20beb1d046d2e958b68c770f8067ec3fabece6e76351c1ef3af55194996e5326ea4ee SHA512 b5c33d465c4905297fe023d2e6d42805a8dc5dc5d6a2965f9b5f683e3d0d841124239187bb121fa7cce61ef240009279c97bebdd707f84e62c866f79a8898864 -DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.13.zip 263115 BLAKE2B 5003ed92839ef03a840e7058ac2b05944691fb70dd17ea1e8b526f76b48f1ea0c953a11f6e503e7ac9ef0dbcf34cc9d93dc7b35b09db4fa5335999b4d4fc3619 SHA512 a1e7a58bea4edc89edb9c97ec3e3b20c18dfd7d5ea764fed09c5ad549677bee344acc203afbcdee754b1ada68523c1e314342fb0fd9e96efc05752f92cb19e11 +DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.20.mod 1154 BLAKE2B 7784dc60f64dbd28dcd6f4b525a9d6352c40b9738d5e854184a5748be55707472064f7b6e008aa95d002bf47a8e52622fc0b7a3af90280d95d8bcabcc19cac78 SHA512 f18193f339f7bcfaa5c252009fc549a1203cbbb1a3f29e51209d38b369774f15e4947faa362b0ce17934a457eb54922bf6af17a28eac3332ca1902bf27883df8 +DIST github.com%2Fipfs%2Fgo-bitswap%2F@v%2Fv0.2.20.zip 274471 BLAKE2B 1a6e4d302428a091db58ef1556796be259dae361e37841ebccab5707c97a91d451ac35bbad69bb6c3265104a90967dabf82776574d8a52e01a0ce67411c0eeb3 SHA512 f4d2af73de09bc90f1944d22af5b6867d1f9a1b38680dfccbee334972fee70dc6b275063ec68fa2589f23e2984f6704519459d94b0bb36d47e2ca46872d3df60 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.1.mod 39 BLAKE2B 715142a153f0ea8823ae09f4417506d5cd13b461f6ea59adb42579028a338e874a131eb0eece8807a9b3c59ec98d74e8b8c214144178a19bea583581fdf0c8c8 SHA512 d8e46c1deaa00f1b7690aae63dd3710c0ae9fd407e4a24bc035eacbe677890bbd5bba8f64634d7ee9a47bae96392f2406ac99de8a1e19b8710907f5408f802f6 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.mod 165 BLAKE2B 6ee87d24f36bba4bfe57e76f3a934a8297797739bfc01c5f89f70acff3b508cc0b20962f1d56ad6f7ae9ccbb219968ce8da79b07f918018244b87b9c2e164d93 SHA512 685db8e6b5880dce0470fe327c2f296b153fc9294cc9a91f5d37b7dcde57d17f237e65156f4af0ff6bcbe8ba04452453cfafcfbd79a6d60c983f4ae628593b55 DIST github.com%2Fipfs%2Fgo-block-format%2F@v%2Fv0.0.2.zip 7084 BLAKE2B b3358f2867ce1d1292bbde743c9274a4ec11fd534b3e35a36a0c34b77c5c16360c12f8db014ac788df8659f1bd9be093a6f06582187558791bb62105eceabb98 SHA512 1f476440f490df00ce69247c5b545993cb81ab555007075544f0ec2766c5cde98488cc915999b7c964ecbf36c9cf5e5c768c871ea3131deb8750e4ea4253e7a2 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.mod 634 BLAKE2B 4c339207e3399dd94b24421d348b4d8407452847dbdd13ea74f0e10b6aa05ad10068b29514174cc09ebb81da9a96dfb216a28f455593ea012ebd288493b082da SHA512 4ec55f751698136caa647d2df3d085fbe8673febd9a4fe400b60691a9ea0088047c2c772a0ad7fa1486c234debe7ea1e6ed45be165f573a928c64006509323a0 -DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.3.zip 21284 BLAKE2B 728f9cdb1eeed666f74adc0835ee977190e8218f394a76cf804cc7b2f1706816627f885567d61ec44348a672255d735eeb25684c1e632ef3658629d180164a58 SHA512 08543599aaffbfd49c053d0ceb618fb583fe3d45aa64f9144161d6f877cc412ff788afcd64130d59d73fca22413697056acdda7c581c9fdc2248806afdf4e69d DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.0.7.mod 684 BLAKE2B c3b19953c89435e4367a62ae041ffb763b5e5d0e91eac1dd3c71a6f45b4a8fe26d12a45b6b8c882c121a19298c802ef04ca250b0d31fcea946027b4d5e991bd9 SHA512 e6a3ac8f2283bbf44d0521e8f452557f3156a3100d77851d54468f9155252377f46a5322604f7728ea78768c795b222543286f65646db93937f91c2ddc2c2760 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.0.mod 563 BLAKE2B 9104c7643c55f2c27d92d82a76b56cd262df04b4f7d9edc3876f297415fc5aa3398043bb48d1b1f244539aec097ba0eaac9bd677709733102f0e3aa3983078a9 SHA512 a4dad0c089d1bc79ebd2fb34b6d9d2c43ee8a3e40b21cbb4012c6fa859458230edae104890172d6b81fa9dec584f21c70640324f859f27619d0694363e8285cf DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.1.mod 563 BLAKE2B d75f3d326cde9ba74bf1a2c71a3584b5d3f31281677d58bee5158c3e44ecfb0b7c3d75ee723a2829d6325929d29c3002b2e65883dd8cca178a7d4f25315516ee SHA512 8c0d65adf05fd2cfc26f5a3c87e781e71c9c50c3789c303cf304598bcbc53fd1168b4bf29b147e0119a227f757d2e91c52daca40a8a4b78416f6fa1ab3a94bc5 @@ -288,23 +283,21 @@ DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.2.zip 22519 BLAKE2B e5776d0 DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.mod 572 BLAKE2B 4bbc490443968d82a85206b7a8ec5f77976aa40c2f4103c5e57d69bab1f4a867640c0bb619d4faf672bb6d5fb2ace40a1fdda6f05534dfe0ca17fa04b3905a4e SHA512 e3582b92ad5c316e47ffe1fe1c269924ecfbdb039d043957acb90993d6db11b6145d2db9f01afcc2677458c2525fb3919d7b78ce806c1b11f552275b33d63cce DIST github.com%2Fipfs%2Fgo-blockservice%2F@v%2Fv0.1.3.zip 23532 BLAKE2B 7efa20beb388756060b9bd06af9b2a87a4b8c1d44db1c1b3f45766f54f2b3ba6634711ca8a4f44473952419e6c0de593a9735ac3a09d085dc81d77528db76f86 SHA512 5a8064a735de15e774a6373b286872a2fe625b927bd64ea2f16c0861bd29bc70a0536b6fe1a971dbcb203ee59968aa0ca3c0a475e5603b8793929bd1b6211e2a DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 -DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.1.zip 31178 BLAKE2B 7c1e0198971b0f6591c1bfa11f7eb563970e9c4465f5535d2928a5e32c669afd12c0a5ea3ef66f4a9d2c06f6326a2aa0f30213a623104db9c4cb9dfd1204c88b SHA512 7b3be3d8ffe87805f553a996165ffcfda2c0c19bdc303746569a85af43a8e43941c90b90c33ef2fccd6d05871557c6a438c1f9df1a7e882e9e3119fedeac54b7 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 -DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.2.zip 31184 BLAKE2B f4ccc62b4735aad233b9ea26ec7bb0d45114d10a5dd3cbcdba97a0689acf7c2f379b8fc70400d5b61bfb7a8b7a8da80af484b47453ac7cbcdcb1b235eb6d7d16 SHA512 01eb692707e0640ec6b10eca1dce5c8468cb2383367b495e51ebbbc306344b0ad6a2691f9078b647c9dec48722b3040d5271f101108078fc36db3a91a0e031d8 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.mod 133 BLAKE2B b8b27151ade02e67e7f196c28365347ef42f8aa5af4d0b51c1e079eabf3f5e79da0acc79af68de123d1adf55c4b10b048695a53b54f03b242b162baa607ae34b SHA512 7ae26370283c2e8aba4990adabb568fcb0e033b93f1d2e167894478d36746c7a5a7598ae941eb1e21571a35f15830d6fd6e06825615902c839c561609f3e7522 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.3.zip 31259 BLAKE2B 10cdcae9545fce41c5e4fce8d5318363e09f735133b336f59ee3f558455c93fc37a18dd68f64cf0b95de4db75293d0afaf9607601aaa1e84b844ecd33da4491d SHA512 10a5dfd223859dfa21541e0ec12aee6853af96de309cb787bc8eed58b65bc4954e2874c65bec505617438a589aab055d4b29d7cc7ecb8f7a604632e5c428307d DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.mod 143 BLAKE2B 0cba4c104ec50ef86e4b1c3b2d11b439ad7c64df44d6438bfe63e5e8cfb6370e803aa8dcf070f6e7f5dfe47581bf403eaf4b13451edfd4acfba639b5f0a95985 SHA512 5a38a36afbb1f5a5686bcf10251dc10439ec660770b94df18f46506ca6ddeab81edcb7d23f1ada05a1d96efe3ed900fb685e371a935bf374653bef74137109c8 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.4.zip 32039 BLAKE2B 9e566de4c7265a0707f822870a1d2bbc5115ac0eb15cbdf2406f9907379dd1597f473823f30877f41fe32943dad6cbb453e58bcd25fa3cf650f35cf65a347da1 SHA512 b3a4364e9218f80e23c9e77d811410e2ebe1787f324fb63ea2f651f4b8f1a788417a2d212a50eff414d56c36ebae0a92ad383a6575a63a09671c37931c96d0f8 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.mod 185 BLAKE2B 172b8309e3e7566852a53169886f013d1590c8dbdd7827c4682dca00dc259c517833ed8a780d4497d9971b81487eb4673916e391991960ed6813079128062956 SHA512 c95da8328481f501081e8fe8ca6453b98bbe1f44cd70ab4546eb10e2841d1b4b0c2d82597ea7d634198bf387c2fa99f065b95ba5ecb095106655e96982b95248 DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.5.zip 32160 BLAKE2B 6e59f91c22d479ecf66b6882095ef7fb49f0f3f6f0a4c900091855b7babf3e37535933d06fe90a238d633851eaa3e1ccdcde159ece56af7666e2434a4a6554b5 SHA512 8a18ac2de2518c2b5d002a7966268ed696572d49eaae719b50cfbe8b836d2732d25107c555c3a7a2c120a5a0a37005b2b6e8eb770c24b426bb8c1b7cd3872212 +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.mod 185 BLAKE2B a21810603a1d1ae039b83bac6cef5a9f0ac437f5fae6ae1fd9fe562b64c7170513d2591f1c2cfd89a9fa93d00be0aed251b645e488506a41114a09a163b0c01a SHA512 debf6259e046be62daf1d947cb9b255ff3caa14f3bf47c0023f19a53a16a203f1937c5a541aaa7ddaff368e35649af2b61e043c20b0f416b0fc3f81ff167bbce +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.6.zip 34143 BLAKE2B 9ec847fd278e3a36a427f0bb8e06750b19e411baa7875e77850a4d80352cc82cef587edfc474a204cb28c37bf18f92b5e590254c3ed190ecd2519790157a2d68 SHA512 e82e839818556fa1c6d8fb5bc8e96d9d6a7f0535f3e4b78dd7cdad312938e75d8807c03b8ee0aeccb9da4a38641ac77726bd3c29b3ce412632f14fafc8cc469c +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.mod 185 BLAKE2B a21810603a1d1ae039b83bac6cef5a9f0ac437f5fae6ae1fd9fe562b64c7170513d2591f1c2cfd89a9fa93d00be0aed251b645e488506a41114a09a163b0c01a SHA512 debf6259e046be62daf1d947cb9b255ff3caa14f3bf47c0023f19a53a16a203f1937c5a541aaa7ddaff368e35649af2b61e043c20b0f416b0fc3f81ff167bbce +DIST github.com%2Fipfs%2Fgo-cid%2F@v%2Fv0.0.7.zip 34166 BLAKE2B b04f956631810964194d90b6de52cea357a87917b869cda9fef4cd5bf9cd05ab0e47712cbca0056d4572ccacb2b7b5ec9f869c03fa850cc1a732ab9d73d9a325 SHA512 81cb814bbff621da519cd8e64fd1af1214687f20bd5738464cf06e5747ebc5842224feba0ab0b2c424eea5fea1ba1ebf87f67f21c73c714b10ba78b99c953a93 DIST github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.mod 168 BLAKE2B f72342430cbb090a7bd4569724668d7b56ee9291c2732bb5ed7d1893404b19f65985318c6f53c06b8a26b8bae5c71692d2456fe99572aa1a83a473c3f38ce2d0 SHA512 ad683cfb6c9797f40b7f0e451ade6035c94c524794e82da5217a490f5c0034fc7e1fb3904c409f2b9e9c8d80eea3a795ff0b3bb2dfe1a56cb9763a6b6a427d5a DIST github.com%2Fipfs%2Fgo-cidutil%2F@v%2Fv0.0.2.zip 13245 BLAKE2B 39094105b22d996c065e6877fb524b30340e1763159cc90b9b212ba2e6d7ef64e9b96a50f9449d4b21c812626fc9e5c5cde166ae94c90120354921d7cc3fdf03 SHA512 3c88e3931916418c4496bc51a2dca24d022cfa02769a7d3c5df475342e6e00b4f564c607a04419b275fed5a5de1070fd6c294b024ed7ecd01d42b1604070157e DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.mod 379 BLAKE2B 68262e69237ffd3e3fc3403384f5af39bca79ce338bb06eb17e1c147e140d5b2dc05a1edd0873eca37b25d36d52f9af56d1c74dd1e5c0826109c64f4ef28ca98 SHA512 1b705f3964ebec3b88c0b12c91eb6d577af2c09c600116439cdf2d1933178738827e0e73dbaaec844c786817415a4c3707ffd5a59ed361c232e563ad58472d65 -DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.1.zip 50886 BLAKE2B ddf0e352d9584e1364c86155bb84bd6f95d5c8cecfe0cacc117328daa4095d71b69e9e4bb265de869739af3232b1b08e3431647b52ce27bda0a3df95883726fe SHA512 fa63828a2e202e3ece6166198216c5ad2e1204ec1a2cf523e5272585031dea0d47cec36d38e8ac438898f7263554deb1ae07201603b6e59c506442657a39561c -DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.3.mod 379 BLAKE2B 68262e69237ffd3e3fc3403384f5af39bca79ce338bb06eb17e1c147e140d5b2dc05a1edd0873eca37b25d36d52f9af56d1c74dd1e5c0826109c64f4ef28ca98 SHA512 1b705f3964ebec3b88c0b12c91eb6d577af2c09c600116439cdf2d1933178738827e0e73dbaaec844c786817415a4c3707ffd5a59ed361c232e563ad58472d65 -DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.3.zip 52164 BLAKE2B 622bc7815a53a9ad3445fcc1ef738a865faabe9de65977f690252e32a5013a5ad4bdca13b61d155fb7dd96697dc95c33dd966c1680317b993e1607e53a1bf082 SHA512 83d3a9774523704a673b8ddd79fd46d9fb9a1206005e5f238b31aa657674d91c4c2d0bc050b730877c196b2b7b95554071af1e0a4115735863d8c93ab18bc756 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.mod 379 BLAKE2B 68262e69237ffd3e3fc3403384f5af39bca79ce338bb06eb17e1c147e140d5b2dc05a1edd0873eca37b25d36d52f9af56d1c74dd1e5c0826109c64f4ef28ca98 SHA512 1b705f3964ebec3b88c0b12c91eb6d577af2c09c600116439cdf2d1933178738827e0e73dbaaec844c786817415a4c3707ffd5a59ed361c232e563ad58472d65 -DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.0.5.zip 54276 BLAKE2B 672151e3010653fc883e803eaff24edc9234bb7f818e4103fd3099fc26cc8cb2035e7ddf2dcac945ff544cb4686dc127f076f69f128727cc34bed74bbdec0951 SHA512 20cb74f0152f490375f7a77d340ecc9612602900693e05ab306ec1d24186a5164f7bdc6846bb7b1309578315dde475931a163a348fed85586a1c07837329bd42 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.mod 379 BLAKE2B 68262e69237ffd3e3fc3403384f5af39bca79ce338bb06eb17e1c147e140d5b2dc05a1edd0873eca37b25d36d52f9af56d1c74dd1e5c0826109c64f4ef28ca98 SHA512 1b705f3964ebec3b88c0b12c91eb6d577af2c09c600116439cdf2d1933178738827e0e73dbaaec844c786817415a4c3707ffd5a59ed361c232e563ad58472d65 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.0.zip 54181 BLAKE2B cde361110611435335aa96cf4f156fa7cc95234ae36b7d0db709715b109ba60d7736596b1c81d5a9f779b715db542968aaeba438a2795abfdf1639830efeead2 SHA512 bde4f54b6e6f0395706e7052e8ec531518e7642ea2e249b95ce2e24eaef944daad41484f86c6873fcacf55af7a326e237959f5826eff4eedc22a716694277da7 DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.1.1.mod 445 BLAKE2B 0a1b11c73bea757e14cb27cc7862a22fc40578a91cbbe41087ff79e1a0706839fea9208e384795b8f1aee5467605f8c23722dbc88e325ab1d0cccc5a92fc60be SHA512 85273c82896cc0fdaaf9d6d4c64ec199f907720a7f9c903b147fde3199b0b4d189849f6abe392f5020e8d0da1e84a4847912c008eadc55033017d0c4058b7315 @@ -316,10 +309,11 @@ DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.0.mod 371 BLAKE2B 623b36e1a86f DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.1.mod 371 BLAKE2B 623b36e1a86f025a1a9492769f3848a7f0c929ade5543d8078d23aecaf781500f182dc35fa439fa297a6cb1732eda10977cb1236ac95651a54a8286ad9e76947 SHA512 adaca7f52bb8f22c7efe401f615ad43ba46a4058f799e2bdeb1a94f2c4989c8343f8e34f4ee4b2eb40bdf0e95e28a6e99113844f32f7c1453fd91c4dca8d42aa DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.mod 371 BLAKE2B 623b36e1a86f025a1a9492769f3848a7f0c929ade5543d8078d23aecaf781500f182dc35fa439fa297a6cb1732eda10977cb1236ac95651a54a8286ad9e76947 SHA512 adaca7f52bb8f22c7efe401f615ad43ba46a4058f799e2bdeb1a94f2c4989c8343f8e34f4ee4b2eb40bdf0e95e28a6e99113844f32f7c1453fd91c4dca8d42aa DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.4.zip 59161 BLAKE2B 02645e994a42bc5f7db8778c0cc176fc299b8ececb6ea0b50671f8777fb8e20d9e67445645776289fb46f54b563c3210783bb0a100ae942506310059e81ac85f SHA512 6b35dd7248e3d8cc5056d411cf85e2c058d1a34f766841451b67db1c754e95bbe85bdf5c7253f278512119504b297dd4ecedc1f15913847e2feefa3ee593ae90 +DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.mod 372 BLAKE2B 2bbdb5d2e35edfab6071bbb05e5d011a523fcc56d79c916365b2c15ff0e39ddebeb739d092e46aba9352d240ec3fc0c22fdf8b94067db60bd3505f469c95927d SHA512 f2396f952bbfab37680f7241e2e398313b219c7f08aff88abff2cda739d808a0b9bf7d392cc1e95ca1f20a6c3a9d1a1f66d7db08e7dabf2defe02d4b0b12c001 +DIST github.com%2Fipfs%2Fgo-datastore%2F@v%2Fv0.4.5.zip 63291 BLAKE2B e1bdd03f9b20df5e41a60ae7650514a892210e4fa87c2cb5c9d17fbcaf019aa4fe01e88ac08344b64e6a16d015d6d0b5f34dd6ff0f386e56d65db4858bfd9c7a SHA512 af2286ba9a5816746e888e129a293af4b60db7c1341b66e98a12b3b707a44ba9f24f1a47cefaeea80777a5ca692d4b364ef3df0f2ca088a7c47ec4177be9d885 DIST github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.mod 38 BLAKE2B a901e8e26aa87a8c6725cfd14922ce4db42df82498b6fb22a32ac115e376564caab0e7acf11796101ee2101292ece74be300590470c390ec9ddd0340d926aac9 SHA512 b91b0241071953445b7c4bda376d2b45ae73d82c590764a0220074bdcd4d0b53fd73a9596eb07ed1fde77b7d9303f4b61db984c1abd2697d49b72077d4e49fd7 DIST github.com%2Fipfs%2Fgo-detect-race%2F@v%2Fv0.0.1.zip 3910 BLAKE2B e357173dfa2fd7c403775ceab418a4ae4f266e9aeca1906062e4ad6d4840995a547811f34fbba1af0d96c8e4b2055f0ffbfc57ce540d3bc2919056ee97cadfdf SHA512 d4aa6117e8d0f504d2dc4226132d12608969924ea845acb79f62bb1635bd232eced5e8e1411f2e10c17dc3ebb64f816be1728dd703e1279852868752bb9a5bd5 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.mod 580 BLAKE2B 8c38a160b20578a2eac31549d6b443615943381b8e4b015350677602c49b1df9ed3a6e41653b29f47b65ac7e557e38135e3332339d9e5ee169b22fa62c98b3a9 SHA512 e2b01a8c26bf7baa9c966172396ae19eae6ac0ed7bcea6b446da256c33935cdf3baa2aa86df16a5bd4aa54e0d6163e62eae6749872cd0bac1810c3231a348137 -DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.2.zip 13881 BLAKE2B 672fd3565aa29fc1c52d3798b476e3ae8edd44596996d2bc064e48ee235e8761f84791bf066e6b68c83ba0312c8080fe6d90a9868b205206737122e540e4217e SHA512 7dc65fc2db70f58f54f5e4490ba6c016aac07b50c06153cf0d307b05b64da0e6ec6ef091b2716ce50a1c1768fa3b7184f8f873851f578b7daef9e935bf50aa8c DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.mod 221 BLAKE2B 4f96ab71e8c0360ec923dd6bacf108857cdefdb711c84a8300a62c90d0e2e76872210ad5da45394d5aad44316e3ef638b73c5b41d410c83964266f9c71c7c3fa SHA512 6609a9ea360e5fdf9d51b225312eff68405a358682a943534b3ae51ec8237c6bc4b1d547e813dcce8a49f3b7322e744c1de1fcdf525b3499b53e4aefc5101971 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.5.zip 15441 BLAKE2B 0651a0e1ea66ef0fc50f9df1f735a410ea0b596556aaec7d515a7b6a5efc85a45698fc322fabdb3d0f3ec83794e93258a4c2d2fcbf4db1d6c27ebe9fc1f12031 SHA512 829278096bb62f55ea83afed345e8aa2316196d46a80ecc5f5405af62413aba59b9e8fdc5e5d59851c1758f5c308c16b17403d743bd26d364cbf78306d570570 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.0.7.mod 226 BLAKE2B 5a15718354c040d9658e23c403cb330d62ac9975f2050025fdc573dba42b28ae3dc46469090247d5ae136bb0d5dcaa60a3bfe63ce0b3147b33021b45dd1cc25f SHA512 4da6c0d64afd39ad9a930bed77289487a57abeaa9d97906decb8c2599bd658bae72141f78972cf545a2cde2999bc46ed3bbcd7ebbd1fc02e5d95510d33288bd9 @@ -330,36 +324,24 @@ DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.mod 198 BLAKE2B 39086c7747bb DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.3.zip 16596 BLAKE2B 0e058ce09b70f46b4fe1eb1ed092ce9b102dd95a6d87cc10229e7219e9e24368d3ef915f7e89a44ed59c5b5389e3bb1a9760ba97c0c93f273d9c93e2d8c1b894 SHA512 5e29431eede0a30e2a97514fab2a1081053cab6a0dd0f7beca7663a2beace39eb4c886a05a283a620e235e5c6707eadb786912f27bb78ee1e023d70c8c7f6d27 DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.mod 198 BLAKE2B 39086c7747bb89ba2d419812c176b380d5d250718eef888b4248bbd3891d9360fc8d6a4ce97507e84c5d704fdfc36add04e38c4fb30d5c5d0dddaabee08525f5 SHA512 0bb1bf1406b13790b7188a371c4f9df6f7c083d5fa2077825b8f6e1a87e7a8a26fda5d29b039896af7df4b010b80de9fbe95323bea8e79851299bb938e10267c DIST github.com%2Fipfs%2Fgo-ds-badger%2F@v%2Fv0.2.4.zip 16591 BLAKE2B fec155bbc40d5e0417dd57f30839e00e1f7ace4048a4ddd9405c3fd801c614a723ad4d11563dd2360ca338811be27679962b1e5a35aa3d79bc423d45c39bb8fb SHA512 5c2f2cb16c1111ce0ee665e36868b43fa8b187b29d15d5dfc54c1062758ecab20e17c0862db2e49794f0efdbe8a1bbcb65861f8ad705acf9d4850b48494abafc -DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.0.2.mod 181 BLAKE2B bc39dba34f2d0d1f3c62cc7ac501bc1501843e5e641f42fc6b2fd7b188bc13fee76756aa9ff56c1082b104ab06e03c47c444523488695667ac09a0769ec3e718 SHA512 ce384836c854b7a08821ab165faf0e1c670554956aa7555f97204b59a393c880162d27c01582a0732c4c85fff4da8d6b89ebf2f6be6683f97ea8dfe709c55e56 -DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.0.2.zip 27844 BLAKE2B b308b169b972439994c25b82cdb37bec1bbe24695269a620627a1979c2a771601ee111b0fb8ba7c365cce5254f4b798c4b7ab74f04a3ed01e8a73c8f403906c5 SHA512 37df7288d8e5a252757f423f98cb8c954713279f37c3fffdeadaf2218cd1b95df134fbb4e7226dc5ddbb799ee226c1fdd89e22531ede45161baa101d8a6e45bd -DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.4.mod 235 BLAKE2B 6ed1ed2b206e1d3f1d7a10407eeff0acdb66f56b772ce4e225b185d897cd9abe8c5e5d7cadfaf89f72b9850239f2daa5a763789bd5f29b09f45ccb74d9eee3ce SHA512 155c3ec950f15f0e49380a3d06fa24d1ef5f684b5563eb2c4e9e8a35bdbbf0d8fd41750bd6d671ac6c06eeb3c470fe639e3d646523d2149d72513e29c8a07ed5 -DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.4.zip 32003 BLAKE2B 9af32bff4c4b588469400c3866d8962a77b7726e0cc09c04e1798f13839bc6fdeb35c25b9a21a5be9d15aeddf05956f93e3bb861f5ed875501db1acc4547bbb4 SHA512 5dfc20f9aadeb97857dd8090081b7072957080e81a6d776d00afa1a8206b6122404e866e07c555e4a145a27e4994200966fb28d1f7528cdecb78341cada87915 +DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.mod 235 BLAKE2B 6ed1ed2b206e1d3f1d7a10407eeff0acdb66f56b772ce4e225b185d897cd9abe8c5e5d7cadfaf89f72b9850239f2daa5a763789bd5f29b09f45ccb74d9eee3ce SHA512 155c3ec950f15f0e49380a3d06fa24d1ef5f684b5563eb2c4e9e8a35bdbbf0d8fd41750bd6d671ac6c06eeb3c470fe639e3d646523d2149d72513e29c8a07ed5 +DIST github.com%2Fipfs%2Fgo-ds-flatfs%2F@v%2Fv0.4.5.zip 35666 BLAKE2B e5cffe612424e2c4e53fb9a1b87a4ae82d6d2d202effaeb7bb55c98f3ff0815b4845bfe6debb666003dcba5ce89a8c1ecdc2c49164e1c8f8445f6d9f03634c5a SHA512 10e45b2583e02afcb26ac5e8f87956e4ad6fa5143b3e28a3068bd515fa90ce8e8874d62f610e4b3d34cfb63e8f373a6190e4a36a75b9e760f32a70e63e998791 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.mod 187 BLAKE2B 46a16d43de9b340db0e80690175b6014cbb348b4463ceb238951740089431a39c9370130361852a1a88279724307ed3e0e2b88bbae1df4c60344cac949f691c1 SHA512 0c17f027d3e00148d258d7b7df388dbe9914a7b1d592fff27f41fa28cbadecb81ece716743bec1e1ffe59f00cd8104fb9ef9b2d682f9e18a82c008c9a1b78195 -DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.1.zip 10686 BLAKE2B 3b6337a91c83865a5038fcacebcd6aead82533eb40a961bff05bc950a62657bb3142fabe6211c1e30b8f84f678d49f69a6fcc18326f9a13e3bff42a9fdfd23d2 SHA512 927c948da6bfe0cd590eafe4dc0253e9d50c3d2b0d1a56633a7ee6518084f9227d9eb1a0de61aa37ddc2c7cd6610e552f1cf1b29560f190743f716efd3721208 -DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.2.mod 123 BLAKE2B d900c32a237f8413a7f6d180f5b78a9ae90b7c044620ce292d4a635ebd69fec6b4c00b2e712b3adcf0b56fa601d136214ed0d713dde32d356c08cbaf0ac06db0 SHA512 c6d40dc9b839ef22360b52434fdf828aee97e55626e6b21c7090ee1e70797e2e96aa7014154fda4d3c904029c0c874b596cc2d99f79d38cb6f3397ebd5c01db0 -DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.0.2.zip 9676 BLAKE2B fe362680f086f4461d9516f8aaf10b334889675f16febaf71d048f96d18e055be35c09b83740edec42ed553d5505449317f0dc0f9214071fc487b7c51c07c45c SHA512 3705e5a8f781338f1045f789d7c1cf2ac3fad01754ec2ac4769bb370bc54ffcd1a1ec59b22dae124507903e010407a4431f119276bc70a0f070318cbc23ceaab DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.mod 123 BLAKE2B 2455c462d330379f3e1b404ccbd7d772a343d002c358903a20d7b4f52e2ede5d9f0e893f6d34a841354cdc6a77560fe9774635a4d2463da56f943b1c0c1b1c48 SHA512 32401cea39a0efc5578660ff1173137d6fdb7fc82d40baff20e469f9cd5354989d6a65d56bb3fa2a7e34129373346b6ff8ee1518e9c8e20081bf2f481b3e8716 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.1.0.zip 9568 BLAKE2B c68f641b4556d754140dfd1ec2823606e1b7c51b6afdebb71431c8359b7e4cd54ab8f489eebba86d902588bf27e35afac29af0610137f69110b5e762d0464f68 SHA512 c9c70b312993827c2fda07e25dd627019d3b1658453c21fc87f457a5bcb39c6f16b0909186d76e4abd09a816ef7cd9f0816e33075da6f1dd6ad95dca31f4e115 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.mod 132 BLAKE2B e0c3da80a578d8c7de5f39d20acf616c825823f62a1c9637ec3299c23c830103c6135e2c10fd0432b6974f5ca7b506a400d45814e5e214035fb3032192b6e41a SHA512 806a7040b1231d2a177e8d0fd78b3a176bf64e55781488536e7da91a69216509636989425ea679e5323d816b96208568218debfa4b62d4cedfaeb740095fd46b DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.1.zip 9384 BLAKE2B df0e8b3f63bf5cdbd93122a0d9d2f2bfc592b1621ae1fdc046b802c571af997d617586272d6fc5126e4de08201894e619b06ceb1cdab33b6bf894a9a1ce62b22 SHA512 39bf83e25523f4893e7ce1c99e0386698b088385136a2eea8cd02b05b45c4acfe26dc1963d28ca9c88e4f008d3e215175a41ece0ee092bbf398a061ae7c6dff1 DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.mod 132 BLAKE2B e0c3da80a578d8c7de5f39d20acf616c825823f62a1c9637ec3299c23c830103c6135e2c10fd0432b6974f5ca7b506a400d45814e5e214035fb3032192b6e41a SHA512 806a7040b1231d2a177e8d0fd78b3a176bf64e55781488536e7da91a69216509636989425ea679e5323d816b96208568218debfa4b62d4cedfaeb740095fd46b DIST github.com%2Fipfs%2Fgo-ds-leveldb%2F@v%2Fv0.4.2.zip 9716 BLAKE2B 23db952f83ad1245a86a51820109ea542017e3ca07bb62db7cb377795ecc3d71ce2546bf2a49f321fdb3f67f002a7fdc0dd8aded121f7467062db4216f31cae8 SHA512 412a8aa9c1a95b59864ba93c232097c98e2714dbf691db44cb83f83a684dc96336b2ac956d9b5b451f8193a7ef5d316f2efbe403ea24c5d457531d47904cf95e -DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.0.1.mod 132 BLAKE2B 4eedd00350b1ba56e123272ef329c0bf9fc79a0a74096f5815eb528ca49d0c7063e60500f8632ed60782ad1b7151ce33e838fac889f83205540dfc1d0c27e239 SHA512 d4042cfa37e61795c0fa2907d347069525e7ea1f76f6596c17829202c371ba412f714712e5548e7ecb320df3265561221cd20dc0b189ac64891811d77e2216e9 -DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.0.1.zip 6212 BLAKE2B ff33a421d8aea7660358db40ec1fdd2eb621d73b6f704293f842f5988a80ccd821c4437ae58bbd967de74a1b3c8172dbc82ec80d698ea9a41dbee82077274524 SHA512 0bbc780943f0109f328c1555926cec131116109deaaf0f7cf30365d2dc833eca9bf35f79e4d0371f9bba2b751106bad0210e72ee09aa118edf6afb09f3f602e7 DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.mod 141 BLAKE2B af90d04a9cbd0fca5282c46d91899474dbfafd7acf1447d7d3cbe135eb52a0afd8d138c6e411fb25de04946ac5c5457ee3122d29ffd0c12bc66f9322605e82bf SHA512 f4e1db496f757d20be999cdbe0d35ecd1dfce7d81d41f7abd6f621bd906270b632e7f6810f29bc972726f4bbf110fee8b38604400183e5d30ffc13b3570219a0 DIST github.com%2Fipfs%2Fgo-ds-measure%2F@v%2Fv0.1.0.zip 5842 BLAKE2B 8ed7451e63600b0f89cfa041f9f3e2a3a2abe70a8e9f3d41e08c20a268017a846c35db69da05b1f1d3a318b8c2388f0415d0fc13efaf670ca4f56317457ea75f SHA512 6275e9fe1e6d288763ea312b374669c8b0339ef2d450fd59da2bf276544be2c82a4b762c6492dc5a3b75e18574256840b5401a76743223cc1a02de142957093b DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.mod 390 BLAKE2B 6a5eea505ca2e1721a8d01ba02eba35904ccb2234bcbb04e541d6e20d2db057fcefcf36f038585fc43a159fb9471fbd12421828ce83c5328e50d6e1f90c7534f SHA512 e561e3690ccfbb07244311796a3fa158bbcd5cf9ef72924fbd3c9ff08ea8589e91da725c3b1fee9b397c15e615a3ba74dd58ef0f536a66cc55cfc2d2e231ab6b DIST github.com%2Fipfs%2Fgo-filestore%2F@v%2Fv0.0.3.zip 30181 BLAKE2B 0567c9ca5e1173ce978f8cb7814fda1bdb34cc7a1f2426329c107cb052755ee5cc23ea127124e163b2ecb551b83378b694178517580610cbfbfd93a091fec944 SHA512 b5ddfd4ad3ba31da1e9dd15bba715cd106ab8e6e91bfbde47ddf02c237fcca9f709fda9cd5202b86e2e01fe60654e72ff275a295f008e4aab3d149b033e42cdc -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.1.mod 159 BLAKE2B 1eef2d30df82de8a57360f064987c3708fadfd91a67bf612240b1d3a0c6efb8da1d5b918d85f47157ec035b32224308b2eccbfe24b8e9c10d9f82b6f07dae175 SHA512 0f6ee26f0afc355a2c6b112ebc788df403e24f3081f5337515a16700d2d05ffb8a8df09bcdfbc1244cf3c7a962005a8f8cd20b2920d5a8e556708a94fa0f9a8b -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.1.zip 7763 BLAKE2B d1dabbaf2ea477d44cd4b7bc2b7def36fc47df07ebf530092dd55c8af14061fd53713e932c2bcda0f8f170b549f1eabff5d0d98d1b6e4381289a285d950b1a6a SHA512 283c4f19e7b49fdc46fb490c5be06ec508b8ff4b342ae7f6adeb1f661d0af5f7077a7e28eaa46e0369b25ac72b7151787e8034a8dfaac03e4f54eab10b6ba299 -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.4.mod 225 BLAKE2B 8dc666cff5a5a306ecf9365fa22dc39bb7ea0571346311c7c232919d83f6c133e303184c0e47af83807eb41defe4e73baeb69285fd531788ed8c335d6bfa9678 SHA512 5c04e9e195b5e21395eea08693d6a0913004d70e05c6397aed270a67f8002ea27157e787555f3e1c114c0f03ee0d85b96f26bbaa48c710cd77e06d04f25d7be7 -DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.4.zip 7801 BLAKE2B a20a1d622da7a2e284578c09159f91f464f330a250fa9e86b33075121a1e64ed199b12659e19cc02e78b84af65dd0e000cdeebde5d6e9a314ba4cf6954fc0ca5 SHA512 e77c03f81f48622f691b0e72be41d67d66c60e60666f076769a9d0de94d5d23828eafb9ffe354a06fb9ffdd4641c34fee8cacb17a1e4efd35c069aa2b73c4688 -DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.0.5.mod 1726 BLAKE2B 15d5bf26f434976057c9f65a7e9d89df7030de3b6f8a9e60f8d64f198e5498a7bd2ec4c2589f89c69c23f84677d4d5b264aee2c63d50b87b2c7c1da2c09cdb80 SHA512 eb7ee7398d6f22a0050410f024c2e1c7f781f59d3ace68209469cb7fe1848403f041887bc1f0da88de19c5f4b2105cd02d4d68ef954bdf8048cc9d79411bd431 -DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.0.5.zip 591981 BLAKE2B cb6e57158cc05e4873edc4c9db6675b0c74865a682eab791be849fda2cc0cefdb681c9fec1c04e5d1a10177a6aff085cfed8854df457c81e24e6e543bd59e30c SHA512 027e815e067f62b851ba77b7d168358bb31191e22d7c5329c5b38300ac7d20a4cc0a6547c342b90d0779039d8c04ee1ee4b1d4162bf2ec27275c274c49b0e773 -DIST github.com%2Fipfs%2Fgo-ipfs-addr%2F@v%2Fv0.0.1.mod 166 BLAKE2B d9d9efb8e15c3273460efd1eaf9bb3628d565fce15bce131a5eac8837327991819aee6a7fbe119b3987af8a327997ad2b68236d4f74fc1aa2b2ef7fb28967aed SHA512 b75808eeccf7a6e0a3ba8ad92a2bbef5520ca2d0f51044f23de26017571da21615d9c49751e92eabd4f47a89c46b13ec2fde1e9746ca96a3c6b12ebe2ba220a2 -DIST github.com%2Fipfs%2Fgo-ipfs-addr%2F@v%2Fv0.0.1.zip 9760 BLAKE2B eb21c6cb8b21059a6db59422273e02fb66eca6a66c3ad376665cbd2fb5da11babc6d793adda11f174476262cc8861b2b4290cbf0b6ea49a2eaaf944f0a072091 SHA512 f43b61953d83d73907936f75d0d7aaa1b85baa002b644803f4a1a5c5c7b583dc6ab17dd6fdd18d835b3d2d1540f600613dff5a8f976812981d87ce52eba4c091 +DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.mod 168 BLAKE2B 0eaaa8bc2ad28b5676a7819b6b780c91d2c8ea720ce84a6f3d411c68777f99bc96c1347d58c49ff2e30ed3a03a307c1db6033732ed47934712c3fdd1960bc858 SHA512 c219a379ccf187bec63abe7ba7e0daab3991370c8ee9d2309667bc4e759b314684aa90b47c744c1db9a29f950cd95c2a8e04cc81be64104642d44335652d39b6 +DIST github.com%2Fipfs%2Fgo-fs-lock%2F@v%2Fv0.0.6.zip 20467 BLAKE2B ad3afc06a873d5a2cbd5d51bfd2df7e207455945637735efcee8415fbd453dfa1f99ac9f53a5f7c1474c3873a9584b4505064232c2681c22c4800f25b3867282 SHA512 cc136ced0efc35bacf043c9c4d10400736c98674d7875f4f626ace80f11222760e3bef5970d4c7822c1001144ba7dc6cb73861829a47b072b23d0ef1c96aa1cb +DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.1.1.mod 1844 BLAKE2B 10ac461657506608f1dc254a687dd1543b535406a95905cac0f5370a3a2a1fc9f91a60e142224ffc06a170b85801ca7cafd590081f3a749978d688ecef6106e6 SHA512 8c7832606129332b677480a4773de19ccc0edfd236db1239c6ab9a45f477e0b701e9c9d1d5ab1a466841303cd6aa008810d8fed19f2e6bf75fb2043ded7abd66 +DIST github.com%2Fipfs%2Fgo-graphsync%2F@v%2Fv0.1.1.zip 666357 BLAKE2B 48b3d092852ca7675d496f1ecda34c1b7b58355b6bdc3380dc91bea9f4a3fc121315596065167f4515117bb113bf67fda6965c16a41cd734c92924e104936b1b SHA512 626fa7c8cb851b74bb47e79b3766c1346ee28524d7db1c9e8811f7291d67d1f3c9be0bee07935abb4e28492c79a0f2bff14de4a33749dd32bb56c1d1910a4e24 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.mod 432 BLAKE2B d4793309f3c0b98332cefde219d6845a6804a9a307e4fc9df6620f13e9033438097885c638aa4a1fde5f70e899bd58e558f6a4191ee5a898db69d0c73b28e0e7 SHA512 88bd6d1c1ff00d4c314398dfc7b29809572578679c227d09f96b7e402fb7e1c3d87e490997a7b3d6aae6453a158a9420cdad875b5f12559b73440b9953c0f339 -DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.0.1.zip 22368 BLAKE2B a1b47d10e9fc8b7cd581ffb24b5316bfbac4f595376a932b0cc84b5575d09a5f786e8d6a6ea4506e3a6732a70d876115780cbe23616fed4b7434d1f619bd1177 SHA512 a09c36f4e7ed7f3be9d27155b7c53c8b538a6241e17085398e63e67c600ad2e8c12ed1c4f32d2c376cc6e398c58947eb13f2900dbff0c6f7dc83b7a0c16e67a5 DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.mod 432 BLAKE2B 39574ead189f7cd4b401d62ea5c3e8ff35fe94d3edff32be4250ae0d20d9bab382f2b6695b39b31143d8dcebe8a2c54a4169b92cacb6289d4b7e50439f89bbee SHA512 e4b01a9528fadf8e69326874088d39ab4892a47a7b53de0ee450d6fd8167f7a2afb5b8cf11b17d5882500b662ac879b43260dce850ec7c7e14862b6fddb81bdb DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.0.zip 21073 BLAKE2B cc1f15c59ee56d469fd8b3cc9cb9317ab2dcd118831c7a07bb03653f7bd54a8a851d2f8e7786b2c6f6566b3ffe1a9051915c43397aa0d335b9c355a7328c7dff SHA512 0aa86eb19a0a152d1082795b56a5720492a93d4c9e5477b54d5d82b05049a1e9c96c4d22f9cd568ed1a990d8b43727c5acf152bad6b52eb4c8889652e12aafce DIST github.com%2Fipfs%2Fgo-ipfs-blockstore%2F@v%2Fv0.1.4.mod 442 BLAKE2B 3f28a0f19bc98e52abccf9c3daab5d93377aeec893fd420a0533ecfaa3bee44b4ec6acd425d462e223c084b2254d55f139fbee37a111e415203fb85e62d55d59 SHA512 2f3570b54f2490715506b8c01071413548f4ab9208c4c237b2e8175df6189396ddd5297b0884d663c60745c0ac30bc77163abf58a2b130b2f854b8c1af0d8870 @@ -370,14 +352,10 @@ DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod 270 BLAKE2B b2263f618 DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.zip 12272 BLAKE2B 89eadb7fddcdb3467934bcf49e864f2f5fcc1661e68a796ac8334ff86990ab882fdf1ca84d0e997c2be18e7b9cac37b0c434cfd6f29722e4e0c410bd5db8c00e SHA512 462d3dce73e3575d32cf419c102645a6cb3dd06bfb32f8df7c7dc4a8a737ade5d02852f16e03abc14f97adcde52d0d96058eaa410eeca0dbd9124a7adca5aab9 DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.mod 279 BLAKE2B 20cfe5b54ac6a03cafc363fbf4d81dca415380a1db7e5a910aff9eff542c4d6900976e1cf896b2ae7863678ca8f069af5e8f77bf8c57ebf28e14472df02881e9 SHA512 9b34d7f59a02015688f43927d6f2daa5f2bab88128c06bab069f13c914ca3be9870c184873ed3eb3988144ee3800908eac4d66db421066acf190f572bd2d3b4a DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.5.zip 16229 BLAKE2B 051b176e1c529f04f8ce0cc95c80975faeb1d0d9036e7a5d3202b1f7c962356f3cd4fd59d3910dd547c70275d3f1bc15ccbc6c5ef379d55597f201ecabbf1009 SHA512 684943b9eee65044548b11b2f6306fbf9a18b9dd1ce5c4b1e0a04b481a602b6949d69ad0afd280e4c94fa06a527133889d84adf514794bfd671aea431869045a -DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.0.8.mod 318 BLAKE2B ab4e2b5a40053feda176e5f911530faa88ac4e9b6770c1813be003555fc10923bd2e59366044db5601a426ace45e53446403d16eea2daf9e1fcd2e4a85f357c5 SHA512 44d492cc01205e08fc8a9473c385232226714e44212a8a29949957bb35eb19b13eb7f8f6b8b10221b343bd88a97a496af784cc52078fd9ee120a5958fb276ec8 -DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.0.8.zip 102369 BLAKE2B 1269a8aa552e6929491515b579fd09de8a45861232b51d9df39cfce4894d0d5a4dd0052e321b9bacc127d27af9fd76e0820a1222e9580a9a7f1a1e56528e0bb7 SHA512 4abf211ebc1e26055b15f38baea23f34c268ab9760645e2930782aa0b1cf1c91bba5f8b9917a45309ef08fee18e294f0944bf04414e1c33872128b12cb494a6e -DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.2.2.mod 327 BLAKE2B 6223159734e0202fac331d578d7639db3313de12503816c52fca927501ea3dd3dc6fb1ac69a704368c3bd9db76c8ce48b93e4f5a9ec66b0d5bc08ba0e82b6019 SHA512 5897a40461faa45e52ebf18e81e16ace73af1150ddcb7dbd560db6c00ca281d260e4316047715d7d6f2bf0be13b26e4c092affb40368acb2aafa76f480629b08 -DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.2.2.zip 90937 BLAKE2B 2df9ef7ecd5211d6a255ae17d0910094525c149fcba12239dbdf34da2b58c8e1e621d1afdc18c70ecde346dbf9e491403f26a111c00bd7a13c0c3fd6faaf0a34 SHA512 e4bac5f7210b51502882256d85577f1df59ed62b5fe82932ac397f50d8040b250a8384efb53ad28970f79db71aab51fba62cb6986816f5d79bb8f6778172507b -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.0.3.mod 367 BLAKE2B d492f1d3c476c4eadae6ba1d44b66e4df1d09cc8d09c846a0c3de1d94fbe6c3a73bd800e729cc6a773657891a068848ee0fd836645b36c8f4d8959a71b8a38eb SHA512 2e58956d1e4e9348710273a169741da73cea615a8ab6a6365311f5cccb1f8789cd0252f9cbf656c6b392b8ed8e79715ce4ce7ea26dd6b1c5b87f8c19fdfa0f40 -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.0.3.zip 22623 BLAKE2B 0212592b0c88ce263361b5ade84d9e86d6f8f639a99fad3b0f3f4fe2cc0a3a5a7918cb5a63870317899c4adbc08caa082eef3b879531d73f0abf75a12f7a2633 SHA512 7cf79b49a48eae46d9f978fddc2669c4f8145503c0d9a65165c843c51350ee9a6ce26e92e3d36f9e96bdcb7a6ce92cf52ca92a2a31b4af2005a0249c772e2a31 -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.5.3.mod 255 BLAKE2B 4936f73eaa55877554a6057b758fbcb722c4a3f8ae8f06cd99eed6f1dfbe3b35a1379011458eef2e9f35ff4d35eed5bed66c22da0583d232291cf3c95be2ee9d SHA512 24769772f8383a8e7a4ce0385488a6d4236f85a5080eabb5de4f808bb45b7a2dd4d806959edc7800bd455c06169e4753174c876dc942eb4974acf0bc8de3055c -DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.5.3.zip 29709 BLAKE2B 57f918726c5d61b125503bb9f7faafc43d2cf7de7810c72f90244f33da7af0b0448b182ad296a9b010bc2051e4930799ba32fc29d9fd83b5724fd3bace2c16ba SHA512 aaafdd06e188bf8ab1d335e902280e4f11a8b0f43a5891e3385222eefb86b88e22f876086ca3be545204b663b582405dd5ee863cfe6f90635d840b51dd133710 +DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.4.0.mod 327 BLAKE2B 523b6212785ef7414f1555bd2c9483a0c3aa078d91e5719c49aa218d918d6b815e482fdd43bf3123969353ed4590fd830f58322d090d1f8d589cc73c5399aa50 SHA512 af0986d6981df212e7892f1b30ece2358c2d111bedfc9db3f6893509de935ebb0a34d6f491818d26428641e966fd63b7df48e6c63361010b06fce7574d2ec5e7 +DIST github.com%2Fipfs%2Fgo-ipfs-cmds%2F@v%2Fv0.4.0.zip 96072 BLAKE2B 52f54cfeebb28fd81412af69f0bb5822cbb8fcb95196d0eee54631348f6abe1d54188b231122b2d4c1264736393420a9d19d6c07efb46122306fff64ef88b20e SHA512 c7ebc5d2549feae22eb426b0671e8370fea2cf6144335bdbe6f4d2abb4d3b0afe8a3d40bf43f2c75274a25e52ac4f9925de4e069028ada992de47de9efdaba62 +DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.9.0.mod 302 BLAKE2B 4234c01e30cb45a6e86cbfe13b727a66ebd47969f5336834e15de8fa0d1afe8d7f80ae42a2bb828c8c5585f68fd8ee60ef9dc2a79642b5e58aaa4988586343ef SHA512 f5aa9e34056a48d6f983545da0422f7cbfba65e100d37c3e785d5f28cb0c718cbc440e80b05a2605267cad7f518d186a81cd7165278a6132211bc17667cb91f3 +DIST github.com%2Fipfs%2Fgo-ipfs-config%2F@v%2Fv0.9.0.zip 42323 BLAKE2B 8d542ede4777f606675b5ce96c2569f12fd360d1b7350bab48c058d2cac73b6148fa7960a2229ac02b4809e3036b99470044c238b0650962b468d739fe523064 SHA512 6fb9e7fba7444a193cee631c9823a82f5099840c83f2dbb460cd7c2fc828645b623d8195d81cb99c35f1201654f9ca30655613a81586daca3e4d86290cf68169 DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.0-20181109222059-70721b86a9a8.mod 37 BLAKE2B 5e6f830a59cb1b8b107c22fa33973fbca971cbc4b4847a00a893008ee64da10eb7c854af9e3b51d28fac8e5cb231906f415564326611018d931c6eeb00d9efe6 SHA512 0b0f78bfc8db354d3465f743a69c542d91bf202389e3698430afed9bda7d8e2f179dff3cf69044b93e7358b22579883dd56e31aef3458d5a69eb30c62283405c DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.mod 37 BLAKE2B 5e6f830a59cb1b8b107c22fa33973fbca971cbc4b4847a00a893008ee64da10eb7c854af9e3b51d28fac8e5cb231906f415564326611018d931c6eeb00d9efe6 SHA512 0b0f78bfc8db354d3465f743a69c542d91bf202389e3698430afed9bda7d8e2f179dff3cf69044b93e7358b22579883dd56e31aef3458d5a69eb30c62283405c DIST github.com%2Fipfs%2Fgo-ipfs-delay%2F@v%2Fv0.0.1.zip 5966 BLAKE2B 416c61a135d2a086380091776d952e13a5519d65cec048905ae9257eb3ce5a4dadd15b72380f013e42cbe45c7440564436218a5a9a83b17cf4f5fa2c403c07bc SHA512 a87773dec15998836ed762db218bd39fe1fa0647da470e6eeca0be7b6454e8659844e37ae32efd33ba24cc2e5a5101fa633d42c5f3f5ab9dc68a544c215e4449 @@ -390,50 +368,39 @@ DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip 5712 BLAKE DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.mod 343 BLAKE2B 5098bf5d71fc4d31b14754371498cbc8cfa50a8e7333199e01f30f9824462e12150ade8f856738e32f4d11f187b2a719d8f4f391fde7c9894720563fb407f4b1 SHA512 861ded55a2d9e834e1fa6c849ed2079780cdc4ac545cd7069f81bf2d5156ac3740a2cc66bcf6edcce1e6dd4fe40ba525897190406134e9434c64ff5d6c0e0902 DIST github.com%2Fipfs%2Fgo-ipfs-exchange-offline%2F@v%2Fv0.0.1.zip 9631 BLAKE2B fe65e528b58b2b5655f414b3e83c6c872ff3976dc33f61ac0744abc46f77e4cbabf46026fba71e6cda9a2cec756d1f44e9553d8efe8bf019a42f33303eaca7e4 SHA512 2f78c0c3d5f515b0d7c4642f2672c8aca9b12237db05b212b6d6c871281dcf9dee5a7cf7ac84d0f05c90577f8a83606ad96401d6f034f0c510647bf457e8bd21 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.mod 98 BLAKE2B c7ed8445dc0dbd0a10314437192631a667e2166c7a7a5edc4d23fa9773a0c20614f5ff0a0a6cca0cacd6afa57a34e22a04ffcb1cf54fcca59d7a35f405b80c1e SHA512 755648ba658690c6d81072d3dc9618d74b209b25c8e40a2ba7bf61e04dbc12c15028500a69ec399fc74ff605708a2b813197447ed13e3e6cf6eb34298bd57312 -DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.2.zip 19522 BLAKE2B 5b3827010f22215f1286a63be3f85a632d23079a60f1e95d7450b1f4d047febc9bf089d95aa988b986b0799c7983be394a7ed5c86bcb07391fd429e50c3f4d23 SHA512 84bb53be6b8b64006861eed09aa45e4bd2999d423ab2668fcc2b0e71a7252a2d10290c94c8486dd3d14eb88346f942dc95f15afa52bfcd0dc2146e70ac5119e6 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.mod 98 BLAKE2B c7ed8445dc0dbd0a10314437192631a667e2166c7a7a5edc4d23fa9773a0c20614f5ff0a0a6cca0cacd6afa57a34e22a04ffcb1cf54fcca59d7a35f405b80c1e SHA512 755648ba658690c6d81072d3dc9618d74b209b25c8e40a2ba7bf61e04dbc12c15028500a69ec399fc74ff605708a2b813197447ed13e3e6cf6eb34298bd57312 -DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.3.zip 19894 BLAKE2B d2a7fb8151860d601438d58d805eea22aadae34ac06b6bf50663518355f07188ba92eb7b14645d3e18a30ca64e80e8b1abaf406bf42dc02db5399e4e76600bd5 SHA512 605583de4f53c4ad41fce60df5d14548fff956bd4be0e6bcd9641d390abb0574088f473dd9e8721faf0082e3697c880d7a7279b522a21b59face4afa0d097612 -DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.4.mod 98 BLAKE2B c7ed8445dc0dbd0a10314437192631a667e2166c7a7a5edc4d23fa9773a0c20614f5ff0a0a6cca0cacd6afa57a34e22a04ffcb1cf54fcca59d7a35f405b80c1e SHA512 755648ba658690c6d81072d3dc9618d74b209b25c8e40a2ba7bf61e04dbc12c15028500a69ec399fc74ff605708a2b813197447ed13e3e6cf6eb34298bd57312 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.mod 182 BLAKE2B f71239caed5d433dba9765f1f446651648702dcfa03007737aed6ba01e62829ef1b42f4760f3270b7502a73a751b2c987d38af94a7ca179b06728db335ae9452 SHA512 f9991a1817f31167c9b19a82551918c7124232e520e4c4c9c692d7c4c3ea9e3a7122afca0681d15eeeb6479d76275d226c795627cc8c0b08365c2e2c5804cce9 DIST github.com%2Fipfs%2Fgo-ipfs-files%2F@v%2Fv0.0.8.zip 24395 BLAKE2B bdfa4b8e3832721564e8b674759fe129ebf381a709b370501f6570c14d962a406c8ee4ed315ac09e5aec8ac2830e5906b513f40940df7bd91384706e78938b8b SHA512 43c182e3e5e1391b49480402aeb59da141a1f06dfee158b0c520762a4e4650bcdc3703e8eaff8868ac86d3a0ecd9563e9a67d13bd149d85efa3d142301def978 DIST github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.mod 37 BLAKE2B 39aa6b52e95540369722f2089063e6b516b6371021f43c6b16dd4d182acfae998831f4a9beae1deb5040fabdeef261151481a8adf13a20839bb269f4a59ad7bc SHA512 870314a6806355cbb496b5a8612344a006f42ea85076b9e9baeb311d1c2681c89df57e5cd5e016e6e320a62fbc8201d0684b85a26d214f07e059f17e95477c95 -DIST github.com%2Fipfs%2Fgo-ipfs-flags%2F@v%2Fv0.0.1.zip 4056 BLAKE2B 2d507d9972c398b41e684fd59eb416183f7ddf91ed09d92ea5684d2862d0bba4c80948cd8e363a37f9375053e0ea19b5b8b3e1d45022e5069b9cf52e6c1acc1e SHA512 529258a2c48a1078852947ef6bf71be213af56ec08a20ffa275b0d08c5fba98e1fa26bf19d5453468f2a70589de0491b5a780f5338ec6e62e1f1555a5a3e9cc9 DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.mod 437 BLAKE2B 79021a20a05feaf934232aba39b0525c6060241a94c36c3d31633163f1ce58cf73d7a633679b2c37909f2d74c990f2bcee558ed920340aa39defdd42dea6cfef SHA512 31a90734e1b54482911051827fc7575ed86b6cfc9567bde511dbd62e334bf29e129b5b7fc7dc07201595004cc8dfcafc515d2a113cd3c28f61b86ac50e40333c DIST github.com%2Fipfs%2Fgo-ipfs-pinner%2F@v%2Fv0.0.4.zip 32950 BLAKE2B 338f5f6b942a427b703ce1ce22fb3dfe52e20533fdcf6af07e08648e1a970fbebb01515b34eb23c8212094f6ee1666fd074733ebfb5ba6d471d88172f21fef20 SHA512 bb9295eda8274e53673c06e8cc9aae57d176dbabfe88ff163b2db1031c02a8e119cfd6af2ecb4f4b1de0c43652f4d11cdfd78114f67a1ef8000beb14eb5af238 DIST github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.mod 86 BLAKE2B 9806289d763999310b956c32fc0de0230af6d8262954cdd73a95b968c14ff7f8a92d3ab85843e76c01067332f397b6e51aa74334da3b556130dc785557ad6293 SHA512 fb0c0728ad8b85fb792ec273cf755e51fb15a627dcc5b72b39a269f4eb38db15a9628eb657232521b938d7b5f828864c9648f37ae72097bb6a5dbb59e854905c DIST github.com%2Fipfs%2Fgo-ipfs-posinfo%2F@v%2Fv0.0.1.zip 5781 BLAKE2B 8eb3b54bddf7fc46e17f98ffebc872ab975fccf957fa22067bad84216fbb85fe57c31671beb798cd4961d660025615855ad1db526072f7526441a64ef87c5f2b SHA512 4e78824929129dfaee5f932c78fe98d72a2a277a086208f29d0f89fee95aa26eb3c354768a13554c8a881883b1dd033caae4f1a24b7a4dd5b98344cc89b2df43 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.mod 34 BLAKE2B a3b343eb6f5d1499c5055ec7204f02ba554d1586b376c555139ab874dff5ad247e1a7fc10e072f2f7a1a380a805dfa290c29bfffa6990442d713684085772b33 SHA512 ad89df311efbae22070ac05114f307a3dffc2d1570bfbdf27548e2de84acc30fea4e5a0568fcbe2ca099642959abc09be15af4514b1cb3752b631069d4330ea8 -DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.1.zip 5445 BLAKE2B e2193e28bc712d38237163be92eb287d6800c56eba4d8bacc8b606c57856e8a5503b88bb13bea265ef38c9d81100fc10eab41d7f4473544c85c439236adb36f2 SHA512 a35a21e4a2e8e121e12aac4a7700120fa8a88ab63184afc47b85cede2710457db86c566badd27c49c68a6c6d9c198a4469f883dbec6eb0b55dbb075df386f095 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.mod 34 BLAKE2B a3b343eb6f5d1499c5055ec7204f02ba554d1586b376c555139ab874dff5ad247e1a7fc10e072f2f7a1a380a805dfa290c29bfffa6990442d713684085772b33 SHA512 ad89df311efbae22070ac05114f307a3dffc2d1570bfbdf27548e2de84acc30fea4e5a0568fcbe2ca099642959abc09be15af4514b1cb3752b631069d4330ea8 DIST github.com%2Fipfs%2Fgo-ipfs-pq%2F@v%2Fv0.0.2.zip 5628 BLAKE2B 733004ff4341c8ad5390ec00d314c293b7c67f7ece6b7a75e6df15e860b184dfd4e1305e3884a5c17cd4f017442d53682070f1f0881700f82070ec594b866ebc SHA512 f79347e910c7c7305b7a758b6da2eda270a3c9111b0807e9617bbba13527f084659e1ff344cd2d43db4770d86f08f936cb5b12042437759af17be9c28c26dcc6 DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.mod 739 BLAKE2B be2c0202452ef662d84d3577aaa109e07f37e184e157e04edcb91b04faf10fdf6ffea069b3ecb490c915a78aa9d918279204158765513dc905d4a4ee5c6d82fb SHA512 1c648b9bd3bf1d9acd9b30d7fa235f050580454622140340dd038db38bad5ae82cf2d9b615658b1ae5d11bedfb64ce6a62b40c5ad199a2792b8a06c032c16db0 DIST github.com%2Fipfs%2Fgo-ipfs-provider%2F@v%2Fv0.4.3.zip 33387 BLAKE2B 7a872c4816ec491796f17faafb69c501d32efcb3f85b5f1f9e063af76c392e4bcafd373ddf9053692d977aae96603ab27aca01395e28aca3c1ef203c31c2994d SHA512 646b2c0b2e86cf56e58ddd70c61007381e2a82a365475cd140c531e7be06558437f4644fe45dda700c6cdc530b8a4baeb7986ccaf1b8ff494d1f9aec3abac429 DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.mod 642 BLAKE2B 3a1b4fcc17a0f2a4424c1f993a3f0b83f1ea35cc75cf3c3b094be0b7dd84540458096bd4f475abd0c1eae79fca88f90d80869f10cf858bc0ab8e93dc031fc13b SHA512 a7544d8684e12cd30f30b379693904d0a52e517ff6e0719de859b993d6c55a9ffbb3122c1bfc1b81dc8f9d29a8672c447cadb095b7d1db91381de1b4904df4ba -DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.0.1.zip 19364 BLAKE2B d9deabd9e58b8f5da636d06b571a4706c0078977bcdf69d22c4ac7b521628033ecfdbf93a4b40448cbedd12e2d7ed29b7188d1b78c5d6fca092588c4753f3916 SHA512 e20a02f3c6d8591ab7fc6c358b05f808d8c39126750951c7588b448723f79c86bd806f9510d789fa90334db8d230273876872566ddb3cbc12693d9a35bf656ff DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.mod 517 BLAKE2B 5beb7e711008fc1c026ee95b18b191716c04ed7fb5e0e2fa46926e98bad5474fefd59111b8b5e18f04b3036d857a16e45b517ad18636561fb5fc37c690f74650 SHA512 94bc87529b47d9d0045d7d9f35397357b65050d986ecbe482324b4dfe84c451bed1923f8e827b1deaa8eb62d4940cd56bbd5545084f950a274a60c91d3dcb48d DIST github.com%2Fipfs%2Fgo-ipfs-routing%2F@v%2Fv0.1.0.zip 17039 BLAKE2B c6b57da51d866d2792d92e06fa5e42db66ddc358973b069978c952bd84b470f3270a7d575b5b8c7be84057f244099bd38f418a135f80684eb544db61ce62e709 SHA512 7e1deaa5f86a9bc4ae612be38c84d3179a322edc0cad0111fece6a862cc15fdcd5f543403449c82ffc342dc81d84917b8fa388745fa4d38e0383131ce95acd70 DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.mod 128 BLAKE2B dc1417a0498bda006324c05edc8da5650010b255aafefbd062f14ebb712b02433454c4372c7ffbd5d7aa4e5cdf79907b1f2d0e5622d3a9bb1940858edb7fd80e SHA512 45f56f0c666348316ef9d80cadf2e85065224e67ceef9c2ac0bfecf88e256ebfd2a0e7bed6d155802e0db268c55c818bc3ce57dba5c17fa52811fc365186113b DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.1.zip 8502 BLAKE2B 7bb64bcb0c0215a259c395c34eca748ea428baf04413fa525e9926d1e6d3344125b6b22d302a0c43c28b1f408c1f6edd0b7c2ead62acf8235eb93a2d0e584aef SHA512 690381207ba8e3d3fee6dbaa220211bbb495eb213c4ef3732a518f76bcf821d90ecf3efee61b69cab1be0dd2dddedca9dad52b6b258574024c31f99f7363f815 +DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.mod 138 BLAKE2B 4e32fe4aebb29d1a42e44ee55dde29798c0e90020a31ef6bcf81a173cd30461e68118d1e2e576cb9de2ea0934bb1b1796cc066c977ec9f9b6a3aa683a92419b9 SHA512 e4b99f1740db2caaff415ba11c8bf991bfaf32aa22e85ea53c3d96dcf606ec420b1a7e1713d2b2cb0ea7e7da17cabbd8291b1619c960e9567d66b33f369fc0ff +DIST github.com%2Fipfs%2Fgo-ipfs-util%2F@v%2Fv0.0.2.zip 11252 BLAKE2B 7d8faaf604c42a3e5a74ac641d45eed68597695bb32ae1d9a6f00d817b1a4c291af102dcb03865501b68df5597dca45e75bfe0927a22f95fbafddeddf239f2b3 SHA512 5db8e6f8cb7558e75bf123fbb83deaae3065d7a1d649cba028dbcea646dde39e1f3cf878ab0c59627694d6da92298aee39c28344219b500742b8ca1531ce74cc DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.mod 461 BLAKE2B 7a6a5e0fded630305ed3832b316a0485b10d98c8b30f9a97fa95376f0343643ab34f2beaf9902577b91dd2564ad58bc5d0c2e454be39d3decc817cf83a346c7c SHA512 73f8c02583f55d71bca5f7b76b9f50553134f7418301e1656cfe5481a0db326efd8a8a6b4b80ae79e8f945ff619efbbedd11957016c58d6ba9f39a1c865b4314 -DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.1.zip 24298 BLAKE2B 97b476a787b764a21fb9a76e579dcad1d1a13072107f8fc19b7d93bbcedb09d243b1470afa7d795ac1032a65cf7e9d5143054a5b5a0ad86aacdf1db24f250586 SHA512 43515b762d374cd49cd593f85805f1f6d17114c81cba91190d4a861c8cb6c896d334a392149b34d1cbfef8719803ce79debf59895321791709cf3f297a845a2f DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.mod 461 BLAKE2B e67176c11c59fbacb1b9a33a0e6792d38340bd84fbc4fdbacebfebc04416810606fbf2b742423888b5463589c701f11739709204577e0073c96473268df3e2e2 SHA512 199993d4fbc15a79787e4c66c4e32bc9d19bf1d3fa327a7162cfd14df3e73af9162f1220f3d66ed9dcf34301ea9c8ab9f00dfa0d6992fa667c39e00180870133 -DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.2.zip 23565 BLAKE2B 0894b26b07eb2391955a9a4568a7e4853c7c2734b8d69a84b61a9c75d441112a1edda24ccc21f813a458ad933a96a67423cfc48b34e7ddb0e850cf82d1b8496b SHA512 1c3ac5098c438ecb5cf7fa2f665c64c7ff6e3105ee5b08dd1f1ea03b7a01cc5b67ad9c9cf5a2de33f41158549d5e426fb86c2aad6bcb0b589046ea2fe9810608 DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.mod 461 BLAKE2B e67176c11c59fbacb1b9a33a0e6792d38340bd84fbc4fdbacebfebc04416810606fbf2b742423888b5463589c701f11739709204577e0073c96473268df3e2e2 SHA512 199993d4fbc15a79787e4c66c4e32bc9d19bf1d3fa327a7162cfd14df3e73af9162f1220f3d66ed9dcf34301ea9c8ab9f00dfa0d6992fa667c39e00180870133 DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.3.zip 23581 BLAKE2B 294e7192b3c633f2b5eaf9b323000fd48636a1b51c9b162e7334e08100d3902e97d6547e708e7da3114de4d6c8a8a160422d8661f85ec774044d401d9ff4c4dc SHA512 9f288a33393f77adf579f49f30965c8da2273ccd427b88567d57c9d67fcbc457ca2864265dc457330ac7cab6416c789c31edbace82d33952e75ad96879f4135b DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.mod 541 BLAKE2B dfcc5d4526ae7b0cdf0296b106ed7f587d04f20ad829934cc561ad7190bd3cb4cc00c41071e09f9a5e6ddfb406ad69c1c040a491d7277f3bf59ea8f1e2dd5af1 SHA512 2737341e95ea080f3548438036cf026118d17d34cb1f8678d67cbbbb37d3f81ea7d05d9954ffa4b5421c2c9149d506401defefcc09f200104e5845acadc0e40d DIST github.com%2Fipfs%2Fgo-ipld-cbor%2F@v%2Fv0.0.4.zip 25649 BLAKE2B 08241d17b45e541bb3a384f7754bfe10ccf314ef66cce25d5bcbde8d8bf5df59cce29f021a0bdb5d1fa08bdd19d3ae2ca7668919a3238f6ed96fe23740b32c6b SHA512 6e6aec37804cb3b3c32361075e79128f246a201bb469ddcac6198aa6a1eca6b2a1079e71c946dd446e160b2532038ad331ec83e6e3682e6368df392b5b7304cc DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.mod 167 BLAKE2B 1c6c2f5bfacab67dcea158f31e88f937f960b3ea7b8bb5c4d47aad81c13ea8b3b742b89f53988666acc0b6fc80463b0a5ef4f244a0ad5ebffa3da76ceb1075d3 SHA512 00a7c4d1e6277926861452d31db6eb0daecb8526867e2026adcfa2d33ce4b572dd8536abc5ad8b8776611dccd3bc6de9ec7fe7f5064dbf9751ec7b754b9a8dc7 -DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.1.zip 24224 BLAKE2B 6d9ff23a7b55345fcb5b3ac42dbf2067e1c45ec9ffe20c3623571c976c1aec51d70eeeb29a651d294c116c17b018a1f8160f3560f2e5c16eb2f097cce2183334 SHA512 15a99bdf4d48942b9f79e8d66ce77dc59db1d800f126c80093efe993ec59e2ba0aaae3132ae70b7f1feae1c92d947c1ef7c173c362bb51cc81a362e2d697aa94 DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.mod 167 BLAKE2B 278160452736e8ebbbf073b2fed2c57ea901dc8c8e2aa396b7da484f55835939f2eb3a7ddbbd8e8a67c4b0dffeaf54e16ca7b4e0d03fed20a026b39d90562aa1 SHA512 9e0bafec31d2ba017e80757dec5b47d2276c4293d8338cb2d036eec74ea29b0a515901f64371578d75572491e8f8a130129c824dbcc1accdf87b23412b305713 DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.0.2.zip 23636 BLAKE2B 3e386dca86fc3770542f5f701eacd93fd7ed21d2e5f640e9c0136956735378c1527d16c7181752dc67c1de48c847d616b8b670ba46756861091caf1f2504e2c4 SHA512 9ed011ebc324608631a9c2047a2d3de47345dbbaa9fd2cd6ae1054d6e854a3c5e6f54a2f8629e3d7a4a56202c8b7f97d3a145dc01fd03eff5118978dbb073fe9 DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.mod 229 BLAKE2B 45aa5fcc8b2b6b91ea6a06803eb048fd6d5e482c784d336b508798b5c66b723c9acb6f28cf14179f05ee49910617c58907fe10d9d59e03a17f07d293530da88c SHA512 0352bbee0003337ce1ae7d4bb156a5a1c47b00a174f5fa1e407ca1c843b8f32f2b5a830fc2386e8181f60e2dea1ca9367a0188bac2cabc75b821dfabfc1fadac DIST github.com%2Fipfs%2Fgo-ipld-format%2F@v%2Fv0.2.0.zip 23855 BLAKE2B 2c481dc1af7b46089215c5c208da169cc3495a37b91aba10ab14fd83acc3afbbff47763f680a2492a0cf9d72ef59dea6a7d070b33e799c3638148f3599a640c1 SHA512 4f90a052733dd322d223e89b2be8da97115a563743699c60913f8e00ae94612591603401bc7504e577d6a3afe4f38d314cfc92f21852a412c9af118a4458a09b -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.2.mod 203 BLAKE2B 3f4f9b59bf86aca3e751e9bdd1d123ebec3abd1dcf2bfc9ccace7a9e0ad30b7ade5b6872ea618d345427ee6f8737b4416a96afeac28e1d7bd9598ab56e2ffd8a SHA512 51f3d8ea1842667eab03e4ce7d5f7a9bf0bb293d5828c799f1a3a59a06141cddcd017373f5642401b148493163ac83d165f157aeb3cffbb4cb1347e5ba5fb59c -DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.2.zip 29512 BLAKE2B 450321c52fad2370660a28a4da395dd0c5232c3beff54bedd8e01e0f6360b9ce1d88dd5439b07b346e8be0f05b7b845a592cf79c6199875cb90123b892744dd5 SHA512 c3f23dda0cc693391cfa3b3a959d2c49db9f79ebcacc6d71a416f483806c4382b8087d9dec54d6856b6369829902ded9b987dd5db05659d59aaf84fb59c990f0 DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.mod 203 BLAKE2B 3f4f9b59bf86aca3e751e9bdd1d123ebec3abd1dcf2bfc9ccace7a9e0ad30b7ade5b6872ea618d345427ee6f8737b4416a96afeac28e1d7bd9598ab56e2ffd8a SHA512 51f3d8ea1842667eab03e4ce7d5f7a9bf0bb293d5828c799f1a3a59a06141cddcd017373f5642401b148493163ac83d165f157aeb3cffbb4cb1347e5ba5fb59c DIST github.com%2Fipfs%2Fgo-ipld-git%2F@v%2Fv0.0.3.zip 29976 BLAKE2B 6c3104ce3e87e7f0cd9941bed53db154ed1af022e5f75b5978923dc7aa42014e3396c024a8b93cd74491cbfc02b97ee0e49463420b4bc11df1dca1018aaed2ef SHA512 84ffd8de70248e9dceeb4c760782432763b836e6ded750c71876e80db638cefd6a9e9ea9cae1e568af7b2aed32870608e799274a3ab221adf13b72af8673567a -DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.1.mod 318 BLAKE2B 698cf82393c1ffef672f80482b0293f0c195895df8b1ebf05ccdc50c339585e187cc1bb16aad612cb498ec166a90da2b3153bc1bd8943b24afa336c4ab13e3cb SHA512 c6100ad9bba676431a83a0dc1823aea8f3071763edb3c885621af14d38e22be285c0b15c6574234973471f57e2e1f9be7e508c37da231d20e241893f190e13d8 -DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.1.zip 23932 BLAKE2B b2ddf12c71582d22543a437ab4c96a36a169ca07e5adad687f20e677c99d3f9ad0f07c548c2ec56cfe4903bd77b1a9ea9949ac60100a2e1fa40776c9310c7015 SHA512 344e84af26f8121b1121826cd2b58188caf8b61df33e278921f07ec169a5b7aa279144886f81118a2e43520cab1f36aa2b663f1e46335147541d75ef11808d3d DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.mod 284 BLAKE2B 18830339b089781caf2d8d145898fbc132d8831e89284438aced0f641fa7c5143f2ac98f02a046ad2d0145601cb60f9ba44279ebb3a878f8fededf0c5d5af2e8 SHA512 13f41b4e660ea39ee20736ba9eb9b377962c0ea394faf78c0e027683f40ddf4d065837403a7481ca5b6921617fa209c0506810bec013190ed170935c6ac9769f DIST github.com%2Fipfs%2Fgo-ipns%2F@v%2Fv0.0.2.zip 27803 BLAKE2B 36ab439045ab1db440eb9912633af496aa7b794668627e32b68b2382f787166644cf88c38d2d67a2f9d4c0be155fc36ecc9709475e3f865ffff720b56ee858a4 SHA512 f6d93e44b0991ff0f9c9df90c0070baf8adfb57cf091cd5d8c49b00a25878a640ff861f799826c66e298cf17a0ed94cbe5f906dc56f7e6b090c6d366c55d2235 DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.mod 345 BLAKE2B 5114c21b10163a82815a747a5e06ccb49e872ff66ec824fb3103a95997f9524cfdfed3355c7aea5f1233ca305ac455c09bc2323a074c1550b6fcb705cd779d02 SHA512 26ceee384c2a1edf4d4611a30d7e7fff22039dec08e33de28ccdacc89243746202eca4523c5350f87586c126c43e5fdf9a677d5f73a7e8fb6746f82d8ecb2bcc @@ -454,13 +421,13 @@ DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.mod 329 BLAKE2B a4dbd0b60c287 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.3.zip 9841 BLAKE2B fe008493688bddc75b1c94b4c8a27738155bfc0e000ceabd61681774794dfe3961e95058b99fb2cd5e7a02d37be51c3d3bdcc674ca55eec7a2b9199feca98073 SHA512 5a8b660bbd21eac74f1ab31805fcd94625ed71f425c00f97b14894654d9fc21b6780845484972f7b7dfc1aaea22a5e1cd43c1ca64b4d57c597938d88c0a36359 DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.mod 75 BLAKE2B cb011a5efd29f66b4843bb821f28edbbcc0ac594d99be8e32fc167b83427ebd74a114c0703b6847b60f20d3fc40ee6fd9db55fa9a9ffaa50b8616883047b506e SHA512 a0d626cb6b94e05f5792c18b7fac2bbdc9302fa01bcd55ccb58604d05ed82ba1e30c00808627f8f55143ba26a4ea985563e3e09166b1e0948ff868b7aac6aeed DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.0.5.zip 11204 BLAKE2B 5ec41611c18cb06b990a831de661926661888d8352d35152e3b04a9ea0f26d22d464c6a46c20fed80aaa316cde0c90ce802238a40de388f4954e4b24972333c9 SHA512 a7469966e9b8015972675b3b11ec2a1e7f68d00e03440f546fba05d82687731e3d169f5929a2da4e9b1dad96fabd2b2d47c67d336609c45fa8171849902bf784 +DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.mod 109 BLAKE2B 447967b394435e4da38c0d03e6073b51c89ea62e355f954b021af1265379e79efda7af1092a3dd46387fa2a4429e6c33e060eb2d450f32de269322237ab4df0b SHA512 c482a10f9c32ee014a299601319f02a6ed9156a48384430b5d15961f6783883a15f4bd9d37315b52d10cd745fcbf0486d4b3bedebc32ba99dfeb3c731ec60798 +DIST github.com%2Fipfs%2Fgo-log%2Fv2%2F@v%2Fv2.1.1.zip 19385 BLAKE2B 44c4c7259ec3dec47f141386b9280c74e65dd133cad0201e755bb5aa9e0ec1edfe800e04a8361206bf58de864acb6fda91b01f9eb63ea4e9e963d4a547f4b997 SHA512 0ee7ae10845af513f0e1345cf06ee9e0856bfa81ff8280af4b07396eba937fdf0a60b80036ebf0ff4eadf73b42814dda26a05eccc14486a5eb7b7914696b8cfe DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.mod 480 BLAKE2B 0b6f373079b48ba127f529b75fa9ea70383510e597eb35bed56191da32c397f6bdd4a31293203c12ab016d8fa9042d2e25a0a0a1b9a84ee63f7c943b2d7169e6 SHA512 e7c99258f759f3c14c9250785ded8c6b96f0f37d17a390bd7d1897f0008961f0d3d247322ba1aa504cadc7f36a6f7776ce96385a6377b9f21ee366daf303b6c7 -DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.3.zip 49584 BLAKE2B 7851094871ac7ea8891e025aca27642ecbd8f8a4b71703cb453b9cd4affd4323a1e4e0f1cde065e95495f3898d581a8452e9a9a1f27242b540e8dc8cb33a89f9 SHA512 28f3a8640fdca6fef56a88c30f09343021d0a9c22ae294d3fbebb998ec77411095aed8aa18b7576773bed6120996c06df514806f05e7485f5c9272e84e2ac593 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.0.6.mod 480 BLAKE2B 24860c2016ee22800fe71014a95d81f64d99c6fa063d373e1e2f88c62d7b3e1f1af06b2c5094602e41cfbe662294c338e4e4272db9fbe2d0e29af7035e6bc503 SHA512 35b27a39923baec5b44eba0810e24d9c6f2f2dbbf7e5b33a698ea7ab9359f6af84258bce37a3da90e4cfbe51388ea0ef5a718efe9050d84967c82eef5cd5a3bb DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.1.0.mod 480 BLAKE2B b1ac58e4a56cce8893e11d0fa64b403659d4e55a84aa6103725ba95edfd8be52013a3845fb41567246151c98a7326c5d4f3a660d831a85c4f1b9e966c2ba5b3b SHA512 5b485e2cbbe25fadfc651044d709f82ca194047b62e2355d86137bf7a27e1d70785d252a9877d9bd4f23e0bfb47f748ed9e90140f3f275cfd6b54bfa0487d1b5 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.mod 480 BLAKE2B b1ac58e4a56cce8893e11d0fa64b403659d4e55a84aa6103725ba95edfd8be52013a3845fb41567246151c98a7326c5d4f3a660d831a85c4f1b9e966c2ba5b3b SHA512 5b485e2cbbe25fadfc651044d709f82ca194047b62e2355d86137bf7a27e1d70785d252a9877d9bd4f23e0bfb47f748ed9e90140f3f275cfd6b54bfa0487d1b5 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.3.zip 51609 BLAKE2B 90ae4cab13b278f68096e635d11071e963f1e073439437dd85731ce8db7aab4cab4c8365cbd0c773d578e483b673387cccc7a2d9320c01b0bf648b432176190b SHA512 180594faf46074301f346eaca8ab23ea88762c71394e1449ffe620741f22207ca974be2a6f0d393fc556278f64709400a72301330666910e2c3e7e7ccf6aef09 -DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.2.4.mod 480 BLAKE2B b1ac58e4a56cce8893e11d0fa64b403659d4e55a84aa6103725ba95edfd8be52013a3845fb41567246151c98a7326c5d4f3a660d831a85c4f1b9e966c2ba5b3b SHA512 5b485e2cbbe25fadfc651044d709f82ca194047b62e2355d86137bf7a27e1d70785d252a9877d9bd4f23e0bfb47f748ed9e90140f3f275cfd6b54bfa0487d1b5 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.mod 489 BLAKE2B b6ea5233608f890420aeabe7b34bdeddd8c06508d2c71281942b31cccc941ebbdb8cd3d47dc0550378e998d855826cc0fd76a4889023d915033b48fd5e6c243e SHA512 97fd560586524a3ebb83d0fa9bc2d8c244e10aa7018ddee95af1c75b3d2ba8c1c5b2ab7f46bf3ea19bf7968b686163b033212eda91ac35269815b10773cf9cea DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.0.zip 58422 BLAKE2B 691c39ace96f20d2e16ae3a19880f7bc908f5bf2eb044b96f8e02896a6ad407f71acdaa130531ac5a3c88ed720914dc4e6f002985c6669da788fa23215cc6e9c SHA512 41e4bae7674e7f51d5fafa1795cec7f82eef674c890871cb5713d5d25b02aad7cdc1d880f220a0e22dcd88fade452a7559cd0fb6199d8f36b3b5794effa12e37 DIST github.com%2Fipfs%2Fgo-merkledag%2F@v%2Fv0.3.1.mod 490 BLAKE2B 2ea6eda24f817b2a71fa59e723ac85746cb1139fe82a68c72a86bbc7d51c4a385faf34e15828696625c8925084dd0d1e8b9d524347ee132e533ec1c87aba5939 SHA512 f82a95b705accc6f275b11d2a3709b904e308aea43660b503cb76847e5c06a766d52dc474885dc3c56c0a7404c3f1747fe660e889c8b6a66b78ff83d317123bb @@ -471,47 +438,35 @@ DIST github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.mod 44 BLAKE2B 80b79 DIST github.com%2Fipfs%2Fgo-metrics-interface%2F@v%2Fv0.0.1.zip 5025 BLAKE2B b0fc8362c88283fe69c41b99d1a67affcea9407c0d1a9560ff28466fab32a079a91b0039926efd3334a69d1f4a008057cb471c192a743bf7744c32dacfeeac8b SHA512 b802663065b7efe9a3f92ef41f81c6402248ac3ac25ff7b422f0f53cfeb96891c4b0c274034b04d30521539e1fa6615b848bb89f6588ac3f6649a3c0952867c2 DIST github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.mod 178 BLAKE2B 3bc1ec5c13d859eb01b56602eabac8f2a9667d73de54ed6459dc6846c22a332fce83427cf85788bbe7a6fe6c373c46293288608266cb67d0d8886ffa014fda8d SHA512 3f465c07e1c62d58524ad0f4e7bc3b6fd59c61fcbde760991c036f115c68fbf689e3b91937f2cde05245695f3a6f3aa3259a5de552ea20f3c9d3752f31bc837c DIST github.com%2Fipfs%2Fgo-metrics-prometheus%2F@v%2Fv0.0.2.zip 6216 BLAKE2B 378341f45ffb2fdf48dd07c84712253d035076bd38281335281c888299cc753c1d7b4880b5de358782a0758b0565139ab61e6e36b3530a7a3e97e037899b2b86 SHA512 5bcda9125d9bb2f3b4e46552af1465d85ec14bd42bdbdbeed3834a2579ef3f3fc65a80d37066d33c895c73507787b6268da5c09d297e10c95a22bb5674ff2eb5 -DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.0.7.mod 531 BLAKE2B a0c05f91d6320de6787bdc1ae10c2c156d5e3fd5db8c9ab3a67ef56dbcf0281f6e4e6541e3efc7f108af55ac8d36ca583141cb9db32e2dd071a8580e03bcf89f SHA512 088635ded327601dfe61188af58246691a93f8ba229f69d5ffca7242d35e71ff5d7f9716c20a0dd4317ee6ef84eb905368d8923150eee4d1a36deeb3fe4c40b8 -DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.0.7.zip 39953 BLAKE2B dc30cbf8e98ee12f167d7cf941e5d854064ad364edbb92f46c49b5f53e5ce0d6f40828c470767b7cac4a143e15052a307215b2a4ecd74dcc92d7025c150e0286 SHA512 aae8d956acc06cf4936e6cf28243b8a087c720489ffb603039553de1f44a708c050c9cda262e966a7385b925e4bdd24fc50b14b301929c9a2971ac99af23e784 -DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.1.mod 537 BLAKE2B 024707740cd798418d6d72ecd41787893f7b19c874cd69848ed148ec219464bef41ae446dae8b46a21b303df4a109b672e5508191036483bff1a711e412712d9 SHA512 0c68bd185aceb1cb5c57dbbd88f2e362d0efe2bb23b692d003bc873a05b53703c3785450e6366d6e304023cae62b90d5f208ed814567979c2bf6c219c8b45502 -DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.1.zip 46023 BLAKE2B 5b15d5b278644b7786de5acb61903d348fc26ff8bb539e5400126ffb6dcba8b0dc36d4a4533f56eb8c560dadf240af9987131715143e44a7f6b524c4fd873454 SHA512 63d623fec082c2231e4f16c648361e5742758f57f47b2bea822a3ce9b5839933d6a02629b3c184d12b1cdbfc8239c41cb1fbdcf26945f86df1b8aec12178aa96 +DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.mod 546 BLAKE2B f4a809827d106c29bd8de5c403baf14ed9a537f5f5c33ee59e1975b7aca8db20e52bf719dfd05d1634cef07cdbfe17caaf41d4ec4701498d5874b99cfd1286f0 SHA512 63c41de32deba94a745ccce5c66a30428cca129b00c3dcdf54cb375db2f8d1e81d47e3e3953400b172c044627ae99098b5945b048c29d4882f238d0a511dfa2b +DIST github.com%2Fipfs%2Fgo-mfs%2F@v%2Fv0.1.2.zip 48692 BLAKE2B 2dde96325bbfff4884d2df181d067c30ee6d6cf773f6a78cf94ed266b03afe1cb2560769de8b026e1d5af1400c7c352d6a5f4182afa67407dd35401cb717b17b SHA512 e3b0cff0fd419ee09cd88b0ed223995a56bbf0fcef4e98c6e5871750f24bd8242096b3af163f8427e3ff101b3f863c407445e0ca3ae4f5fd557ad29a450cd2bb DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.mod 182 BLAKE2B d39d64e467802ce3a049545a99cd6f8b27f01507fda4a99ae9b097ba3f6bf8a2f5a9c14da609703e1a9c66f93536cdd8f2e7f5c8db5a6c87de59ccb294c0ee58 SHA512 0816ae085882dcdb285141284a323d6f00c76d3421901cec8672b7fc5504903dd3963faf674c26dfb61231a110944bed1074c072f51e05b883923cc4596a581a -DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.3.zip 22238 BLAKE2B 16a9ba39b8386d64f8fc369f091be50892d0db0da6f3ef8307d275bdb324277b13b30a360d3cff1c4a36fce72ca019c509faabb8d302908cd1c69eed4cabef12 SHA512 29910c2460dc17d90f13b5d706dbe5df2344ef4dbc5c85242acc606deb0116d006802f4257863be5e8735c4f7e8f84fe74f9102ce05be04a175f8029b49ed553 -DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.4.mod 182 BLAKE2B d39d64e467802ce3a049545a99cd6f8b27f01507fda4a99ae9b097ba3f6bf8a2f5a9c14da609703e1a9c66f93536cdd8f2e7f5c8db5a6c87de59ccb294c0ee58 SHA512 0816ae085882dcdb285141284a323d6f00c76d3421901cec8672b7fc5504903dd3963faf674c26dfb61231a110944bed1074c072f51e05b883923cc4596a581a -DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.4.zip 22632 BLAKE2B 4cbf3fabce4970c33b29beca527b203861154f22254d8d308d7b0611d3afdd6780edea97ca96fa9d6063333fd815368673f7f15cddf148d929ed2eaa0f8d7197 SHA512 9a2016115f32af363b68084f54908f6e8762100128871be86607242dc90a7251b01c88799d9a0c102f9bfc28463d4802d4b8a65f7966943e45bee7af98b8369b DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.mod 182 BLAKE2B 35e66fd6023b845cef6f981a49e6dfa5eff86d3c2721f45e7dbbd1163ce30008eef89f8f4e6f5a081b27984816ca42de735bb4f3e804669531a1fa473825013d SHA512 bd78a805f1966f34ed65ad90f53eaa6be266d4e525f1e8cdcb15058111fddf5fb88baf7ae8adf896b973c7aef79a0527a6f1022766c2be82dc014b9cf2c171ad DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.7.zip 25646 BLAKE2B e63cf6604e8c8471315d4eabf43a6c2099610168dc68d1ba7b8bf6afa7e321b258329dfaad16ab9a09febd76d1c3d0692d454309a267dfc0744a81a70bfb19c1 SHA512 88b9ead64a121d819eaad8668d512c66abf3de9f6aec218d3313e5cd6c36333124168037814875fae00447e3b20b5751d2242f19ab0f56a004928aee45de7376 +DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.8.mod 191 BLAKE2B ba1c0e5ff885ade011ccdb7ec81745698b48c819f45eb5908587c4c3b89b61149d08f0eadf237b0a12643dff175abad4e422022868d331a18a066d9611435791 SHA512 03d03fac0aebd2775749c62195a4ca7a62083bcc4fee7031054984d9e7e50cc576ca290df92d4d152284bd1b9ba02774324d97f21d3ca87447397f8ab6019511 +DIST github.com%2Fipfs%2Fgo-path%2F@v%2Fv0.0.8.zip 28277 BLAKE2B 41ee47d5860542646f6a41f6779528984b71f08394b60a4fcd799e01c57a741c0e1f74a588c9fae9515fa15a1fca4b102abc36eadaaaad9c05ed14a6bf1a0b34 SHA512 3ab957ee1d5ae153f454348a694fd4bcb47eed0b8505a7b7100c38fd15d9778949e4c47ea821e1f92e6770035daf273630042b29a80501b9547032d443a6a93f DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.4.mod 138 BLAKE2B e74a348e85c548f0a86caefae3790d7c856fb325c020f3fa8a017308c734d684563611a1136666ed8a90443f8f150eeeb55949da9fad76b30178878deb47c144 SHA512 dfcb7f218bdbaa713caf14f1760176a1dfbbe4ca6c4626ba1158f1787859f2263870bdadcfa2a7f97227ba1802b7279f377ffcc6c0f586a24e8ec2453d02a631 -DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.5-0.20190704154349-f09820a0a5b6.mod 138 BLAKE2B e74a348e85c548f0a86caefae3790d7c856fb325c020f3fa8a017308c734d684563611a1136666ed8a90443f8f150eeeb55949da9fad76b30178878deb47c144 SHA512 dfcb7f218bdbaa713caf14f1760176a1dfbbe4ca6c4626ba1158f1787859f2263870bdadcfa2a7f97227ba1802b7279f377ffcc6c0f586a24e8ec2453d02a631 -DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.0.5-0.20190704154349-f09820a0a5b6.zip 14644 BLAKE2B 72557e036022ac7952eadb72d299ec643bc4793c1a1aee654d0223391bdcbb4c139d93c3dcf0115e997f560d9bf674bc07c8a77d54af5059160beaa6440ece8d SHA512 099b4d84749d07cb8b7e5ed5a08876da61f53e8c6aafacf0e87d741b2d1b28030a86fec8f6bd14ca3cbdbf5d5db77d7dab5122533f21599d87984f6c7faa8cf0 DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.0.mod 195 BLAKE2B f09edeaa4c13426c28d6a1318d4e9bb9fe0ba72f20e032c46e895ba8bbe0644a3e9dc1cfa21c2e8f80137ff0d990794a0baab3414bfcb1be2b3a6acc990dcdea SHA512 ae5563432fdabbde6c035e14b9d95fb41429c533e17a80d74057fb8be2e46094735765c8ca8c80bb4dd2b52408eb3613fefe27503d63b9afb3c7823275e6a3ea DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.1.1.mod 195 BLAKE2B f09edeaa4c13426c28d6a1318d4e9bb9fe0ba72f20e032c46e895ba8bbe0644a3e9dc1cfa21c2e8f80137ff0d990794a0baab3414bfcb1be2b3a6acc990dcdea SHA512 ae5563432fdabbde6c035e14b9d95fb41429c533e17a80d74057fb8be2e46094735765c8ca8c80bb4dd2b52408eb3613fefe27503d63b9afb3c7823275e6a3ea DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.mod 195 BLAKE2B 1f0ef850fc25d3fbae50ebadafe933a987b8bbc87ff12925a07cfaf0700bf206c36a810c625808776e39b85beb9526fa794914d8904fa70d10d57d1608205966 SHA512 51bb3de3ca3f28a8e58feaa434e885e884443f865457d01053677b83bc394b0dc44405d95972249916fdeabc9ac5f3105b1fca064d55aad14afbf83c49b93a22 DIST github.com%2Fipfs%2Fgo-peertaskqueue%2F@v%2Fv0.2.0.zip 18025 BLAKE2B 14694a0115ae50b7318eb85d4086c6cae74ac03a83f1e8cc3b6ce63e162176f7621f9ed21b7e58e1eadbd735c643ea068bab46fcd7d9c0d075cce7b60cd01f25 SHA512 473dda01d400225b10a3a90c7c6d7893a0a36002b0a61ca729d3403865a504e647b6ddb1ef5024cb16a3b8abe8fcb6493c97394dba73474d66da7570ba4f431a -DIST github.com%2Fipfs%2Fgo-todocounter%2F@v%2Fv0.0.1.mod 38 BLAKE2B a10a7d224fca53b2286d81644be3ac480e212a19bcf0bb85c2568105d8eda63243a7917976a89e8cec570135d64236720e772956519cf95a09e971ce97eccab2 SHA512 0f6c0efa6d24bf7daefca3b07cf2273264fbcbb1898acaac8b4bbaa3f881b6b5645615c70b66e5c83d0d49e0aa709dc73c3f98e570bc7c6b3699524b8e64b71d -DIST github.com%2Fipfs%2Fgo-todocounter%2F@v%2Fv0.0.1.zip 4452 BLAKE2B 9dee108a19e2813dcad406c34f89d2749c941dc41fdaf0b4de07649d0b309f1db0c1e017559e5902f465e6b54a66d135bcd0508c35bea1bf732274a1bd445e51 SHA512 9901a4b22ec4abbe1c87174066ce5cea45ef4bff3c6e8cd260c3fc360b722dcff6952b518a1ae00d761e3a19d4fd5b7980c1a0c3cf0c190c8535d525d01f78df DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.mod 520 BLAKE2B 3ea8708eb6634e4b9efb3445fb406a2c782ce347c9813685763bc6dc0929d36d1a1e9cfdae48388883f316ff78ccc034834d269301b9edf9841ec86c958f5aee SHA512 20212b2934eaa3e9d16c123809d97ee86364b3400b148fa8ad02f4482ef96beca8dc06264a680444de59b4665c8a988fc29ce32d9d0a7d4c4d89d6a659c6b7e6 -DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.4.zip 78809 BLAKE2B e234d72a7ef023a3d879f0d19055592442b458b088f4309d085e59db6a30b4648d2f81bc45522e84998cd03f62f5a1a22755904bddcd5ee3d1a42c4c164f518d SHA512 fe9acaf3c93b2c5232cee13db70a9384537ff5bcd97303ad8880a9addfd1cb4e6c2443a8c083de7ce7e657f4985ae1f283e68daf16555b8c5431c04f13a2a0ef -DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.6.mod 464 BLAKE2B fb98cb96b3f8ef45ddec9f1a38d7ba55590bd0fd0ecaa421d5ef82a00cb9d930208b7945aaf8e1fd1f3805c2bfd2248b368c94e382d2762e88f9f431c325498d SHA512 aea7b8f05f7df91c77dec4126afc5778ba5a77976e9b508c118f725b6b88e5b0e5c46932a6b61bada4b1e55a4ea156b109557bbd756621c6863255b73ffea4a4 -DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.0.6.zip 78415 BLAKE2B ca06223b83f2fe77f1e85e6fb8677be08b87a76c961dd11ccd3d4cc75f255e0d6400e58db7ba1993a856c0e19efec708c6af82c7cbe671e945f2f66ecb07ba06 SHA512 61bbd38df5b43fdc0178999be439ec63230957a0af4a421635d0ae12b3982c7dda92c01c63e5f2306931a6dc9e2b2c5ff9939cca5e24297d15d520cdfe1acc04 DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.1.0.mod 876 BLAKE2B 4c9f51230a25d7b721bbc01dab332e607485d86b8b623a6b8b80fda136227b2ef58fe371724f8c067f7aa87aa41a91e80fdf593fd42a1594a7d07534c2499bf6 SHA512 40fc3308ce7fede3f16a88ad9a4999749e06d76a64bfca70683f0221d5405f8f1154aadbc2b68f8d75412f02bb0ca7236354111c1dc3d94bc3c842030e352853 -DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.2-0.20190827150610-868af2e9e5cb.mod 876 BLAKE2B f3a7407aa9737a578487bdecbf7833060ceeae918e01d68b378f785adcd87b405133ce1c33ca5ed72a689c4e669ca67dad90168c8125810dc8c79e7f27369eda SHA512 aa78294756f3614b1f2b611d9c90ca8d035b07cdae2666f353b0e759947dcbeb6279fd865dadad0a3f4ad30e36ed15b44c25732611580f0b90f6778c5efea4b7 DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.mod 885 BLAKE2B bd840c7c5a4b93570527984e2494afb234858eb9a52b0ad64604bbf6ce7a86d80b2d0517a87ff2320eaceb6263eba8c9ca263359a2219b1b371a91d04de5537f SHA512 1e02cc242c3a3824de497e170e0435db6efcc4ae1ca628496c92e9cc1f0ed1ee6fdab43b7d5d0e6245fe12e774b13a6c5de1568bae34d3dead556f62de9ee909 DIST github.com%2Fipfs%2Fgo-unixfs%2F@v%2Fv0.2.4.zip 79661 BLAKE2B d86e91a17ad0b83af7ef73fd763860cc32c8b8522a7335de58c919905ca2c1e7c0bddda3d59b520631de6feafde12194ac4aadbee38eb62a76f949045567b3f4 SHA512 da9ac4a4011f82fb5c995be38b3b4dd22a17106230bbc469ff88be827632dae1ca4d51b411c9cca4ca6063cec58f77d6282f056054d2678ecabef26dde6e17ec DIST github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.mod 124 BLAKE2B 488e4b5c60e340768bf6297e23442c54c49dae0d812fc6d3d5c4f042c54c73f0850dec4941aa4c7a0ad4db3ce01844245385125d280dfaaec8d6f8957b08005f SHA512 1f7094e706316fae25a165dd967743829ae631bca8999d01a84be738bd250d0d90c1c7efc95350b0873a789813f8c31302b30459b8fa963f586420b1a99335c4 DIST github.com%2Fipfs%2Fgo-verifcid%2F@v%2Fv0.0.1.zip 4312 BLAKE2B fce223ada80ee68a184deae87dbf8c14917afa39fecfb5e56f9a584833c6f88695af44a96e4f8a24125000f2ae452ee8e2e1dd0e9bfc6136549de0aed6bdd948 SHA512 9a9206aa7e182c704a20e772ce7cf62707a1391bb6d14f8ad1a311fc1c19381df4b3134dc301cf58d4153aa982324cd3a74dfd08b0e7e103a51e05661a2be174 -DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.0.8.mod 569 BLAKE2B 6259f2de3c4e0b64981026b6c4970e66da6d80c3a8f098673a2ae94946fe0460f09ec9e159821ddca5d31b69b0b980ac08cd7af4ad7b4658b4c022478d333d35 SHA512 5040afd311067ca7f2bb51046ff079fa175ca25acb65dc772955f087a2e8cc4e279380b24bae63adb779bc62cbece603693234d04a3c17054a19919e912abcee -DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.0.8.zip 58606 BLAKE2B 497a84b691b53c98ea693b97d1a925a701f7c0232649626b046222856c329ae611b5ce25154956dfffe59abba0788cbec3ab79b607701d7c8e489549b389c37e SHA512 b7c0017447898f4fa1d8218ff0f9f1b665fb5e93d35821d60744792ba3e35de3ac153ceb5c013b14a4d2c4a2b79ef7599ca195e5bfd68ccd6106c5787f47eed2 -DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.2.7.mod 447 BLAKE2B e3bbbbe8fae914698261cf6875d94bed92572db0bbffa0df63a4b14a87fa34f0faf1b5fa89439df5517e386121b9bf573ff6e5a0dfcc4ca26848a66a4b1eb8ed SHA512 c3297b632a5a30eebb4d8706abac3c5abc4d5318db1d30fb56e8273cac5db1167decc4b4a6a005510294c3eb1c090806e1edce2c9c8004d44d6c98df84e600b1 -DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.2.7.zip 63183 BLAKE2B 2906a2f358e390044480aa20e01bc8039b3a99d064359534e8e36e33e722c5af5e55fdbd1a827e93434be30937fd004457494dab0a9af12c7d38eefbea823642 SHA512 52528744a4c1fc37873bcd19623d40115e6d83093aedefb2d479f07a3fd98f79b116458b3e6e98b9b91a8d5ed65d1ca9ded3690874405a6e87115ba7ba84bcd2 -DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.0.mod 457 BLAKE2B 21247752005a9df0da80fb64e912e64569d060b6f658aa5c3a01494e8a5e83c99c7a1ab3bde6bbd886a091941775186e954dc894ac33e94f87fb6034280da239 SHA512 18215beec0b0aff9a75ab13253864e2efba2bc8e28cdd5e607f02116beb672d08e2323a7bb22799d6d9762ad70e7866048ad1e8c50f4ebf0264a76f5c7523f69 -DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.0.zip 24899 BLAKE2B 989441225f4b6bd5010828b3f394cd2d5bcd9f0a673b3787915b56d542a3c8bf2b5f1075bec0a929c73f9e493ad75e425eb3b8b38d5bd181c77934ad4863243e SHA512 8f2a1b6ff593875c03325c644d48d997d0e6988170d44ffa91b5e89d90302a7f04cc65dd86e5904ae16f84411fadceed952a5ebb262a97bb7cd156869f0d681d -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20191108012745-28a82f04c785.mod 216 BLAKE2B 31520e12c44751d387159f29b92d18b751f2c3e5d1cd31c76cae4b2e43938011eee5a33b8f84b7268bdcc0545502018e99e51d7332dea2883ea6193e2d9e140a SHA512 6290884b8cb585ee84373aa05c91e291e3a2848cc317c7956c2ff2d56d90b296bb49a6706d0e813a52a093f5c6610c572b751c72c6a94044326f0b88b7d942ff -DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20191108012745-28a82f04c785.zip 163588 BLAKE2B 4945948e4c99ca0049a7b8e63ccaffde6b195a7698dc4b66c70fae892e10dd7ee973c6e833d1986bd96fd8f80726aaa4452c757e548cd20a510bb362a6d8f52d SHA512 ee632eb84f39a5ea0b91d2a6185bb7c68232f2ed2d6cdb4e310e6effa05f6de6fbfe2eac8485cb02e61584510029b150416227b5901b5dab544c60703f91045f -DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20191113031812-e32bd156a1e5.mod 764 BLAKE2B 282cea0a491e4eebbe57456e531360d2ac59510d8f4d617768c0d566208c3e7a883fc590dd1e79db53035f5be1ca86dbeb9dbb1486c376e6fd6e6ceeabddb475 SHA512 36b7e4a48b979481bec35b53949014dd432ffcd1a7a2eaa06261f134fdd82926c6f7d4b7fea91a6b5cf0afdf29f594835c8857e3535007ae1ddaac00fe310d2a -DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20191113031812-e32bd156a1e5.zip 41230 BLAKE2B 95e4174ea874ddcf863b89ff3c6ad08c07ed4a9db6eedefb989206b1f6d10b68be00adf79cffa9ff2dc8d1d8ec97f8cdd3ac7919499d32d2c8183fd8b680a276 SHA512 29488376eb41dba36bcd6b7f5f27a2c6f6ee41c78f69c50480f68611b9c7a476c90c23fc2fb8ca412e5a79adab3d8fdcef7075408ed3e6fe1318f2bc07c2646b +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.3.0.mod 447 BLAKE2B e3bbbbe8fae914698261cf6875d94bed92572db0bbffa0df63a4b14a87fa34f0faf1b5fa89439df5517e386121b9bf573ff6e5a0dfcc4ca26848a66a4b1eb8ed SHA512 c3297b632a5a30eebb4d8706abac3c5abc4d5318db1d30fb56e8273cac5db1167decc4b4a6a005510294c3eb1c090806e1edce2c9c8004d44d6c98df84e600b1 +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.3.0.zip 66955 BLAKE2B 03d3396a0de6d59db41057589774b31e483bea000d3b74d1f23d55af05d4d72786d787d36d7664e77d79c7631cab705e349bab5fe9b362d1b2bc489b01b018c0 SHA512 f90ab992842ed388f4d5b82826332731d54b0a103c22c39b021be2697e707d887f16f7b88f9d19243c5f392b8992b6d0c229feef2c18cd0207f3b9709b52f9ab +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.mod 493 BLAKE2B 97e0de538821bee1debcc186701f3ec09c6a731cf539b749db89b698345d82e750b8bb9576adaf82692e3444a12c5872f4f9bbbfecfe6ceaca884a176909ebaa SHA512 2bd8246ee757df2474875153cb7d910c73efb63fe5d0f86f4e857f1ee4d8407f54189637922651a2abbe869fe9bc130428dd69faa76f8b09a0fdd5243a44bd37 +DIST github.com%2Fipfs%2Finterface-go-ipfs-core%2F@v%2Fv0.4.0.zip 72653 BLAKE2B cdd97ecd9a313eb7b1cc63b614779fbc0ab78be25ea9e982e5f29339bbe001fd03dd7d001d4065817f4131e467ae51f5a5194f95753bf0da3f0d24295ccfaad7 SHA512 0ff2055806935a0d0a1b6cc7299671749d70d18c0c4d2b6ba98a358fefb488b97a0d9e469672dfe29ae6e41ab02f0d3ac661a44a316df525acb786100a8eac40 +DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20200429200904-c222d793c339.mod 458 BLAKE2B 11adc611561dfc8bfd1f9b0f433ed4a111a695a06d4839b1f9ef880f4ee59ef31ae764264c86bd14a359d4d2f5b8377e7cc9b017474d250c50017f039cefd437 SHA512 e82f0bdf4e96a5f273bdda7dceccbd632bbc915a41f1198a4751a1fed882759b89c3e2350210d1b6972ab85f8319f7de374f9940a4de1a18767c1a6dd5ea3e53 +DIST github.com%2Fipld%2Fgo-car%2F@v%2Fv0.1.1-0.20200429200904-c222d793c339.zip 27568 BLAKE2B caea76ff99d2350b89f49275fcdc71fed767a252fbb7a7ddac5bf1f98495340da8722f428d00a908bbbe6f45c6157eb7bbf707ebedeca3a7acee5774d5710679 SHA512 f6fd548d761c87364f859aa6b274d99dcb25f0c4265d21b13c22d498bccc5cf03674cea4c724dab276e491863e29b4aa8daabce59ca752300dde7df2ecbc9c1d +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20200428162820-8b59dc292b8e.mod 551 BLAKE2B 6c6e320331a52ace256e6b9e813caf0084ec6de0f3c52848d2c9d4652e8f4a2a310c4adf09496e27ae31221bcac99b1f8ba3456a63e4dfc3ddb3f0da46c0d670 SHA512 f601cba042ca44805c5bca6f09109a43464d662df7559d4931be7c2b5f09dbe9a3a40b9ace57a6bf87c7138c36302ee70bab25f6cfa74c7970ef3a60feb56159 +DIST github.com%2Fipld%2Fgo-ipld-prime%2F@v%2Fv0.0.2-0.20200428162820-8b59dc292b8e.zip 264025 BLAKE2B fa66e4dfddb463019b20d2234ff37e0bfb66987c61478c78b8efd4a8f2b7b9d40e142bdff20eed3b03a68e77432abc273a97153ff3444f4ae7ec235c05cbdb92 SHA512 18fa25ae9d5a78a570a85c739fdbd8f5d84fc2ac47591c1ab86c3b9ec04e47ce74af1337bb6b62c9e87ab975c9aebd63b7196d6575cb31230e148d551201483a +DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200428191222-c1ffdadc01e1.mod 735 BLAKE2B 90434ddc2f5b99bd0b7651e2f888bb15afad058b924dda150734fbf5d2671c6cf4c5b48bc2d678e7f7bf5f73a20e67ca21370ce23988297f7601e9921f624149 SHA512 4c9f83f57d641db0ab2daf74bd19f5cccd6b7a430e090e5c0d2c7d5dcf952af6ba6201f353f3d86e82f6bf092090a0f7bf9949e4f1a02b48bb9562a7bf9293d7 +DIST github.com%2Fipld%2Fgo-ipld-prime-proto%2F@v%2Fv0.0.0-20200428191222-c1ffdadc01e1.zip 42206 BLAKE2B aa37bf2348a567c94bcb5e4b08716230044590f83c522732d2fb9249c83035c8831deeb6205b1b77c4add3af6b55215094e502af931a8930fb8427fa19237787 SHA512 59afebb41ae1c4e07429a4189b1e355ed0023c99da7be287e44dc570d8aa77016a898b1fea9fdd56a8906d2d4376d5ac6894ef881bff753d37f5000aca34df06 DIST github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.mod 34 BLAKE2B 696d74ba109247fd088f7ff14db1ae77a4a755dacf04e355aacd8c11e8e2646c2247f3f3ac947289a36f293615d40ae25bd1c3cab656e884183c97e46fb44056 SHA512 be55172330f6088410e969af6a419b9d30e8dcaf6f1c240b55e97df38e1a8d85c8e84ca1ddeca2075f171806371fa524187a24945fa6cce0e8612acf97ff60b5 -DIST github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.4.zip 7044 BLAKE2B 3afed0868864a0fe721bacb86db9cdf4c7f137bb01798f1a89b2a479cde22ee66e930391c7808ffd9310ad2862115812c3840b6e91ba13512d1e2f9ee34f501f SHA512 8eb55b855fb9e855ef1ff9c84b71db9cd74b0f6f96de455c7a964b34362d7e04bd9f0e06a2777abc8b0d7241f4ff9e27db1df0fe22104536dcce9f7ffde0f4e3 DIST github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.mod 34 BLAKE2B 696d74ba109247fd088f7ff14db1ae77a4a755dacf04e355aacd8c11e8e2646c2247f3f3ac947289a36f293615d40ae25bd1c3cab656e884183c97e46fb44056 SHA512 be55172330f6088410e969af6a419b9d30e8dcaf6f1c240b55e97df38e1a8d85c8e84ca1ddeca2075f171806371fa524187a24945fa6cce0e8612acf97ff60b5 DIST github.com%2Fjackpal%2Fgateway%2F@v%2Fv1.0.5.zip 7343 BLAKE2B 436bd84adabac44091873102b8c5161098a67f8799166cb6e11dd82a5e0781a8c138df286d73feee9998ff46853d0c37a6ed28ea14b88de0e42f57704a17cec3 SHA512 6b8fe83e5833685d0b274bd97212d05f936f4637eb3251b9d4babaaae4c60c420ebb8fb206b973e2a56eea470e1c4709439516e7e2afc23d2cadb1fcbc441030 DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.mod 37 BLAKE2B 6679d72e6167e53e5fab71f0359b872603f59f3847be944ac7350fa68c9c6fbf600187d168b666cb491f45ee9b07bb670026e4e19a8ff80da85417240dc004ce SHA512 9b33a2f10bdf31fdda6799d21d19ab5b0d4b6f7945d06fc56b73c8a73eaf7b3bb786a8992b0b5a98b178ce5993dc3ec6fa87f4a02c65dea2222a1675cae518b2 @@ -519,15 +474,10 @@ DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.zip 6125 BLAKE2B 08cf603974 DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.mod 37 BLAKE2B 6679d72e6167e53e5fab71f0359b872603f59f3847be944ac7350fa68c9c6fbf600187d168b666cb491f45ee9b07bb670026e4e19a8ff80da85417240dc004ce SHA512 9b33a2f10bdf31fdda6799d21d19ab5b0d4b6f7945d06fc56b73c8a73eaf7b3bb786a8992b0b5a98b178ce5993dc3ec6fa87f4a02c65dea2222a1675cae518b2 DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.2.zip 6553 BLAKE2B 71b7387607bb853984ef72c2d381c5f830dccc2df5795a228a53abe5b4534338e5a09da0a402eada76c827d6161c73b9c514286609fb08542a3ce20aabd28db2 SHA512 5d3f18907b48533c9d8478ecf151e8e7eb34994e817ab8fe9ad2a216fc655e5a830ced5715fb5576caf5ecb6ec0b5ff4e80b31aaebb9f6ae6a5001f2bab717ea DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.mod 34 BLAKE2B c2e16dadb99eec1ea0e45c4e1d08cd7e19b67797aedae41a8b4ab2a84cb8ba4c3468cbcda4978b12be555567e8fed4373215e0c3a51d7aeffffa2d2110f5adbd SHA512 dab936b3de2ed8fda8f8355ccfa5ca364774a76ca78d6936bfdc681d4ad12a9a0503f8bf9b4b6ab12823950de48ab461dd5878fc5f4e61d986f3cbf6e6ff165d -DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.0.0-20150120210510-1bb1476777ec.zip 5374 BLAKE2B ba13ea560a4b5c5ac5a0d544165d1cf7b54b2e5231f8819a198ef7c0bfb58994e424623492a351c6507e7de87abf05040accb7ad21ec775273b9a3be5e622638 SHA512 516833464386c2a59b8ba8040f5f6eec4a5eff32c88f92eef9ad52c24fabe6adbb09e0d8a78cb4760340c757b90ff077c3efb7914dfae3584b3e5722161418e8 DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.mod 43 BLAKE2B 8dc289c9597e0303cfb6928efc2131bd198d151cda1bdd430b17f5ef28be27c54975bc3678772e7d7ca9c8c4978c3b714b1ab80b2869433a4102fe07f4069a91 SHA512 c38867e02b811c1fae7b8ee41d115a3406b05a8866e4c84254be52828cc67651e29955fc34dc6ebf1912ec99cc43aa5fe8c5a219f148df07b4df43993f24559d DIST github.com%2Fjbenet%2Fgo-cienv%2F@v%2Fv0.1.0.zip 5147 BLAKE2B 40ed96ec164fea71d79cffb2e3bafc8247a16a0ea098e40ee15e6d46015ce136e467319e08fdd8e165fa664d09571f60fa25ebe82be2b5967b963f98517fc4ea SHA512 c65e48c4ac6e1d6035a5b6d83742f39f71df7d21320f7ad5699b52c0c143c30877cbf4951d0a0e67a45a0a22b3e56ea04c114a09db475234c52d3b41dc760d14 -DIST github.com%2Fjbenet%2Fgo-context%2F@v%2Fv0.0.0-20150711004518-d14ea06fba99.mod 36 BLAKE2B 3face566779516d32818939bfc87f0c24ef4b03ec89330763cb2de2ab371a6a391eb5fbf24d9619a07719f160c4f6c403dd4fbe1c650764c5e0ff43a43051aa0 SHA512 fc1cd659d6210d91ef66189a759c3850b242b76267035f38959be2b2f35283b54a61334f4416b619ff017d39646433c5a13c6b181e53bdfb28fbc3f9c35f3dbd -DIST github.com%2Fjbenet%2Fgo-context%2F@v%2Fv0.0.0-20150711004518-d14ea06fba99.zip 8654 BLAKE2B 2a43429e35596402b196284d0b67ab0d12a380f87dedc2866ad300280095ef93e3c67c924949870a6e5109f4cca46c18e79adcc44a3689a1ac089177c56ce686 SHA512 bd003ca9570bd363ac70b7e2e6084c033b1255939759c2e07ff8e247a46b54e299980a310c430a0b3d81280fa61d49959e7c4fed94e6b70d36f16a034568a5a3 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.2.mod 47 BLAKE2B d2251e1b572e075999fa2507c8ff93170dedde449b9b3bcf8c23c22d986753daaf0413058edc7bf8c0b7afa14a2bdefbff1822087b16691a1e4a5e40b6928fec SHA512 4e8155cba23b0bed4292067c51601d3e60da7ad8b3671e817ab8d264fe9458180c7bc98682c0abafb5d67fd36c6c839d50fa2270a6905be96e126aee1b05b2f7 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.2.zip 13360 BLAKE2B 81eb4a5abd1b22b95fe315686492fb7e401723c8595210e377443b67f69bf32a92380c1151c4b5750d23fea8861b5ca165c77383330a26459264588ae49c2db4 SHA512 08aaeca99f7a419fc8a82288d7ae0041de071038a680b6c483002c279f035ad40236bd6a2dc40b581ec9be011fa78242a418e6de7bc9ddcc3977fd08b6e44938 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.3.mod 47 BLAKE2B d2251e1b572e075999fa2507c8ff93170dedde449b9b3bcf8c23c22d986753daaf0413058edc7bf8c0b7afa14a2bdefbff1822087b16691a1e4a5e40b6928fec SHA512 4e8155cba23b0bed4292067c51601d3e60da7ad8b3671e817ab8d264fe9458180c7bc98682c0abafb5d67fd36c6c839d50fa2270a6905be96e126aee1b05b2f7 -DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.3.zip 13367 BLAKE2B 47dafc3757ecbea1016bae0442dd7b5d0db066e457dc8f4299b074fa7d0ffb89500af783782383cd33f25c66a073b3ecf920247bb0ac2beb0174e1f90ad1b54c SHA512 dc77f1a916dd877fd754149833f6c03ab0b5254d1db5987c0d479a2c1c44fd0ac5ee308ea87ead08aaf51db21706a208ff96e1e395d7844a66378acfb80f72d7 +DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.mod 47 BLAKE2B d2251e1b572e075999fa2507c8ff93170dedde449b9b3bcf8c23c22d986753daaf0413058edc7bf8c0b7afa14a2bdefbff1822087b16691a1e4a5e40b6928fec SHA512 4e8155cba23b0bed4292067c51601d3e60da7ad8b3671e817ab8d264fe9458180c7bc98682c0abafb5d67fd36c6c839d50fa2270a6905be96e126aee1b05b2f7 +DIST github.com%2Fjbenet%2Fgo-is-domain%2F@v%2Fv1.0.5.zip 13418 BLAKE2B 909b312b86d6cf9e9e28cedec1c1d660f9abd240977b36f205d1eae39ad71ea06fe70677bb397a1ddaf3bdcbfc12c365393381398e0e7544e85c726d5a2c3954 SHA512 c7e74692470775a1f480006a8f9964020b08182ee88408bf0f5bdfbbac7605567aedfa67d270d00841b3606a51cf8a692abfe3faf1cd2761e6a5e54df062b49a DIST github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.mod 35 BLAKE2B 8464955b40d739b7042c889772a3f339ace8349ac8714472cee3d9a6bbba974485e32f39f7ad90ecbf8594982ebd47dbf41f80127309620773d0a3a0f5e5e237 SHA512 6d4d220075f976723b7bf6988bfe0a24fd9659f291f4880dc82917e1609de11f65af1a19f596b0b3e564df8af2334a2f1105748ce9b00093e85be3b4cdb7eed4 DIST github.com%2Fjbenet%2Fgo-random%2F@v%2Fv0.0.0-20190219211222-123a90aedc0c.zip 5144 BLAKE2B ad04ea68e7fc4141abaf66645280bd837dd143072329f678223b10f61a5482ce437466f1953511cec249d8a32117b53d3cb626f9dca24eb4af01f94ac1d734dd SHA512 a17226f3066d1d26dc9f33aed3ef3788caec37d00714484da2237fb9fe6952d7b01774530e2ebac976a869438b32e500045e60921bff8378bf475096ca492463 DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.mod 45 BLAKE2B ecfef6e38aed40dc632d320effebd8e52e42d1325f81691d03bb11979c7c07566e1bdebfa8f7751561026a0ca8c4213414c8c5341ae058d4ac2baedad668bc56 SHA512 39fe2d35ff3d163620e01b24eb4c39b30f8bb109b8ac89f0a61bee604652c85cd026399a35e37910b57a445041d4a1a222455086e44e66d1938ceba0af155eb3 @@ -535,42 +485,34 @@ DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac7 DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.mod 54 BLAKE2B c98d354c414f26ded48316affa5dc894a074d0017498cbf85df05b6bcdd336cc493a3b76b0788d25a893376f845ff9ae93c49c06f5d6eeebef664bf6a1066aec SHA512 eaa89784e1c758096d699edf7f1457f7571037b78673081cbbefd5accb542a1548e09101f1bfc902720e67c717751b6d09a288feb04dd15790f1fc1f1d1dadca DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.1.0.zip 6191 BLAKE2B ac00f2510bd406d7a12f58f4b87e7fdd69760ef4a6227aaa47bfccb0a48028fd0acdaddea3b2ec8d95473e9a8a4f7cb319333cbfb0aa26f19ad616cd12d15412 SHA512 fecf5fc10b9aabdc4315d2131e1c52ccf0bab9ed82b9d858d7acf1f3afdbeec7b9d565ecefbdae6bc468490323b5624683e8ca53a13e623b9c73aa985308508b DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.mod 35 BLAKE2B b49ffebf1559a5eb050b6b3623ccf41a1c85d4701119311c5d13b837d7430fac7ceab7e78b0a9ff3698fb8d4e99af7d5feebc34b3199d75df8a106c8fde5f993 SHA512 8e1441ec3bd770b75dc70eb7b6ea7006e84b9327295c1da5ffbc927b5e20f4420e2ceca7a15e169b94cadd970dc659e070a004a71a0dda0bbecff3e89d329aed -DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.0.0-20160826012719-b497e2f366b8.zip 22136 BLAKE2B 47da48ef15fbbe8c5c8237878b8960f01edd18870d132f490c8f6028a8d78ff7a1245a31b4cf50f7a35b009838fb526a2ef93fd4378cf26eea0731295f774e4c SHA512 940b7c8abc5d32c485c83fb7ea2dcd1c80b02ba9241d83ea81b660be19431d0b5029b43f13044e38f3c45d92dcbd62d5182d6a3b04ad8e79db8e36f52f3c4312 DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.mod 87 BLAKE2B 196a568be44071802dfebf68a6c850845a96314de31e6176478265b87eaa604a0dbeff37639909deca5184cec3d119ed6b5e23eca680f03b90e318177f59ce9d SHA512 549ba7ee06044ae34357dd02133dbf8585d5761c3f06a1fb248505ec862a50e57927298a37d99846e4b4efe229b42ce751d58ffbc9ecb06715c9c259e4b127a3 DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.3.zip 23709 BLAKE2B 865178efde16a50d6ead37b10fb78b97cecfb994d5ba2b994500f70abaca8af60fa5c986645cdf90a0c01f2326be4dfaf3815763d6048fb82d1c7372cbc9baea SHA512 a48b51928b9c788a5a12cda2264f5103c282b950669a858800e53dfc0f91b2ec89bb1f8466723e83571fff87c2b8d364cfaa0055de0549d9d0b4f94b391f50a9 DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.mod 87 BLAKE2B 196a568be44071802dfebf68a6c850845a96314de31e6176478265b87eaa604a0dbeff37639909deca5184cec3d119ed6b5e23eca680f03b90e318177f59ce9d SHA512 549ba7ee06044ae34357dd02133dbf8585d5761c3f06a1fb248505ec862a50e57927298a37d99846e4b4efe229b42ce751d58ffbc9ecb06715c9c259e4b127a3 DIST github.com%2Fjbenet%2Fgoprocess%2F@v%2Fv0.1.4.zip 23744 BLAKE2B f09dca3ad526a7cad611f4706a0f080e2cf93ddc8b5a1285c7f8044b6dc3429631a5063a63d6d0618f5829307f830ae1d989f5b3fa1e0e67336993fc583a44b4 SHA512 1e44d42647a66ce78c51a0a4f9d22808c3b6c3579e5d1e054a9831546ffabe9037b2d9b30f9ad7b1d1de20c575a7a5f6c1bc7b8a7924136c3fb5ada05a39b0f6 DIST github.com%2Fjellevandenhooff%2Fdkim%2F@v%2Fv0.0.0-20150330215556-f50fe3d243e1.mod 40 BLAKE2B c5cfc13138ded13b58e87927dab91ee13e3c849559ef067ff5dfc7886e454946daed9a9c916fc33e7ca2d090ba3e20b66d2b3d5cce1ad52455621659ada6ddcb SHA512 400eef69c141ebd20b3b38df86e95cceac1cc214b0ee7837ee84c6c0acc96097a459add9ff20622f1fc7df10e7c525fbe1b573a0b0e7597678c9a8ebe52bc564 DIST github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.mod 36 BLAKE2B 67fdbc6d14995318979fb3e5575136262165afd7a1582f078d2c84c5d7fcc893f52707f01d798bd2a43e1cef8fdab6613f34fd9e4f5f1f6a61d91bf09a55ffa7 SHA512 5db9838fe6a00be9849cb79ad148813a573b652d6f6cf220c55b68bd23636016e6bddd6733f6b29d63e5f02d2750a86c2dcea6b964ceb87d4048d5c5f3cc989b -DIST github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv0.0.0-20141203071132-1679536dcc89.zip 69953 BLAKE2B 04a6685ef6886d9573a212e56273202532d424612ad3dc25d09a6a3b2bac307f08d79d746910277e32ce675df7afc35bddd43f4de01706f119c55cd98f876c1b SHA512 cabb702d59592bd4b4511e93c2378ee34d32484f530631e3257458f77169d93f0db9583f046e74dfb9e0697a43f1ec71b9b678e58e6b30360f03714a1be9aa05 DIST github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.4.0.mod 36 BLAKE2B 67fdbc6d14995318979fb3e5575136262165afd7a1582f078d2c84c5d7fcc893f52707f01d798bd2a43e1cef8fdab6613f34fd9e4f5f1f6a61d91bf09a55ffa7 SHA512 5db9838fe6a00be9849cb79ad148813a573b652d6f6cf220c55b68bd23636016e6bddd6733f6b29d63e5f02d2750a86c2dcea6b964ceb87d4048d5c5f3cc989b DIST github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.mod 34 BLAKE2B 3554aabb23c972e7c781764a6567185f03aa6ec5df9bef7efb4b8de72e636f05cc46fd9a69792890947a6bc87f2487acccd632b04bdbda33c5defd722599c2ca SHA512 3f05b1093804c352af0a61ba1d85c7a381096fa2677404521fa607ad4603f8034cbfcf1c813399449b8d443107eaa8bade87f87b6db4dd957c938d832c97abfd -DIST github.com%2Fjrick%2Flogrotate%2F@v%2Fv1.0.0.zip 5335 BLAKE2B 93fcc8dce83ad10ab41f652d879e8bdbc3f7eab5da951250f52cc7bd851f7d6fa0f0cf071198bd28a33c9e6e97bb893a92691239a40ce1bef1a2e71f586372f0 SHA512 7843d300b0c2947dcaf5868e4b88786b3f64bfe068d6a0f1968a43722a1ed89bb5656151f746fd19898877213e5630d07e304e0081723954c88feee42b2df6e8 +DIST github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.10.mod 295 BLAKE2B c143c3fdf7abf77b2a2f55a66f8efff4f0e99478a89cd3cfaf50fb042e0da2fda5dd1e203c227597cc2caa7039f269daa48339701233a3e21f898eaa028ecc87 SHA512 395eb3069c417f996120ec06ea8d7a712f6d8915c7398da1f346c5bf5e0fde4492bae0ff3833f3316a41a28d23fc7c9c494db312da72d5cacdf52b2bb95da6ff DIST github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.6.mod 35 BLAKE2B aa26eb3b67893fa913ea0f88bf22ac283c6cbac246683f41ede681940cb2e4437d033811fc12f2b47f9d94337dca9cdc926fbb5f044b2caed19c8e46a5879432 SHA512 e8bb59637bc1154ed648179314c4e20fa7f549353d094f4861e2fdfaeb70da1c1711c1159e78d82914a35b8ce184641937efd8808ffb1384136c7a6f3fbeb78c -DIST github.com%2Fjson-iterator%2Fgo%2F@v%2Fv1.1.9.mod 295 BLAKE2B c143c3fdf7abf77b2a2f55a66f8efff4f0e99478a89cd3cfaf50fb042e0da2fda5dd1e203c227597cc2caa7039f269daa48339701233a3e21f898eaa028ecc87 SHA512 395eb3069c417f996120ec06ea8d7a712f6d8915c7398da1f346c5bf5e0fde4492bae0ff3833f3316a41a28d23fc7c9c494db312da72d5cacdf52b2bb95da6ff DIST github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.0.0-20190106144839-af01ea7f8024.mod 43 BLAKE2B 02346f7c8a28f8d40ef233bc1fc6f3cee54a54bfd79b374ab7f3435039a5d9f7da5d7fb7824c618d25034cde1d355b503bddd76b804d610828a080ccb2707dc2 SHA512 801663d67d1aead6b01df89e329c8ca969a1f860b5ee2c2018094791060bf6e8cddac8e2d788ac823e32278d4e9ad1dbd72935e4da2cf6e65a34dc97f195ce7c +DIST github.com%2Fjstemmer%2Fgo-junit-report%2F@v%2Fv0.9.1.mod 51 BLAKE2B 4cf5f813ed021b04c810da33b332dbf44f45594e3657779687cd24391d2a93770f2a0e8999fa5a8b6564da5e08ed9fea1e52394907d518ea14a9568adf263e67 SHA512 c5761bc45d554ee6639c4ca23fefa5fc5c8a7c818f8f18d0b43aaab26c8114615543a1be207f5aedaef53c2dda623edeb7d3ae1c5ce6b72ea42605a1d5c31667 DIST github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.mod 29 BLAKE2B 8efd6f84dfcb696fa2ebf7b09c7405d57457dc67e03a2cc753cddd93698b1b03d84022f241c4b652dd80e0521b2b1ede8127fa15dd47d1f678a7fe1c31fafedc SHA512 3a397e0ee84d8d426eb5a1f39c07d608e0ed53b1d4b2fdbd137d23bf9f401840802d18d5203bc468fac76402c508bfebf49bb20869d8a715e44c49e21fd3da4f -DIST github.com%2Fjtolds%2Fgls%2F@v%2Fv4.2.1+incompatible.zip 9872 BLAKE2B 50868f91729f65d64bbe9dca73ffccbcbb31df9bb30c383d104eae3174551ed24b6dd3048b5e1da16b754d618d4ac5d1ac1f455466e7a8a09f77dd7071b16ae1 SHA512 e3b41d60f9467ab7aaa2f2647deb572d95e5e6582dc15fabbf146d3004cc2e19aff6dc862d7cc33f6ab3d64f38d4f9457ad1e55dda3e176d84be1a9001325708 DIST github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.mod 29 BLAKE2B 8efd6f84dfcb696fa2ebf7b09c7405d57457dc67e03a2cc753cddd93698b1b03d84022f241c4b652dd80e0521b2b1ede8127fa15dd47d1f678a7fe1c31fafedc SHA512 3a397e0ee84d8d426eb5a1f39c07d608e0ed53b1d4b2fdbd137d23bf9f401840802d18d5203bc468fac76402c508bfebf49bb20869d8a715e44c49e21fd3da4f DIST github.com%2Fjtolds%2Fgls%2F@v%2Fv4.20.0+incompatible.zip 9901 BLAKE2B 0c8cf7ad0809f65d91b9ad5b27759cfedc5efc25194f19effd4b19c35c940461a48a57636ef3c707b27ac614b693ea05830bdef6943f11993bf561ef558cb99d SHA512 08b7201a9aa3294a3fc59bec78fee09f0d1bc7507b50b1d1cb1fa29a523c6870d00b633ea9679c9c86df9841739f46e9d5d9bbf0e3ec15b8ad08e57db67eedc0 DIST github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod 43 BLAKE2B 2b7883d00bddf90261a91670917e335bf5c59101032ed3ef5ab6752eb4da25e8417071b1d0021441fd887158b519f4fca4b028b6ea52fe3ae9a41b84441c8c06 SHA512 60340233f2a0205ee4b1a7b2d78ed52d88fe5d39887413d0e62d6ed006c51eda83ac117454b0c1a31ab29c5aceae13810ec719dadc554d10480219c1afc3e5bc -DIST github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.zip 27708 BLAKE2B 9eb8dcb372c62b421c7fc99730e388309bd1cfa623becfa8fc674ba212ffa3a177ef7191c4933141c3d2a191c9c683647d38ff01a3075c01ac89ac1019de6030 SHA512 61701d7f06488873031e92a31095560fa32f80948ecf169391a64b32c1162fd59d2efc2cd6a62ba0d60a392eaa8676156d088e15da4dcc441a07e65320c1cb0c DIST github.com%2Fkami-zh%2Fgo-capturer%2F@v%2Fv0.0.0-20171211120116-e492ea43421d.mod 38 BLAKE2B 117e60517606bdb278aff6b6df77e9fbae55c629a3754597ecc81cb2c15267fbc03f0024a4f9b644bddc345b9fb173db06350fd32f515d093a973d2c62e2d6c3 SHA512 b6056c231cb3d50945dc3f221da90cfe6f9b04fbe895193d842a83def58fd45615ef8b22926043e4737cbcd260efdfe13c2255ae80c7ed5bb9088b278236a031 DIST github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod 143 BLAKE2B 128f8934f81d0e497e1258ec65129fe5d8831b66058669a5aef3fdb2fbe5f6d8ab30bfe97a1de7befadd34aafd55d6d15bb787e8948fb7718761392817203874 SHA512 c5e546822036a7114a29454e28290f8e1082392a47a101fb1d370e0969fc2c83186b4487473f903dd638abb8a763ce3180dc87993906895a2df33db7d8bc4790 DIST github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.mod 98 BLAKE2B b9d3c55999054ed927f666a43066ccc6758a6c5f550651f43ad5d85b5403c882ee76ac2b2553803d71789da33c60ea41857ed545003072ab6c666dbb77118e00 SHA512 3529b37d770af511a716a612b7fd7fb6a4805d13166e3a6f9378950443f6eceb2f3d95db5a46027437ce55b36e571c75bba72a03769d21ecdc97888019d80a68 DIST github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.2.0.zip 21331 BLAKE2B 9e5e52229bde22035a34b7d3883106b3a663daf914560887db12c6c1112b8a94f13c4d0067d1a0958df57f0a4b0c3747ad61005501505c5eb63faa547ae63c96 SHA512 65d0271eede1389084e66c6d1bb547b240aa97747d6b7e74b5edc99cf0453eee10f24d64865b34c29a6a536c138942bb6d070b639d23bc3e78af3a7eca6949a1 DIST github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod 35 BLAKE2B 2f43dcbab430f12316fde243db4bafe24372c74d60874b05917269e249a36660309c23da151db31d89c0d0a8fd0f179e2dd7f386af3ca533c95ef74017609af9 SHA512 86aca37f7f94ada381e0528a535b344c8fdbab9e0dcc7b71d716083501ad3d61db701ee159ccfb5455a351fc18a405301abe798037dd1200f9950bdd805d3dc9 -DIST github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.zip 18981 BLAKE2B c940bf7f20236ef2b770dc683b5bd5525bc1413c86ae63dd328b2ab1aec7a319d5201733cc832b31185027e27739a6dcd5277d76856f1f95197b3b7797a23bf1 SHA512 9eba5f95e6c5d29b2928708ed91b1cd5a023f0b7053b5529095112a2190d097ba26be7f63b7719f7ee2ed29e698bfe7c4dfa0b33f60b4e475fd1d420453fe7e2 DIST github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.mod 32 BLAKE2B ef8053acab503fd01809102291aaae3aa8b492bc3bee24dd49201ebd8ba17a68c7d86e44326692b2f9bdd7d59a5197963eacc8f8191ed51ff77baba2f8e25ab9 SHA512 3d3b4f2ee0f2a150983cd17b60e1056fee31445c544151a1051aaa8f9355796ae569d218aeb717893807ac4092ba2e96901fa376edd20cde64a63628041f6ecc -DIST github.com%2Fkkdai%2Fbstream%2F@v%2Fv0.0.0-20161212061736-f391b8402d23.zip 3528 BLAKE2B 839072c2cdfda89cf928a51062757efdba150b1465c7546c0c42cc18ee3a488ee61852e802e3a12c0032bbdebd5a0cc36520c8229eb8200ee33026f4b23438bc SHA512 13c54bcc76502f572eb1efeecff8098074542d5c29180a46aa56d89937b60a4a013c1f5ed1228b0adcf89f61e695e215272f9874e17a48f0495bf215c0059a9e DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod 58 BLAKE2B 4cf48282c28d2b8237fe9ff852ad25d102cce038fbd1852a1938bcf69c895df05dfdef6e533b3c0b4da28103eb5e3a9561f802414ccdd99b2d3ec2e2db0807ee SHA512 fe33ca4de6588b95f0155458b8b6daab218553b58de5dac220efe54019dfab085838cc6a22012a106fa36a6094447f744825cad04aaf0b158fce5aa676048fe5 -DIST github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.zip 3567 BLAKE2B 80b7bf217df9367160180d44c1fab6a9f10154bb9a6455538860158a08c5bf8c794fff973b899b1376e4e65764a9aa0d6b8b162a6d9ebe1adb1368b9a2a42786 SHA512 27910ae03fc9fbf573ac31454635c43bfd771d2a91325eca544f7be0e24b43c2798ed8e74b4c31e8c20c1a9cd266b835017aea3a3e24c2ecb43a14a6143af8e1 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.mod 32 BLAKE2B 08703857fc49c129e7dab411d216e6127d8918cfebfbe4f1ce2095eaca41d1acc2c7471571ff79c77b7494846f44c7ac3ff6402e4e4b9b8dae1ee4268f44d6ec SHA512 5d586ffb024fe93b485e355ab197ddd7e3743e87355b94296ce42c6761f6a8b3a31d23787429b4a9e52a6f657025ec573942a7756a0ca5387007fccdd2470ac3 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20180514024734-4a0ed625a78b.zip 16451 BLAKE2B 19bd42867a679cf4368ed2e5c85e6dfe7a766342f37e67fd5ecc0c5a3389c1e5b52e1d62605c84d2cbd0fc2c652cdc2464a20d743768184f77086abb5b26e516 SHA512 d1b5dc39f9478356531d4950592237cd8575f6b330e06e3367da454f3705281aff97acd7fd92c5dfafe517d928c8a4460d5bb545d7127b3551d2fc917525d39c DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.mod 32 BLAKE2B 08703857fc49c129e7dab411d216e6127d8918cfebfbe4f1ce2095eaca41d1acc2c7471571ff79c77b7494846f44c7ac3ff6402e4e4b9b8dae1ee4268f44d6ec SHA512 5d586ffb024fe93b485e355ab197ddd7e3743e87355b94296ce42c6761f6a8b3a31d23787429b4a9e52a6f657025ec573942a7756a0ca5387007fccdd2470ac3 DIST github.com%2Fkoron%2Fgo-ssdp%2F@v%2Fv0.0.0-20191105050749-2e1c40ed0b5d.zip 16532 BLAKE2B 5281687d4195cc7ddd62fae6c46909fbf4eb09c8e878e456f84c3b2c3d97966a06917543ef76de776ca341d89284d19d8fa5ba162107e231d429d25dae0b6c74 SHA512 de2a23b80bf7b8cafdf7e9a9cabc51b4440e496dfe5c59456ec224a64c97341811ca0a9fb07e9d70c0004b9c52792510549702cb832b435935f1accef4924375 DIST github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod 28 BLAKE2B fddd4b3cdef60f53bc3f8da5a3154d10b49dd180c12837d3740c22b442947cba2025649f3ac7321bcf0c73a272527659b0ccd9be141ddca13caa7594bf6ad3fe SHA512 3c623d077e39697506174a50c0380cb7787a05a52819b1a73c2f64ba8dd819fd500777de83c83d8d9e80f19c828128a569b4cd783667b4d6b9a375b0e3d527a7 -DIST github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.zip 9142 BLAKE2B 0db0e9a6ba33fd156c75943cce1b95385e53593d7f6957f0e6375b38625e1ee60a86b80229ce6cf0ee33de603fb0788892d0a3c3cd20a6969c1acca2521953da SHA512 5e493f08d6a45e8e12160b8c51eb380156ba1d2382523e1be159fa16d15d7ac32c8bbf2861e74791a0fdaa06155e95ad12b5f4999515a9a69dad1384ebbdfad0 DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod 67 BLAKE2B 2e1b4a8a38998179a32db321d331db54f881770a89719410876cdde1799cb8558ca2862bc70838d606540606d05918c4b115cf1c125945a77ed376c2efc4aa85 SHA512 4d841fc7a022e4e09e0a95925ad92a75809a67c30fb88de9190e4a2196383038dab9a5b3294b6a0b4786248977a0e09eea857a34100cbf22f8a52912ce9fa58d DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip 11159 BLAKE2B c176e4bc9b5534b0df153e027f22be7d28eefbea1c0adab10979f19d601b95d300c54086b5ee388f453c73b9931339b9b04208fc5e6512385b348c49faff5488 SHA512 bad73f3c47f70de55a90a977a1e2b4a68de545a8425c71533de081c7a8f71d7ab1b489001c56ba2e88dcb78c08804275f7f8128c812f50d005a074ed6dd9286f DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.2.0.mod 72 BLAKE2B 8dbfabd447cc847f4616b959e52fd3bfeef8dda58f5aacdfd362f28d0b530c8e1651a38ae742c2d9ad8d9b0a055409a1840664b1483df73956a21190395b056b SHA512 b920109a2a1f40e2c7bb4dd93d07138228fac3064b780449a38bf5e6cb0630c6b7bd79eaf18b35e0452846e5059b0e192682b0aa93cc563c6120816106b9f11b @@ -581,24 +523,24 @@ DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod 64 BLAKE2B 475c51201a379df2cc4ff8c DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip 12591 BLAKE2B 944b0b9a802757e78e3dfb11d6c4d79e0e0d90489d49262b7079e6ea4728328457f8773b392c8a618aacb5fdec78948a16cc852eff71ca6f4fb9eb422c03890b SHA512 3f0d00b0545769ad882e25a9a6f30b96ce4b72a8a46bb3c064907c94e2dda4e499eb32354c149f89752f9bc5d1ee5cb2ee5cafa46e2f65ea329fb432d0c0029f DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.mod 215 BLAKE2B 5985386dbe202af63b85e4c2f8cc314d7c52c351e23756d21237e548bfb7e671dd07474836726e28bf011e34af5960820769f4e215f68f76f7d322f9731c6908 SHA512 e8de94e6e8493287d759f1cdde1aad773baf7f0419e1e8f3483fb9c3b7fe32ba4c95c193f322c82cb7c0aa7df6aacd6083679fd9b060c7bfb890fd15b4a84e9e DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.1.zip 11312 BLAKE2B 77a8326a8ff400357f73e4e391bfba9d53322482ea460b4c58d9a0492c255dd075d54a5ef24fe2a817043e90eb09ba9d3b7c634406f2593813a69b19d548548b SHA512 6f317dd68c03108c3f8eb2b1b9214fc11581ce3d5ca3a8ca2f3ac0cb621af1326c536781ca9ffce69cd10b43d8b0901c6418de82ae0782c0904427ca98da85e3 +DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.mod 185 BLAKE2B f1c386524ba3bf35fef03ceac61aa01057c1a3ae40d9bd117bd32db490185a6f1e82ab7ac65bcb51e1093db2f569e18a52b0c5ca0b587d8510e7369ea3af33ff SHA512 e85f16734a43caeda0aa046557772ecd98bb75152a1fce2b70abe95d18db65e9d1bc85aff943a0a9b6c7d335358b4764e8a4f834419af395a6f5dddf19fc1743 +DIST github.com%2Flibp2p%2Fgo-addr-util%2F@v%2Fv0.0.2.zip 11443 BLAKE2B 1cccf7f07bdeaef7d24c7ce7476ab4cbcb28e6be1a1db20aee7ca06f20fd7e74217d2c4859e71153a47d16aed5ef9a1a29a73c2117500feed8a8593b710461db SHA512 e58436afdcee50c6f07c827a9cfbdeb1078435c192d0adc5984a9c3e658610fb03d94457505d4500412b9d404516376e6edda2835deb4b1400dfb6bf42c3d113 DIST github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.mod 40 BLAKE2B 9450ce15c5660f81e3f94cce868daea79d498081eed118c045deeb16bcdd4e1a033748417305cec3f0f69fe27122b1c8ec63a85a129ab309693a7e7c453d4e7a SHA512 27997073dfdcd779c6ae7ab9540d417af8727f96aaa0b82a4c8b4f38ac32083d19cd4899288c72a5028f54fda674612c5c0e54cca66db0bd5b29c3f0c9be45ae -DIST github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.1.zip 13721 BLAKE2B af681de835cf7e72d79b8f8f95bc48d7adc6a1db33b081b0fa9033674c0f9c2b3e3331dc5014318b75aa6a19ef87c7f2ce78e9e3de3a7de4b350084f690a219d SHA512 b1191d52c82b5b8d172540653b722ecc60682fa4b254533697bf3e349147e70e14e41e4e151334ca08588c8a472d302c5cb827b7f2def40611163ef2c163883b DIST github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.mod 49 BLAKE2B 7e5ac13e0f24f541bef62c8af604d1a741c8f32f7f26ca28ae94c6cff720ca2cf0f3adb4e98cb30d5da68ce0a5ebeea5b5ef834f20f547532b4198db423c5b86 SHA512 d1b0ba5560cd03a00f2c09a474e3febbb9a9db474a3b8371871ab713f6b141816e78176dfcd14d97784b5475c34190a20bf6b8baecaa77a0fa3bcc607307ff94 DIST github.com%2Flibp2p%2Fgo-buffer-pool%2F@v%2Fv0.0.2.zip 14858 BLAKE2B 4c8ebba5e7bdbfd8694bf9001031bf6d037306b4a5cc7d15a696e5696ae9a77c8245dfa596244a995ce37e93679f660595de3792cf086d83970c9fdfa93866c8 SHA512 54b413066213e1d574b2e35d978769e3385cc59638675a74598605531882691f8f72cf9785b9d9c0dc8684b550dd4f55f5e0e9dc8519b29fcef353b865b83199 +DIST github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.mod 135 BLAKE2B 8e65f4494c83acf7e04bdc0846d7a1907615ab34082cd0f0c5438f81b4218b7360b265e1b740d332b95b5cff5543ec6b144396cb3b9d7e9732f5063cd35b0132 SHA512 eef22acb730a6124267bdbe374db009cec18074a17c0a04c416b465c44a9c3920f11c4e22f445438278e29adaa2256231a0f88fec8fc753950be9241d8a26716 +DIST github.com%2Flibp2p%2Fgo-cidranger%2F@v%2Fv1.1.0.zip 32382 BLAKE2B 36c3b3e1978fb846a3ddc604856279f8daa18655fe1c3b3a3865ce2cb93de44bd10058adec08f13d68546375d98d7cedc16bd16fa0182af147da083e631d717c SHA512 12224122fc4fcec7d99b15c18b2a28e856f399f7b65c2bb183902651959d08e7645da888689fbb225921a9ebeb398528e51b19a158a002b4ba82e3091ec175c8 DIST github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.mod 179 BLAKE2B 7b2befc9ec06d713774eabe7eead87f9f779e9f50b18ee0f16fee1c01b4bf95c122bb4a3ece253f9ec9cae6df94215f6728b3871a9b55bf83896c256a98c5b95 SHA512 bbd891d8f6cb5186b6bb0069535013b5895a6185e031ed1e35fb654657c48c1fa5b2907a5ca50cecba922628888b07af743f8054283321328b97b0c9610f36a1 -DIST github.com%2Flibp2p%2Fgo-conn-security%2F@v%2Fv0.0.1.zip 12166 BLAKE2B 78b82f93bb47cef3cf81979d96e614df5e59f85b08b8b24b3f44f744b4a9208bbb1a0f2110272dfaf9e6bc23bb672e2e1b38216b055d6aa8df8e87e45b166187 SHA512 1d3d252957fd6fecf9cfb6d32a1d9743c5b061d19f0a908472bf7be74b25efcdbee7774cd317cd8020d133612c5c5d5dd1aad0489b798e5bb355e7f92138c70c DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.mod 198 BLAKE2B bc7d367a8c184443a2e30204a9cbb409c300588e108531344278f731720c948be6fd87df349d57429b8a1c279b0d87c05913d6c19a5e8171e0dd2d9ecf61ec2c SHA512 d43df5e3689888d049fadd8617131ab88eb527f04a620f1a228708074dd6ac0ec8c1da47284f7f8e65a1dd50a94aba000ef85cf8b2747364da00b581a8de6f2c -DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.1.zip 11078 BLAKE2B 8583d10d80296a9e90d70521b6d78f601bc0f993539e9edaff3d0487a90d05d73a5b93719232aa8024c8cee8b434a507121356e0692358d0ccc9d860ce0750ba SHA512 465060202e28ff5efe027734373a01bd28ba75b02981334142ac9cc3c7a01a1c5e5278f86934900606bf459d09ae3769696354d3f4ec6af6b7340e763c5e552f DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.mod 198 BLAKE2B bc7d367a8c184443a2e30204a9cbb409c300588e108531344278f731720c948be6fd87df349d57429b8a1c279b0d87c05913d6c19a5e8171e0dd2d9ecf61ec2c SHA512 d43df5e3689888d049fadd8617131ab88eb527f04a620f1a228708074dd6ac0ec8c1da47284f7f8e65a1dd50a94aba000ef85cf8b2747364da00b581a8de6f2c -DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.0.2.zip 10153 BLAKE2B a7c6497d27d197114788ddc246d08278c497b024b9878d6f701a9584339f00e9eb8f11fa9a3ef44ec192b546f0b1001ac2c41a6c2a7231bcdab60173f5cd84ef SHA512 4771f12a776f685f55bac5e8d841c96c4919bb6e509e4e454cb3b3c7769fa5239906526882de646b4d37b9186aaf89a467ce60779ae95098cd26cad8f3b807d5 DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.mod 208 BLAKE2B 20794444d02f60b38a593a33a82fb567bf4588ebefa570f49349dcbe9eb97c9848e76f35d560e0ff90e128069c5475e0c72b40b1996129035938f2634f3077f0 SHA512 c8689cace50665d64a7413c36c3bf32890b673cc6dda315737d94b5d7380c0428b34ec4b37ab11e523233ea910784470ddf17c79b860e61c9241decd64601e46 DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.1.0.zip 8971 BLAKE2B 86c642e1703c333b28ff49c7c784130855bf8c5ae57ed357933ccdeb923b5ebe2c7959788a39a4dfb0a42348cfd8d4a98d6d997e9d6993d84b0a6ef4695582e0 SHA512 f5b360b261e60261afaf400cff8093f819f98c1148940394da6294cb5c43184814e0e06f9e761c207779182dc90b4c3791acf9902b52eeedb68e52fec73643f6 DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.mod 208 BLAKE2B 1d43b5733c5aaaf5d2a217314254acbe7eaadc2bce6bc6f08c80ca53f1cbf2371554a5512d627908fdb26f8960c96806cbbb55477d5b54df2af3f6c8f6070f51 SHA512 bbfe4be3a4da09b40b18df9becba4511fef6494748e6126dee6515b186a1c964cec2ae35ccbf2f8be3b21d3c8fdeb0eceec47c26ae7556d52f6bf1ba4402fade DIST github.com%2Flibp2p%2Fgo-conn-security-multistream%2F@v%2Fv0.2.0.zip 13661 BLAKE2B 130a82f254776f0b72d8ad0d6f860532bd1e231d3d1918f4e4b4b23029802ac1a879c90b1e92a4f3f816f17387c96a32711fc3329c5374464f9534659a769114 SHA512 c48c5b610eb92ef219f9f9578a3486b901ac73cbcd12214f7084814c0985461e3d7847f59772b35e81d1f4f25b88f29b989f5dabfc81b9e50f85646f335f9e6b -DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.0.2.mod 144 BLAKE2B abec23fdd3ba7851c4c4514dcce48a0fdf229be38dcc55e7a87fa54a5e644e113e3145d47147497e2318123a590bb617a8273f5793967fcb9bd8726e531dd14f SHA512 3ea2d157f585c4ba7e6cd9a1b45f35ce8719e9653658e0bd1e83c47763401ad7c56e6620a79f4a7b2fc559eb48ba0bcbea762e425ebc3ee0acc1dfbfb914e257 -DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.0.3.mod 144 BLAKE2B abec23fdd3ba7851c4c4514dcce48a0fdf229be38dcc55e7a87fa54a5e644e113e3145d47147497e2318123a590bb617a8273f5793967fcb9bd8726e531dd14f SHA512 3ea2d157f585c4ba7e6cd9a1b45f35ce8719e9653658e0bd1e83c47763401ad7c56e6620a79f4a7b2fc559eb48ba0bcbea762e425ebc3ee0acc1dfbfb914e257 DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.mod 144 BLAKE2B 8047426b39d3a8159dd07aaa35af00ff9a08e17fb4b55d60d9cbd8ea17cf89226b58bd58af50b2322396fff67c97b24d1b23603a05155e093dc88c6327ac9206 SHA512 66993162120494976016ef86b65f52dde96349a0fc8d48142fec9d5006daf9469100f2d7661f928faf81e7ce83f21d14b174944d7d83419efddc03de81a9ee7b DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.1.0.zip 14474 BLAKE2B 6b63f139cac4ea6ee863aba980b7cd95be36aebf5097e5305134b4cdb192682082b2f13c97745f266e29452a378fedf15d560bf1826233ada308db945322d7e8 SHA512 d7cfd4661cf8533a1c9afe9deb5d1b8fe1620a16e22d1abcbe5ac5c92ac22d095d51c5409c7c4528d260c5c1857d497468309f46fe6690a1bd80415d0ad09793 +DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.mod 180 BLAKE2B 48c65e21815ba47049520fe1159a255005b28054ecc397c367e6ccd2e22c90c3936cd4a43443782f708eeb89644b27e3404a85cfc07eefe95da53a7f4a536ac4 SHA512 7e089b42526126a0ef23a15b7863c654b07bad199217ce86e083ea9a4f1b83829215ab60fa6d646e64424829534b60ee7ec74795feb990e45aac165d0794cfc3 +DIST github.com%2Flibp2p%2Fgo-eventbus%2F@v%2Fv0.2.1.zip 16706 BLAKE2B 520e5fc6ed9eb4e96bad68b90dbf73b657386324e34c47bf25088f95e946703893f6eaf9585d1a44d65b54e948f12324a63fc7e3c94a3043638e6ebb548788fd SHA512 d92e5fe1f8f3e5816b7a731375049cdd5c738382963db16ec4f49ad97976f85522b2c244d166adb42d8c35d55f4ab872ca8bd82f8d959ccfa122dedbc8944312 DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.mod 41 BLAKE2B 9adc454b9eb840a7057ed748f8aafacab344da81cff1a1bb70149c8a11f02f642be0c2ce7907467a95d56bf41fdb3f742dec6fad9cd0281f122dd4c35b51b201 SHA512 360014563365392f768b7c81d96a2df8b347c6900ece142b20792cdf3d02c67c94d2365745eae3cc68f004096095ca031fc6a6ed77c967f5062024863552fa45 DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.1.zip 8453 BLAKE2B 71e466a6fdb05f64be2078d6824df418174bc3b7b60031d1a547d5e4a6327cfc5793177c06a282d4590ddd9d54456ee795e264ef1675c0503f21852baa365e11 SHA512 64c318560e21c08bf4b87e9c1efdb41c25fc3d01652c1ebd4bed063f9dddd042386b8284ae40e0f5c2549e69b649ac042569f59136bdd5ac795fd87ad6da7421 DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.mod 50 BLAKE2B ab071941ea2c76834f533c326432ed37b78a13d0e9ae3036cba1a9d65e127d751b98ffbe54ea10c1d509d95fed2288e054aa1e395ffef5a1ced367e21758e2d7 SHA512 52e84183636b31f3904ed24667a63f59790cb66858e66e155b6b74f490854243041c4b0a0a229049139a77d532162aa13284c7821045518cdc683ba0207d4eeb @@ -606,13 +548,11 @@ DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.2.zip 8974 BLAKE2B fddb03 DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.mod 50 BLAKE2B ab071941ea2c76834f533c326432ed37b78a13d0e9ae3036cba1a9d65e127d751b98ffbe54ea10c1d509d95fed2288e054aa1e395ffef5a1ced367e21758e2d7 SHA512 52e84183636b31f3904ed24667a63f59790cb66858e66e155b6b74f490854243041c4b0a0a229049139a77d532162aa13284c7821045518cdc683ba0207d4eeb DIST github.com%2Flibp2p%2Fgo-flow-metrics%2F@v%2Fv0.0.3.zip 9565 BLAKE2B a24d27fffb4e9f16bd9757f00bac175d65826f89aab53a857e09dab6de2deeabaceca6bf6f7841d4249633e302414297fb7a87a9de84f14e76ae22de659dafe1 SHA512 bf55dfcbb5fac9845ba22f1d99018fc3c7a0b61ded2d0a66b1db6e0f5e1375eaffcb58f8cebc376be1cc3a463206e33b7396aaff491da0d6838bfe8c49ac4875 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.mod 2020 BLAKE2B e7373ec12f01413ab5cad351e52c48928168606534a65843f2edfdf1104fc50993ff856eca2bb7756af541d3f7d11d15d1e4819d6ebe3f7c5c901fd21f40f1c8 SHA512 dd0b8d07a5a43fdcab83e143a021b7b839232f2c816507fa6694e3518740601104d98aae4d28430fb5485648f52501cc012120b5a124009c5e59fffd7369b2ef -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.2.zip 108716 BLAKE2B 14c818f4cd7d40b8a200a02585f1722441a4b028f7d3eefacafda41f665e92bf88f1451187d1f4536f45f7025b564a4f73632b4f588dd08300b920ee6beee792 SHA512 f577fbd7ed5a459efe46d01d25e53d8e364e3d05600029d12e4e736aa78526251b2d425fd0e791ba7f0d40d591f2d2f0233667a08372e35e514a5e78bc66a464 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.30.mod 1975 BLAKE2B 725bedc6f2b7fdbdf46a4814aa4433f8284133bab40834b2f2ff50466ebbcfa73262ea6ef755648f34225b7190e7a4dfaedfa27d9d077ceed132fa0de678986d SHA512 0ad3b04799db128189a6dfc521fbb6a4ad9550e33723bc09985949009ec3d596f834949b45c49e6233cc52f4d00fb6000d597644dd8c5ee8ebb5e5f7f41758d0 -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.32.mod 1975 BLAKE2B 725bedc6f2b7fdbdf46a4814aa4433f8284133bab40834b2f2ff50466ebbcfa73262ea6ef755648f34225b7190e7a4dfaedfa27d9d077ceed132fa0de678986d SHA512 0ad3b04799db128189a6dfc521fbb6a4ad9550e33723bc09985949009ec3d596f834949b45c49e6233cc52f4d00fb6000d597644dd8c5ee8ebb5e5f7f41758d0 -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.0.32.zip 113436 BLAKE2B 8d4d9928ace97828508179341474c6fad9c6ebc55ca50f9d832df80bb36267052131098014de81d018c30eaa44d1a7cbe95ecac6070e209606fd7c5b356fc0d9 SHA512 dcfa5138eaec225d4abdc8e7fa35190dcfa0ceecb02fe815023b804d596d7c97cba7f7b541f9d080dd4d5e792277ad780229cef9ca133f05560f768e5458350b DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.0.mod 1488 BLAKE2B 407010dbc2154d9a6001f9f95226e4025ee3b5cd27d69d4fa19b4a84b13de865d8a78f0e8f04625460cdba4b2eea635e323abe2daabb158515c6f451d069b579 SHA512 5af28a05e196c613fe79dbd69e235445f5ce873ba4531887187b0c1f1d3d05b7a645c6465d1dda8021677446c8bb76897caf267b4508208f95963c4b2842e1c8 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.1.1.mod 1488 BLAKE2B 77fac695a85466e05dbf4a8fa77669aa09c61fe208cee6eea34a9757d7ad6b3d6b045107ce6daf3a2b1a6c32206a42dd9e9d610875cca1a565208a387daf26fe SHA512 a32dfa0bd6f3f4f904390ec3458b22c3cebfd2af0243cad06380f2e7c5437197080683f8e1f491ee42bfcd349767880dfff15044c83fd55d887fc0698e398a59 -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.2.1.mod 1526 BLAKE2B 06395e909772bcc2cab2c3cefc08ff3342da395ef6dcfb2ce4e58ecacac6262b00d9442922606e37b1116fa71efce37e1af4f0525328cf9fdd8da9a00e94897b SHA512 15d5bce882ff48ef0f87eeb2b87c77cfb04638ba7b3667e5892bbb61effcc4fbbd4cdc344d8cb46c6b1bf97baae1567be27c65fd1923a36214f393363d228b57 +DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.11.0.mod 1773 BLAKE2B 7b7413b9ab6bcde505173a2d70dca9c6c8f9f216229f57d9f18feeb6094c5c8bd78120cb7428ed49fb4dafcccc562d02d00944473374365943ba75accccbbfa8 SHA512 871ff5fdffba2504dd1b42e2af90b4bfcd8cae1a59fd9b74d907fee35f521e3870619169c975525a9ee103b7d0335c6bf776ae7fdb805359f3647afdbed45026 +DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.11.0.zip 157027 BLAKE2B 1f9c8f3e9b29085b83cdd8763e03901056a0bc822cff66a066d4339e3c7471e03d3c78147fc62c0e1698d7bf4cd9406fb7f5061af61752b232810822bcaa340f SHA512 7b16a0c652d20d8f7808667e6971e9767edd6ba62e39aade84279a9cc7b10f4c79d7a702dc80f5b72641d490c6b86e81d7d4bfaeb591d14abefe6d89e9d21d7b DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.mod 1734 BLAKE2B 980ba656a7de3f03f76e7925e550a59058f9911efe7cbb52559feb77a9999b2a815241e974ccd464c22fcd6f8491f2ec84f282c6b38fa8212b7bb757674a68dc SHA512 c798cc47112cae8761eaae91c533a6168a708acc59522abcb505e389c7933f56ab2687f3f133dc0cc06f857e9b1239910cab6072da39caf12292f74f6bd22433 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.0.zip 132433 BLAKE2B 3d9736641236a18e18db18a8d4e69b2140c349fe5ab5e6425053428807df47cbac57bc536a816db84726b2ce5b15b3a1a405c0294ecb84b71042c1b808dfa36c SHA512 eab46495491b391227977fb9c5272b7fb09ceaf9f725b8d3a41d2d2685e9e6b84cc1a1e25f8c286ab2b48088fe7c7a2c184121c55348936ac2ca16f1d11fc19f DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.6.1.mod 1734 BLAKE2B 78147b99029c4425396bbbf96ddbf7e8dc0cf70dba02752225a2117b0527d0d86c62acbe845bc5e99f54524611b5cf31cb095eee7c04598a605e01888048c9d7 SHA512 1cee8542f6102c39fb1dd161a1c673cf7a1b148a01bf14dc53649c92406cf5539719eb255975fe5b3dc7b51394b7c9b2dc1ebf231e1201d42eae23f4d74c155a @@ -621,16 +561,13 @@ DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.mod 1535 BLAKE2B e092f433781a DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.0.zip 132787 BLAKE2B ddf9298940219820d15445f6846303e4bcc91e64369893fecb45ce0dc7deebcc7926ebf84f5f25f9a0d915ed1a7ebd838d192900aba94da80f1d043d260cef7a SHA512 f7ac4439c3bde9dee1699872114733429fe5138a4e17278588d53819ea61723dc699e50a3564799552ce33d6be4fec7c22199204bd649978bcec04f9d57d2e7c DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.mod 1493 BLAKE2B 47ed90a279bba3a3b8b4bb13f7063b27537c12c4a83c1f70fe65fce54851d10d409fef6d65ff5d18450eea9dc9337791fa10aff79a46681b50a892aa46f5aab3 SHA512 d9ccbbad4f2242be5aab1720de84e4bc89ff1011de7b9464008d91ef1cdfbb5545c96ba32f1e01311352257d65134f3c51fcf2dda345ca223826f8a369496c23 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.7.4.zip 134743 BLAKE2B e5521b58d35c67c1c250e16b78aeb7329878dbcc622665d6897baf547d0ecafe09762627914ab3709bc9b1acec3bb7d6004e8eba5800db0c0a844b4ed694bef7 SHA512 c980b37d0f41918f8889fe4031c9e24d8161c55b3d42f7b4028409e511608522d8c4ef9ea8380776c2261ec3c24431a1d54a34d77c3098ac7adaa6abcbfe431f -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.2.mod 1569 BLAKE2B 35e6ea8ec9a10cf86a21e55fc83359dab9b3202d27bd5bd3a706d539336ef6437dc264bebf7033102dcadedcaa55de3d129bb1062fa2d56fdf8d9049add753d8 SHA512 0349afc60559dbe1b8b78852ea830fd40517b2b6d9c67cfb59c27285e540d2e826072809f41318a9cb3d736eb6ba0694eb7c4326ddce8874390cc6e348587c3f -DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.2.zip 137935 BLAKE2B de3457f04403c75a4f58987370e38fc90a42ce4939617ab6525eeaf371295bd1460a1c1f2de542c7b84ac5e6cfdb401c20934e53b982e99a382f37aed921bf0c SHA512 021a18be37d06ec2f2d3c45462fff3f989fe78018cc7c26642f5a3318d6d07d75548d25533b909d43420757946ff6d6609cd2449e4eab3f582ed40da251ecbf8 +DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.1.mod 1569 BLAKE2B 66648ae30e0dee88e8a0d34a717358da5ad153d3126c47af50b116624b753faf0490fef6b4c2ad84aea60e6ad67721d7f12376b03590e06d31babc691f402ffc SHA512 6053f5b7bae18a79f028ff9b478a1d68ec36eb7d46adb8d01d23d9d721688cff1c330b14fc67ad9835a2c71edb73659c84d14f6b2d1bb2d19389677ee952dde9 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.mod 1569 BLAKE2B 95a86dabd8e43a1be2e5f654b6a2675d1e3e7bb429ec4e67f51ef829d9e849dd86982a39a600ab6f473d50f3707c999eea7c41d50125ad85e66740c660db5cf9 SHA512 55b3169328b6885fa6df556a0b182eadfb89d9dac212afc34fa3b1dd0eb7b7f7e5f20e06d4f688f2650523890ff53c82ef8acca2f6ca3a1cf674b094ec8a6dc4 DIST github.com%2Flibp2p%2Fgo-libp2p%2F@v%2Fv0.8.3.zip 138676 BLAKE2B d001727e0baea6b7695d79c0d9fae4a83907053c6220551f5df0621965b29dcebfb633fe160c0ba6aa32d4e8f0bc3a13a718c2aed4ca7ea4578cfd4225b36756 SHA512 637cb430587800b5a689b090bf4a58a7406fb7aa73986a5da9e633d4265029630728d5bbed2327d305a39b9a03fdc4604c316f73d9aa45e061d5b1ed0460dbb8 +DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.mod 178 BLAKE2B a8f41d94a771395efdfd78e44576a931047ba0fbedafb3693d8184c8cf56dece9f7cf007adf572b2653e3aac64d5b3c6769b7abfe9d4c1e7afb79be2dc548579 SHA512 1adec4f1545702612d4e34ca18f6786c3897dc04d966b6716d6d6fa15a48049dfc4e80c49251ae4902de15a2960d8776ab2ee4f47b1291184b8a8617921327d9 +DIST github.com%2Flibp2p%2Fgo-libp2p-asn-util%2F@v%2Fv0.0.0-20200825225859-85005c6cf052.zip 1555634 BLAKE2B d37ed05241f3542296a449d9b4e3cef9233c2ed61c4f8b2c46ce8355ed7b7992f68de4eeaa05ccbe46e4e0d9cb5a3da70cf75fdc5b711628f5962ff631dffe3f SHA512 a93e0a380277935af25cd185507f8e1f701afe5dc464e1c4738d42efbc8b42e967defa775c79b9712d20956817e9ad3ce0bee19c1b0754b9c7a4be7696a7d2bc DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.mod 421 BLAKE2B 4167c5f54ab745bb354f1c160509fbad106c2b3d3bfa6de427945fd5771280d8f13096c61f7fa8dceb9503cb27db0190b6e3b57490ada3193390e433603bf9ab SHA512 d7c8a0315bb8d5700cb5e1df631a1677af8b0fee61b1a79226e7b303021b9eafe0e4542f4155e5fb2d34c8bfd73c3f7f4cc867a047c849f1a0b38b1069b49c2f -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.2.zip 25129 BLAKE2B 758b0adc0e202f7e1bc8ee5e3cdcb0ebcaee8aadc0f5992685dfbefb8f4bb497878e55180ec2e9d7e8d59af325023066ea4a1e92e302be7d7853df7dd7c8a324 SHA512 1e772c41ac5436b98f0c95b9479fd68ca913b3cc08aa0dd9ca17a3cfd3c302dbc9ce323eed657199daa2b41750b6450d4770284df04f250fcd8487dfb82376fb -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.3.mod 421 BLAKE2B 4167c5f54ab745bb354f1c160509fbad106c2b3d3bfa6de427945fd5771280d8f13096c61f7fa8dceb9503cb27db0190b6e3b57490ada3193390e433603bf9ab SHA512 d7c8a0315bb8d5700cb5e1df631a1677af8b0fee61b1a79226e7b303021b9eafe0e4542f4155e5fb2d34c8bfd73c3f7f4cc867a047c849f1a0b38b1069b49c2f -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.3.zip 25092 BLAKE2B d110543724535b68c3ad6200ca65d87a693a133e87e704209a0df8cb99d8459c6af8ef78de59f0e7f1131e15297bda115c7e6b494422d8b976ce43d845760f0d SHA512 9564efc6b70e7eee87de5f64a840dd691d532f21ad0ee67a576915a75b6eb731bee3d4b20cc0d4af326e23ba2405db39bb73e818a3f10e3b597628b9770455b4 DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.mod 421 BLAKE2B 14f8d2ce7c7f2e3eb53e48c16f679b60ec488cdc72170ca122e1ee88213b0c75ed0f65e3e3a6a41580311b60dbefad7e041747a1b7b544b0079182dd84520e21 SHA512 bbe7a2dc93f71505fb6a9ab3d58270f7fd95094d19188e73dda02eb038bc42ecc6ee8eb47c93d8ef7188eeb30f6769579e6412fdf469b77d17a664e4c591a9bc -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.0.6.zip 25118 BLAKE2B fc5269e69769f9462f891eaa672071a25373e44013cb386c58c12e0d521a5a10e6d57ee9ee3f2e65eb741eff5084b195f1c0284860cfcd47af9afeb7e883f1c4 SHA512 4936caadd898ca4aff74971c6e569493e34d6aa0b99150fd93b585c60ceb927437079c467a50300d6d68eacbf8c8b4ed5243ffdff07f7739250ce58290631286 DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.mod 294 BLAKE2B ff58584bb4a46b56c26774d842edccceaa39549fc0646975555bd28fb1915baa41e1e6d9c417cd0e3489eb27f44fdc9972d7b58f9325ed1a7ddaec6b586102ca SHA512 f1cbd0bb375613c1c5239b81c9f18654ea3d73c53ca00d6d7e17bda92ce7bddb8c668b6f89e9fb600ac62f7a1b421f5a200d8bf8680da17ef34d842cfd37b4ae DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.0.zip 24168 BLAKE2B 4cd2866f74e8699353e42a6686cbce31c95b437b4e04c2c87f2fa5b7490657ea53fa668da7bb29232861ffa42a70764187ad4bfc56500e7429bd30914262fbb2 SHA512 8fb5548df9356b263737258e43d00141af90cd744cc1ec9a5d86a9ea56b96b5f20872bd6ab106d988cfe1a545bb4b6b2e8ab509841f2c67ad9f96a60e5776dae DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.1.1.mod 303 BLAKE2B e4ed5e54a44d6ac6a0f4ef7300441e1fb4719ff26c191c9c2d72179e146719beba37a47e9bf68d91a55ee9bb6b5be5a7872f03e6e53f1bf2e302f6316337658b SHA512 58906a07fa4729d58d83a23382d53003645407f30017d45ad8525880422f99dd4a9738dd608a93822026bc6389a2b102d2a7b096e63405922360ca1932543287 @@ -641,18 +578,18 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.mod 426 BLAKE2B 85f2f DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.1.zip 43463 BLAKE2B 6364a66453cc99fbd0041eadefdce5ad0e6f0afb0641af6ca119ac0767f0f501a716c908fcef9a5f182e611a312e95236e7fd25dee128ae0175c62d5175cf8e9 SHA512 e52891106c10f334512363d0edd31208c50322b9da62ae99fa9107943d878f3f5267e91db2ffdfd2a848be68e5c09420192e37fc9ca0ce3b63a0866dda15338c DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.mod 426 BLAKE2B 0727349d0ba636b0c0b4fb7ef9a9c166298435d97dd0094d81939dcd60b866c320b83b0c7a6e1942327b036163d968c89129743ebe099cc587274c4d4b6503f8 SHA512 2501b7b8090058c299c9f50ba43df260208ea290eab12132325f53a3f6f3267654926d59f7249f6d1a9250afb015a148b4bec9edbd1fbb12a91cb6e8ef83828f DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.2.2.zip 45335 BLAKE2B 23fd06453a3418d6cc6deb229c67dafee43c8bdec1a843db46e43974cf291614f073f67e7d83104210e2469191174777a9c49703e3aac963d8fcc7f19fd8ce55 SHA512 da76b3982e11a6501a206260d3ad0b00449accf0556ff91ba64ddaefa354261daf988ab2525cd5d47d59f1b4d07e6e0d04d85bc65e9cc8e68bcbfcf559298ebc -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat-svc%2F@v%2Fv0.0.5.mod 466 BLAKE2B 37e44e587c9d64255b7986110bebe701c72be853539f722904cb014f56f394a340ed4b3e81e02d57490995a82aa17aecb57b0509d9adc174b7178e0c09096234 SHA512 3751d193f15cc4c8b0f3e33e4be73099a30df05d8c7cf72f3117e8705e4f262632df1256c64cd7696a5ac7490ed6f84a25dbdeb7d9c26a697beeed9c15577746 -DIST github.com%2Flibp2p%2Fgo-libp2p-autonat-svc%2F@v%2Fv0.0.5.zip 17930 BLAKE2B 2fafb5da400ca2e0e3f14dac0a95ad1f4057164c1e0264ca80d20e9e335d76b79aac54ff9a10f7a2db54c4db3d5160236f93ce558000933cc5b0e7c819ae6f42 SHA512 f24cd948c9868e1f82464bac13795583e83ac9f63d7c7edbc3724283c0b37b0858c3637db2ad8f4f3bd3bc2550259596b14ec3145ae5599a3f9c9bee67790c12 +DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.3.2.mod 425 BLAKE2B 405282801c16d5254b19dc3f3f8d899f9ed3575d649cfbe32371f03b8a641a8f4d59050dc1135afdde4775e824de2fcae51be3a4e05df230b429fa9888655255 SHA512 732827fb8cf189540a8cfcf261b37c73e8d9c1d78bf673f1a0a098366cc33c7a978fe96fa490b1d26cf9186ce040a52790b5e282e7586161fb528a446fdfa8ae +DIST github.com%2Flibp2p%2Fgo-libp2p-autonat%2F@v%2Fv0.3.2.zip 42230 BLAKE2B 4a581b3dd36bf1170ad8a4504d75a34d5c270ee806eebc77c20adcf32e5c946bd8186e33aac4ce52775657da3f5fcd29fec11dbe0c6ed4334222a89be27aee01 SHA512 b6fabecf9eacf85bdedf1f58e78d103c6f8d533a331957a1104fad70e9d869314ff7eeba6e232c5c429cb91dab0713db1f351d4dae8790402481554f6f3538bc DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.mod 448 BLAKE2B 3d8e93652255c38b9ffc4b1f53b0d197b780d28b8d0b4f0afb5fbf99bfbcfd8cfb145cf0eb9f21718e3aed1e355637b30cc3395b96895dd712ff84b1457f323b SHA512 3b86b6e33c62d7a3b91de4c270367474c77d76ea448ef257f2b25ea77fdca8fdfbb99f23a83cdb5576d4b2a8e22524ecce349784342f5eb0b4a622bbf06dd286 -DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.0.1.zip 11652 BLAKE2B f35d4df8f364361217652c18a19320a0d79e72d5b09a8cb7ed33944083f031b690c1bd49ef64a42059f69fed2ca49a05689a8501c01891c70844948ccf3e2045 SHA512 3954d81bd7d153e9b6da5936e9111d54716445da0c78999279c0a2092669c72addd36addca8cf122def76b2473cb573fb279441a704a6b71896e6fc6cbf6e954 DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.1.mod 222 BLAKE2B 60465d35de4e4e64ced99b75efd0fb16a22e65846df5fc96a481d4677fb275bd9392b9112d5c424aa3b51664317075679d81796bdc3f056fc106f14a36fd7546 SHA512 a4de88f9f2cd28a67feaa2fae569943f755e375bdd6fddef2537f00d6e9974c73fee024616316ba079a5e470b985424db06ce9c9139363ba0cd495d58c5e809c -DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.3.mod 260 BLAKE2B 17cdf6a1466024645479fc9e0b360b21ee399e5b84832869bbcd8009734d588e209d94161358a6d20d1c7f66a7eba1239c6b4f8bcc18677cd77f6a26bb6c9521 SHA512 4ff6859e205e8b2cd83330bc265d877641f6de6c32d965d787a65622b04599bbe4f1ae2b832ce591f4ac4b4178ac6ce94c61c36480af583c4a06136c234bcd8f DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.mod 260 BLAKE2B e7a0ef17f7fe288086934cb0cd14bb04cac7bae1c091896e8406973e96ebc9af878d622a28f54de1d6786d7f0f94ce005e8ec6f46b9b7b55c3c76dbb87a23c30 SHA512 84bb7076e667112b0c73e394c1f52896a3adee9b017cd96711fca5eb963bacb010b59f404f8f359939058d2d9cfd76d580b71e4d911336e549a62e5e4ee2a132 DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.4.zip 11532 BLAKE2B 69d3ab1f3948fe354a81795b2216fec4909d998b17ffab0072a13619e1efb85326d011b668eebe135dfae21b61aa36c7d6b97bb76f213ab71b4b9904a1d00fbf SHA512 eca05b0cf6587604585a5d2b66d0cc19a71607b8a3dd17492f57894f775bd076f5bf5e5742871955591d535a70c15115ff8bc00b716d9c9548c9ea726ce7c705 +DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.6.mod 269 BLAKE2B bf6b3b381b4bd534ed4619b29c3c21b4aab4e46782ad577487b8ce17586ac11e2ff5b8b77bb3f3b2cf9deb4d76444416bd42a471cf96f58dd20aafeed4e4572e SHA512 6f695a317289e79630693d88f11f971e17a5b39a237636f9b44cc45ad06a3c0bcf802b5d1ca18b9fd16bf9853347646177479da58ab3a0ff1174853c876cf3d3 +DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.1.6.zip 14556 BLAKE2B 66ed49b727c0daa897d10b70b05f9b03941e3d2028feeab6c36f353e26020a36c3c9cd5544776ab50fe32ff641451be89b3842e7b791c15fd131332076452b22 SHA512 c25aa7d5f31c2e722b866b964c98627a597946434d99dab5328fa1ec81973e7fd3048a221f3becfc2e4a7e26d80125e3cebe5e3609eb8ffd3eb24ba7f0bf882f +DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.mod 269 BLAKE2B 15fb979ac9628dd5c85ec522d0be6882222dbbc4f8e39af93e67bd02df6701c6e488c1f44e7d3402053f9b01f2338a5c6e42d066a23b405aafb5cd3b60c58250 SHA512 02eb40c2a4f9570f3d955403ad6fe32ff62b2b9f6b92bc1dba50cb7dc731eefc26032cf6d0977c5d89a5e08fd4934c44a789ef8af202337f8609506372a89d36 +DIST github.com%2Flibp2p%2Fgo-libp2p-blankhost%2F@v%2Fv0.2.0.zip 14476 BLAKE2B 17ce27b6917e47cb837f962d41288a508b0be368bbaddc634339e5ce8f6ef36fe3ad94cb1be8e74fb17682f68a7d6623ec79031465ba29bcdbb532e3b398423e SHA512 cee3df3337b8466cd6fe40fa006db851649dc3aeb68d2e7334ff10eefb8ce7a309fb2d5a94160d95865acd974f8e339af1eefbb9a16bcce6ca54c4878f6fa0d6 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.mod 571 BLAKE2B b672cecd5bf5095d479546111514b0114b0f579e979c7f03e5d7a4a55efa05b40b4af7255397225ac859dfffd3f3966121abf46b0b2c11eae07624b7a094b6db SHA512 1469cfce89becb378f7193f28712e8b66559965d020f19d0e675c4d10ef429a58607d92bc1bf15c641fca8f4e4b173b6a541e46c36f097c2c9e77265c34ef639 -DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.1.zip 30933 BLAKE2B e65f7615a27c67bcc2112b3c66e0eaf5edc59a34c4231453090d38bdf2b4ed04106bbb6b2987d9c492657f5ef81ce733dc84f76d85da3fe47a6581985fed4c11 SHA512 e43fbe234f9e00d2007a57418eb5ae3bf3960f7f99654a8dc8b02b3f0a3e27ac86b5bcd0a53d81446abfd5a78f9c820b472b5ebccd4e6e1e8aa4afc8cb2d0450 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.mod 612 BLAKE2B ca41c648dd9c4d8daf5932905b071a512cf938c8b62f1a6346538057404f4c8588b9669a5418c193fa7b6d1fb736627a972f7ed625fb1c4564dd7813b04dc98a SHA512 16c91139d8cf914580ffd944f4b3e2ef038be7dd3f5f4f13f7b0c55524c01e1c9559faf6822d8c82d18e37b684c1823fc2a1644ccb4e12427e6fc1bb807a0457 -DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.0.9.zip 31250 BLAKE2B 16706b9fe23e408acf5cc84c7acccadf07634cc910f903ea08c412302bc68c839273ff49c7cd8667fc1ca780a491c6156b5b19c477c4a4507d8dc7d5a8b9cdcc SHA512 4407a6c48fb4891f6f12a344150a7bf3d3fbe78948d8ed212c7d9a3b11c069b2c94300c28cd43c9ee13f7f36222ccac43bca336c029327db84957b6bb0c17c51 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.0.mod 439 BLAKE2B b2fbbfb414fcab5c23666d60402129a3d051d11183f29e36771ae05cea7765f616ba88d6045d2f34306c0667fd3be266b8e2b681e26eacc9b16c6ad3ec535752 SHA512 a57337d984f20789d74ec772a1ff9b706aec6d2076e5339405bc2bb97fb524ed2258702ee16ab4ddfa3043c0805087edf547e94c74f3ac6431d297603a7d0bc1 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.mod 448 BLAKE2B 234566af07daa1352d847b712a271edb3158195aa3d69d8fa8b8cf87c43b65bb51346789039f89c348f3e8b404d54951e18cea950d3e192920caa8d9ec92dfde SHA512 51355de4661f9e7164bc1e17400444c8b8a717eeccac444dcede6719e48d397608eac9f910aa2123cd4f85c79b67baab2fd48d4afa3fbe7c4a46154d8d865cbd DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.1.4.zip 35730 BLAKE2B e126ec0888bacb9c2b38fdd6cf51777ab5ee3c2176be84fab48cc5aa6bdfe9c0601ef6909e9fab6c6e7774b089146ac940b8c8dcffdf08ce4366737524cf4afb SHA512 9ff713aa882c958978d8173175485ceda7d3ff7c5921b569c5697246b882e561fee3fc4e5d4b323a3a07758d5ba968ae54d1cd132d87440c8d3420cffc5df381 @@ -660,16 +597,14 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.mod 448 BLAKE2B 47c41 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.1.zip 35915 BLAKE2B 010c498af304f23eebd2b7ced98d021593ee483267d15fbf57a6c4fb93b9ce551de1192b67be74df34eff69a50e6b93641f1f916b0d115f675090f535c49245c SHA512 72daff5e3e2715d2bc57435602477c2b9a7e7e24145b8d2c03769eabc0dba3369cc8bdfd6518ca7575592b8ae020bf073bfeb2971b5b0155ea4b6b4c463402d6 DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.mod 448 BLAKE2B dd89c3b362a181a8cfde5444798fb6b027e0f48f5c9991eb2a9233af7f0ab8e772be52a857314217f28b60181e4f0bbe99bef18f77bc4ba1aa0c4794aba0ca17 SHA512 bd970dcd898109f0f5b27bac84f70fd555dab3d48c726a02be4434bdfd215f1cb428e2d976248e2807ac44df00218fec2f68642bc3be7b829c25133116a12c2d DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.2.2.zip 38326 BLAKE2B 656baf4c307f7922760ab0a92ca79fb53e0560f8b0d7049ea65646d7e11fa87ae242af8ae3e9516d754a220382c40c526f56d891eec552a79c93834904124555 SHA512 e3e0e0fd5f8b60f4f582cb4dadb5062ae13b1ddc88a6502dfc58100151a4c2388e4397f0655538d4405f5d2a4f48f838adb93ff7b17f2381865e71d46806414a -DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.0.7.mod 344 BLAKE2B 0fe59873c9bcadc13ade93a56e9c78f2f9749e67e6e5a63214a45317004256cb8b00489b360d9a0ec77a0092a7f23eb94a542e7289a67c489e7f01717fc8d134 SHA512 01c1a4fa1469381f4cd9708a192ad192ac411fe7e2e3b81218c480b45d8993d6346202ca1d2c873e00159dc0585a4a71638636a4bd2784b6f1fee1cf027266a6 -DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.0.7.zip 16912 BLAKE2B 280e04d8989fda764f37d3c1adf451f73c702ac7a70e14735bbb703125cc7dd996d6d0e2d35b9961a1614c7e8de181a71d4df1dd1c3d07a6f3f56115cf7865ef SHA512 bbc06d07e37eaedc1798c2282dbb946c8836f62967eb9b4983f3ce91ea2e9671436cf4a49f5d31973372be4da8cf69bd1cc0617c9ed2e50cccbc7d080d26c456 -DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.1.mod 289 BLAKE2B eca49762228625b6256082636ca2eefaf48871fbb27b11319513e4430f89c3ac3a9aa2646c9ee484465e16594d1bf57cc79e6dedadbc0e0636830e415c47b067 SHA512 53accc327517945fb61ccbfda29d88f6dcab728708b9fac53f7409d2bda415495e82c20665d8664e5f72e07d92affd7cdabece5b937e9e7ab22bb0c9add693b0 -DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.1.zip 19870 BLAKE2B 8c5211042d461851c2b5ebaaf47175d52df15a6a4cdb07ceee1a0cd20a71e40240224a450e3fa00993211f308c65cd8a055610fd02af1b7b912b8335afac61b6 SHA512 2a31489dff7c74bc4a86b6494274bda579faac438e4b82335b77f7659eaedb9630b1dae759e9970a7fb4068d3c146ada5e8d57aa95a9b4835df6c9b160d1ad27 +DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.3.1.mod 525 BLAKE2B 1d101d2ec4fa5f3e686cf844f996c06fe91f1825fb60a0740b32587f0a1799a70603913a06c458622e464602774e44683a35eacbc781786fcc2dc800705732d2 SHA512 0a7e1973a1824e5a5a5b48d410a1508c3254740f99063af8bbf08d1f63d6c7a67dbad356426eac8e779b696363cffb1a00d52eef85e95b0dc315a0061d1e2c1e +DIST github.com%2Flibp2p%2Fgo-libp2p-circuit%2F@v%2Fv0.3.1.zip 37390 BLAKE2B e4c9490643a1bb4b148028fe46deedabad8b02381f7cbf2db85677dba742753eafedb04cdf74fd95c7c174411588284ec234a1f009418a69e987493197174bf8 SHA512 ba0c35a2cafb736a7f63135c80c04c49ae7683868bc1def3a7920a92f0482200a97c78b7647e6454c21565aaa329019cfd81b72fe5b1386f598649cc3cb071ea +DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.mod 294 BLAKE2B 044e6cf5ead60dc70eec1ef642311f592de0d4c8ce76e41adb3b8fe65a5d31fe9cfcdd9b1aa51d98fc6a878291c84d005fcf5ff491e09da20ba64e6f092e4428 SHA512 7e073f2d29171df6316396ce4b337e7f4cf464b00fb77f44b3c0d9e80266351dbfc7fd5ab56dfe6187a388b2b49690c678ea1e8451713409199609da09e21507 +DIST github.com%2Flibp2p%2Fgo-libp2p-connmgr%2F@v%2Fv0.2.4.zip 25248 BLAKE2B 7004effe753d0093ca77c3da9f6466200faa7b93406fe8f3e54912e7f5f5600152e8e7d8c8fdd005cc5047a8e660dffa44dc0bb4a858cf64d1b01943252946d5 SHA512 01b068e07351a12f25641d14326403c4fccc5e66e3ce1235f8c94c76c08518091538dc9f1250a8f039d119d68f8175838708d4ff2d7d9ac2b33939b86523fd2a DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.1.mod 634 BLAKE2B 2c96fec97eeb6407ba44883c3c01595c003ef527a2ffde4f27bc80b02a9f69077467734a7e859ec931519e361c654c92770aa8ef496f96f2a545f4dbf504d8cd SHA512 135c9ee9e692839046c62e0c16038f607ffbaebbe42fd40195b6221987aa39767c46dbc17fd5feacd25f2a1d9965fb7bb7286fc1855ff87de70315e931a397b3 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.2.mod 606 BLAKE2B 38f6b0a16ec847fba331961b8578c2235620e28c66bec388fc688569ecb8882bb84becc3dd6e03dd9289434c4ab2c0d80706988b46d2c9ee312f729a1447ca7a SHA512 50340f48cbed87d84230141fad2cefdbac312ae74ed3f1bcd0ddd76c7a11ad56f998279f9de66fd631fcab2fb4ba33f9ddd723bc5db8b39162c028d609d36bb2 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.3.mod 578 BLAKE2B ef9ef0d66ff25778d0a3883c3cf648d24a0a80ecbbffcd31f897f6c2683d2107d1ca99719dee8fa932d6a1ad2f0a3dbc3d7f3f0ada28039d5bb157a32013a631 SHA512 ec8c787b52e018baedde722c69f0c92177ecb474df0f214e3d0d9bc18f383cca2d57baf86f554a2355a180946da1e4f3da648afde0f88ff6810a0ee450666693 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.4.mod 578 BLAKE2B c735ccc1c08d0564c4cfcb7e1e0c8c3689d720946c9ea24e4f9c2c824562347fc75a6bee9254c59f5ccbd05d264d5e5e39ad6a231e0d36ac956e54d62ae8240b SHA512 49493b91e834214c47e2a7d7425f1b74c77e8aaa479b873e69076bfee4cd1df247a27d07cb5cd1299a465a5c1faa0a2cc4ab10de4a0a2820974ec9ffe30d5812 -DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.6.mod 604 BLAKE2B be7d2e94339ede740fe31ff3f45c454e789bceff522ee9ec1ff5856dc7f3238862732a9532b1588920927066db0de7dcb3bb2f476b3cd69349735d6dd9399dbf SHA512 00a4dc963b9ebc83780099572a8f651aedffc8c660f0568e1b0de3065459201aef8916e73e75147cbf09c4f3d12e5033eef6d346fe59b6c76c21cf9e223ec273 -DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.0.9.mod 604 BLAKE2B be7d2e94339ede740fe31ff3f45c454e789bceff522ee9ec1ff5856dc7f3238862732a9532b1588920927066db0de7dcb3bb2f476b3cd69349735d6dd9399dbf SHA512 00a4dc963b9ebc83780099572a8f651aedffc8c660f0568e1b0de3065459201aef8916e73e75147cbf09c4f3d12e5033eef6d346fe59b6c76c21cf9e223ec273 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.0.mod 673 BLAKE2B c86bb01d9a3ba4c7917a4b58304f0175e47cfd30bbd431e3cfcb006c1e4e32e86858a863b55c75e2d6aee340d7773c1caf89ce207357732c1e92ca286c6223a6 SHA512 3a6f01878155f4762a8a6cffd5975c6bcf8a0372dabf5d2af7ee13d564b8137ca21470ddf252e7bd348af97558232c5f6134db6d9179697ea9c8c3dcb05a9878 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.2.mod 641 BLAKE2B 56e30500314194114823c43dafc551e83885558eb427614c6fc888719e4c483ef2182ddb3740e0d629bc1e12fb3a73d4bdb5a662187f3107af4ef2bdc4a347a0 SHA512 15360e22df091e86e04e4ee6604576a3179040fab3a9b4f36cd61a036db0501dc3ef5f4c04de67ba4bfd427328e9b1d1d243941e2d7149ebdf746055e4dda771 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.2.4.mod 650 BLAKE2B 96e7532a2e5ca57f3ea04d61c7b4138d67a5a55966b37e8ff853797a6c200ad21803cb86622c2617ff55eb45f9817d42c59d08eacd93e2e590ae6c09d972064e SHA512 40f60e0864629388eaffe75b352bbfcc35773a2058f4f5e0786e0810997e9ec0392684c7a3507119fddaa6cb6646b4cf67b02980c94df168315bf05f32edd5b0 @@ -689,16 +624,22 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.mod 622 BLAKE2B 7b9f8d3d DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.2.zip 122467 BLAKE2B 3853df5d8f202e343a5851601c2c70bd6279001f1910bd838bd4dd22958d20f9d54bf1d4b4260b05219c0e9d6445859f2e7aa717c34e718df499fbbff2a1b17b SHA512 de46bc9a2cc831f166a4b447fb08c987f0822ef5aac6e526380db8dce90e778bf2f74799cb65856e48c26ef41df6c84c883827ec0ae5ad0dd6852e8d89d954c4 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.mod 622 BLAKE2B 7b9f8d3db99025ad311a410605ae7d7b45263ec3d9a918c417bd0eeeeaccfbc72ea60caaa8960a74db3f50629920bd2a35eb80544c15d08f8e1e628f2f077db4 SHA512 d9aaacb1d06d9cf3d44512852ab53cda9ab26bf8c50cf1b83874abae6f9cbbce203aaedfeba578e62abf4f44d705b6d76bea44812f58267f5929d610cde8c110 DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.3.zip 122556 BLAKE2B f6d0534174e261909b8763c51122d9a85eee44810f2f388bb185b0ed37773ec8c91906ed8b924bbc5f4b3d68e2e808e48cb677d56f7f321c6d449b8cb900653b SHA512 e0fae945b1f8fef9f4d373f0341109199bfc22d711ef2ba66ae6097cafccf27c5b140800f9bc9abf74c6326758c779908a1a19a23b688404daf47b9cb547ab10 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.4.mod 622 BLAKE2B 7b9f8d3db99025ad311a410605ae7d7b45263ec3d9a918c417bd0eeeeaccfbc72ea60caaa8960a74db3f50629920bd2a35eb80544c15d08f8e1e628f2f077db4 SHA512 d9aaacb1d06d9cf3d44512852ab53cda9ab26bf8c50cf1b83874abae6f9cbbce203aaedfeba578e62abf4f44d705b6d76bea44812f58267f5929d610cde8c110 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.5.mod 622 BLAKE2B c19455780d99925268b9513f5136773219e6d0dcd0c054a5423ecaac4c1888c553cdce28cbfd4798129fab6d40381d6b1664f46d205e1f200acc23b384e08cc6 SHA512 84fddb63c043140ed952a388eb91cf53b0d1880373f37cfa2d84f53fa0124fdfafec7c570d0dbb833be54c983a8093a408771032d49c59fba394f154fe7e3b1a +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.mod 622 BLAKE2B e27c9dd1dd7edf04d621238b305559fc2ac56c89631b30e485986ed37c4477f873caf081efd01940ce4aae46c534a6cf27248ca19d1fd3ee542b8d806b732478 SHA512 a8a80982d88d64c4168d97dc9af516d8b6b063a7730ea3ea3b23652aa4d7f0f9f5477ebfacd72a0e05f40ba87ee6947b0c531f81304c07ac07dfefe902ed3f33 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.6.zip 128105 BLAKE2B e5d4fd33a4cdfe82934b04f82d6cc2a560d77dfe449b2d282877550f6409b776d53a6f3fbd9bcd844c0668ee773c7eccbc8e252c83d8b7dce8e65d8c24037562 SHA512 2c12efa01d4a1b3d469113800ac9f558d26fb2b1a66c33d8a95d72e97d2c6187f2dad1c186dd29f3d87f7964414fab7af1957e67fe32fedef463e3fe8b64e8f8 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.mod 622 BLAKE2B e27c9dd1dd7edf04d621238b305559fc2ac56c89631b30e485986ed37c4477f873caf081efd01940ce4aae46c534a6cf27248ca19d1fd3ee542b8d806b732478 SHA512 a8a80982d88d64c4168d97dc9af516d8b6b063a7730ea3ea3b23652aa4d7f0f9f5477ebfacd72a0e05f40ba87ee6947b0c531f81304c07ac07dfefe902ed3f33 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.5.7.zip 129011 BLAKE2B 990657cff416960f7539cd21ec47d6ea851e0f2ec3b3e77008b2620263e92a33daeac67591945fe2d8992c01bdd75f5e72628c1bfd29b123fdbc65cb5935b276 SHA512 5c2d660d246a1f37f9cc3f1dae92587ce5e3382664dc8de5e435670f20987958b364d9b6d8b0cff30e09a20f98afabb60549a188610ecf3d0911c04f801a25fd +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.mod 622 BLAKE2B e27c9dd1dd7edf04d621238b305559fc2ac56c89631b30e485986ed37c4477f873caf081efd01940ce4aae46c534a6cf27248ca19d1fd3ee542b8d806b732478 SHA512 a8a80982d88d64c4168d97dc9af516d8b6b063a7730ea3ea3b23652aa4d7f0f9f5477ebfacd72a0e05f40ba87ee6947b0c531f81304c07ac07dfefe902ed3f33 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.0.zip 161222 BLAKE2B 69f70ce70eb4a50528a6d4632685c866581c567d3f13e20a5ecc35434a3e469b9ddf7f66bf2939d94718b840a699318aec1bbf55ff56ea50be72d9c567979c0e SHA512 07008f934c39f74b71adfab38505ac7b7152a31ecbede9ce2f040bd8a2d81f3391d4ba790cb219c939ebe2ef67b0b5be6c8831fc472b530701ad97b2242dfd8b +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.mod 622 BLAKE2B 7a2dabb0e238480dc7d6acb0c3003cd5398252360c32af37b8041fc37d33a5cc610b89e4f53b393833fa2db6d1b5dfe26ba09bb8bee4a25a7e0cd495d851164e SHA512 cf5dc1e0d86b993b6b0192269e9779ab14b0cb4cb0c30f70c465b164bfab4f2e879d8d90cfd648e9f00f851e98c9f1fc0db361ae2bb2f2c9bad186c697cf14a4 +DIST github.com%2Flibp2p%2Fgo-libp2p-core%2F@v%2Fv0.6.1.zip 161394 BLAKE2B d244a1794756faa955076c19b2a96bff08af77ee120b2cca12bef008990a45859ef0b01ca5f2e607466b26efb861f9168f26ee4c6c0c8b0fda9035bc2ed6781d SHA512 c90e83475660f863091b2fba70bb9f5a4ea6e8344addf59b0dce80a00cf6ec5ac67a730aa697291f61f2224b6a64fbf28e83d35ad4a36a5570bbe0f46fa889e6 DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.mod 270 BLAKE2B 29d34d864c9756848704d251dea3ae96061fa1e0bd48ab42c2844e3757ef28f298d1b8cf8eba7035e237277206407a3a806ce36df0c376153f64c2e833ea1adc SHA512 38179dc26d1a236e6c1a15b66d08fbc12c5a5890fa7a57ac0c5af94e0c858b483a29313bb4e34c4b7cd70fe5c8dbab64386d6e84470abe18f23ccb371b7e221f -DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.1.zip 24639 BLAKE2B c39b689502c04dff2ea74ffc1f0ee80c81add436f644e462320263bbb5f5ba7e1a9f9599c9681501d41775154628f8e5a1b24511c3886746925680b9c962dd0e SHA512 ba49cd3c8f088b2d46116dac2dd02100b9190de8ce4d43bc9bad92163f3ef248fb1de4681964de60c554fb2116308da810c533244487954237e436f95e71b2c3 DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.mod 339 BLAKE2B 930a6b8fb98c02a0f5f93870a6135be2b302531be5523b7ad0feaf6bcb473746700597467503ea2bd2f2871c8e9cddfa3394e2e96eeb32754d3c03a5312a6eee SHA512 54a28e1b771958260d612cd3b677dfde405d407fccfd7ca9ac72f8f687857d9f87f944d18bf20b3bb56aecef9c1244164ec2779d888a76b3bb33d6d2f00a0c02 -DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.0.2.zip 30920 BLAKE2B 69bc5df061f02013fd8e39784179c4ebbc772677fa865c4df8d4b713bd8c7879e476670e89a7b4638ce0847334b9eaf453c21b50e1686046b384ab472657246d SHA512 3fdda5c06796e427a5cef44784886bce5daa5716d2b9fe00816bb2a436bb43d35018ed656f310d5731ed5302cf527a70c9cba5dd748fb2e1fb494c0ef8350d7a DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.mod 91 BLAKE2B 531d67d38826354b10e939dd2230c2c6b4082c65df0e00dc7ac69cb590ea04c671478d1c3a6f7c2a614ad7185a1dd0aa3332f50cf241ec5b765f2c2a652607c3 SHA512 dd5d900f5b64917e41dd811808a74a3983fd8a73f85915a982b423c8ee3b2105e5fa5d8bb5de26b8f29ef32b2fa02278d4edc06a939609e35674c6ff36e7dd78 DIST github.com%2Flibp2p%2Fgo-libp2p-crypto%2F@v%2Fv0.1.0.zip 10504 BLAKE2B 45975ddec72fd8b74e9ed7fd6f6d8123c94a055c5cf941a2ea699d6f32eba3d72c4a0753ff24411d5ef7b29f50bd80a085a7947bb187e62315faf72a9e1920c7 SHA512 18fa308e07d8a045a94ca6a45cf9e3e747733c87fd94406aa6aa8878b2b399530731d111e0561bdc94d8bd8fdafc4e1b055b6db35addd97ad95cb1f194438f0e DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.mod 425 BLAKE2B 90cf4799de9f82df3884d8e66cf764738360eb0768deea148d0500a3fb71235970c017e85e96c3aab3531b50d32f6d166483076f2402cf6309218f2b7bafa182 SHA512 aa4b042d915114f1c4ecc2135c4c87cd2fb2b39d1b3fdda39596e15c9a077328f743937cd5be7f9da48d11713a40d4a4517e93c289ca5bddfca1afee1c9058ae -DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.1.zip 17426 BLAKE2B 504eb3e7413aff2d2721be12b43595b4a79c348f6d1c9e89f531a2c9ccc26187cb7d04ea44514b7155df180dd4f2cf26c144a0a6c1c5c26778e9c6f96ca53e49 SHA512 29a00553bb8bec6b5424970d1722b72cb6de626d04781d791426df92a2bef0e4b0ef084e89a015c2b53978d5dfefe519bb5055cabba4651168557df4cdc45f54 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.mod 425 BLAKE2B a8bf396f7c92143dd9499133d368420a265fb617821692f3d169e768ea191e2ed8c0d68fcbd0451d4e980b320b4b53907fed313b7023ddcc4c4bbf920c510dfd SHA512 d330b36c579f2e2e11326d5d4c7b0a4d3714d33205195cda3a6ae89da2b7459557eb51f6b3da266215d6617d83fa559ed0162dea7224778dab4dc6e7e5b95081 -DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.0.5.zip 17722 BLAKE2B bb9088bb58d153361ff03b97bc8c69ea717c915bd26a81b8a202e40c44323adc22999b43fb0bb455052a018ad3afc8b0e5f16ad04a1c8777da1f38f856210964 SHA512 fc54d6ff784ef02ce7d948920371f9058c58e1059a2957266d33dd816625724cb722ba5044c7897f780d2633a01e6b6e3f0b5585383946ab98bced856f799c7e DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.mod 294 BLAKE2B c5d32943b408457fd1bdbb5624593f024375a8a9ba5bffdf1dcbebff069bc9d28a9851c9c371794c0fa70036eaf03b12ea27888a26fc85b4518a1ae2b49f7988 SHA512 22833eb0577e6aa47bbb99d3e92a6dbfb5a98167111c9c2f12ee5b43f3671f3a4159a0b755a9a0692fdedacc8a44535196795cd173e121b04403079276ed1fe9 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.1.0.zip 16001 BLAKE2B a0f5c201521ce1592d893b23e40d69fe765f9089ee7fb0263b30aea625d3226837383174ba5e7c0beddab0282a6472a281d810b3973f63dd9a28f527232201aa SHA512 26a3333293d158c1e8cb6986b1c1380f76a88f99d4caeac99331b6a2378444b24ac1be01c95b164b1d2541dc72d81fb365b6ff7b2dac25d232b5ab6533cce293 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.2.0.mod 389 BLAKE2B 2cde1923146d3f63edad7a66392469137598d8a6f4227cd5c44500b78b5d8d3e7f16bdd24e9189548b13c9906831ea6dec2c96ca9150fe1954a88516c4a7f711 SHA512 71abdcc9b2e21bfbb51b7f1b4ffaac30a54eb83381cc790784e9e040aad8736ab04695767c1583e2484594533705542e20f772db5a2ef708ab40e8e2a82a0647 @@ -707,38 +648,27 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.mod 390 BLAKE2B 60a DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.3.0.zip 34430 BLAKE2B dfd191dd0a3f8138e053b58bd3ed1f39a20006a5e091a679f24dc127992035afbab62d5318b355af0c6a71f35a21c07e10b4958e7d85ff51d7c0a0993442de14 SHA512 807b5698d888d2fbccfc3f4ad38d96e01e86fa1581e801cdcbca941eb06bca6136d6446e13810e96d16ed993aec880816640c3c362479148f190060ce287c75d DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.mod 444 BLAKE2B 132879253142ab05ba7f66eb979f15f8379c0741e364017751710d241ce3f4ec44b6fe066d59df6505c2c19e06273d0f12148abbca586016fce9cbe4e4894554 SHA512 e964caa65517ea0a7f3058c7a0532a575266d9477b6a04fb142316a2c32afa94b07373e71e5f812a8220b28b98336bbae9b33ba51988131c3fb9e1fa96b46175 DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.4.0.zip 34991 BLAKE2B 721737dfd4fec870f5579e40548c23fde7f3cf0cee74b621013f3846181606d2b641ed9b92e87bbcef5a3a8ac3e5c4bc48f0acfded103cafcd230048a1499004 SHA512 3dea645811f1642a8b8a4ae93726b954d7cdb0f6cdfa6f4b24f1a4944906c9e6a800e5cae8d5966f542838350f0a042eab6190eb54d3546bb056424243401834 +DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.mod 444 BLAKE2B 9a6a9868fb785f078be969215e5eb0fcbc659d8497ec4c499f589fa47fd348d009556d64783ae6f07aeff5b997ba936b44ce03fa3dad3ced6d58cb8c7f897c09 SHA512 c9fc07e5b5b9dae932729e54b812557fba7acbc631f24a3c852687e6d549ecb5aac4e6a3a15ee0dd6951f37df30922ab19b558129d2d91ac7e046c7b1b7aaffd +DIST github.com%2Flibp2p%2Fgo-libp2p-discovery%2F@v%2Fv0.5.0.zip 36408 BLAKE2B 5f6d584162e577bd0fd7a11cf064d587c44781d78e18d2e41336923087dbb6a29f9409a7e54e047b600913c6172d3fc149eff8bf79001c3da2b2f2e513d12eef SHA512 e454c02e8e22c9352e0390b2d639a6ed57959004a1db4f18c1bc6f046991243b544fe0524dd513d23211e0dfc05c0ef20604346326e8eee6ac92eb897379431b DIST github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.mod 188 BLAKE2B 07f8d02114a42648b9592c0357b5c7800ce9a0ef591c5fcc62f180f6cee9131621fb9e36a264cc4f51a3f1ab9a04255f4a8e4b2854152b4f3ed1ab587b0761d8 SHA512 7ff90afa0edf0c998dd70bb35808ce93ccf9631587518ff3308c94e4ae1a906e96a5288067c6e37cd0de1e29d657ac1e404f5e05f46b77ed6e0967d914313c9c DIST github.com%2Flibp2p%2Fgo-libp2p-gostream%2F@v%2Fv0.2.1.zip 28961 BLAKE2B 17abe4023008187c2daa9a5e50fbc66a8eefca09fae5cc3bd4d2953222a053bca4d3a666c50cca0612fe5b269d48293b45c1bcb00835464dfe721e6a0cae801e SHA512 b1137cd13054656369447e49bd5a2d15f60ec3bd2c96bb7b53356be85178965b49da38fb38ced9ccdfd2d8b9ba8b23b2235ae884e9dc7b0d1aee34dc19a6ef22 DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.mod 407 BLAKE2B 8e2fbdf71d8aa6b1f38752de1da9b8bcd4f0ac34125ac94247ced72d53fc5dc56c83bf050f961cbedbea3e5100634aadaba9b17df6d53da2f6e497a841c7e8f0 SHA512 053324801a99342c773b2b0923b384f29a1ef2f09fc6a120b12902491b117277ad6b26eada7cb140fb73c9d1d7b19cab565d3027efb9cb20dcd235210b22e4bd -DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.1.zip 12409 BLAKE2B 1b3eff034d5579706226087f7f1eb73693228b9947ddbc937224219089c717187ddfbfa3d1e20206dac1ac2f301b6d7da2c94a1ba48419104a7748928793b136 SHA512 8973ecc932ba6d06de6ccfbc21294ce72c17e2ec4b0686f26c0cb4079f452b377d0e76af9ed394b331f5f6c7c15dd3060a0584a7eb3cf422fee88918f951b9c2 DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.mod 437 BLAKE2B 0ffba920b484c9c8f74210b3de36799060fe4bcf84d1bcc90c2a53eba4d6f1257da7b2e3963831cfc90b8792eb4d4c681fd9d98baa250da6594ed52edaac9517 SHA512 305f8b72609955622f91f100d7e101efbb503963b49e590b04d0af019c4102de9b0dbb19384de3ad7ead24deda771396824eecacffead35628e127c691c564f2 -DIST github.com%2Flibp2p%2Fgo-libp2p-host%2F@v%2Fv0.0.3.zip 11124 BLAKE2B 1a1a50066f097dc69449a29883c8954cb999072446dd0a55ca2f46f937039bb99d6be376d62f3cfe8224d7038a807a5c89d6e270c7af533b8c1eaf3f4ab32d52 SHA512 e9adf69f722bb555345bf9310cc257e38b528050d6c8b18430df14961e3b2f3b6d00c9fa46604ac0294afdcc5602eb4ff20f3fa601ce0d39ec8efa6e02514325 DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.mod 229 BLAKE2B 8632547afe3bba3964a626ab4e81a892963798071ed9b1c8adacb08011eabe4e8042f79f85e16fc639ebb648c6e93a192e4fd11412341c83256558812ebde377 SHA512 6d537dd7e6143402efd273394c47957645892312cc7b80c4e0d58c21a0d8873600687c3f5229270c8098fd08a48c101b034770c18aa2176401c5bb70a167c8a1 DIST github.com%2Flibp2p%2Fgo-libp2p-http%2F@v%2Fv0.1.5.zip 27381 BLAKE2B c852c00c162cfa6a4e392f3d016a092988432979227fe14ac78d7b6af8aa37e49210ee131f780722352311f11b2732328fd519f50eff6b5d6f01bba8c110904e SHA512 d814fe96026631a9948639f9c5f92efb1bea01b479779fd72d72fa7cb97004ecddd3d9877d30826a8308e4ac078889c52ffb2b49905db919c5a1a2e350d03585 DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.mod 192 BLAKE2B 1abca5f8b1cb8ec08c440a46a52def7b6351a5ad8094d4482e6c04f2446a02ff7efdf2399ddbe3119c0a8db3bbad8e4d47d04d4bd5ba3643baa57a5ad691cb4d SHA512 431f5960363d13a2cb1e989864c2491dd1f7894fcb1d6bc8040a07003b0f508ddf1440cd0f03e679d816b853ab9582bd7c58ef82869539e91e819c84edf7e50f -DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.1.zip 10589 BLAKE2B a01f110b1285d9c42218ede270bf073b1233b125ace3b5cb6c35f167bb8facfd03253a901aeb1942808d9be4476b32ae4e9ce3d0b249658a2295a89c0248c4ea SHA512 7e6701ec47f760343f376d69c5c31e0b157e77e8e9b9750939b78a801a7a0a5327d754c8dfe8deedd448b432e237a0966101efd1ae9435356bf09c38324825f9 DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.mod 192 BLAKE2B 1abca5f8b1cb8ec08c440a46a52def7b6351a5ad8094d4482e6c04f2446a02ff7efdf2399ddbe3119c0a8db3bbad8e4d47d04d4bd5ba3643baa57a5ad691cb4d SHA512 431f5960363d13a2cb1e989864c2491dd1f7894fcb1d6bc8040a07003b0f508ddf1440cd0f03e679d816b853ab9582bd7c58ef82869539e91e819c84edf7e50f -DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.4.zip 9861 BLAKE2B 1e5f2c16c8d6978bb38a6baadad9bbaf8eeb88252d59bdee7506e732477ab0f7ed2e4613ebb249821642142b63410a4476ac07cb24c7096c580564ac9ebaab22 SHA512 ef67967530bca297f60986ec294da8e847f3a66e26f78832dfb93694f71b35f5534806ea668cbe5c08a4abb617e7eab701174b77a4d1deefeb7e0bead289522b DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.mod 192 BLAKE2B 1abca5f8b1cb8ec08c440a46a52def7b6351a5ad8094d4482e6c04f2446a02ff7efdf2399ddbe3119c0a8db3bbad8e4d47d04d4bd5ba3643baa57a5ad691cb4d SHA512 431f5960363d13a2cb1e989864c2491dd1f7894fcb1d6bc8040a07003b0f508ddf1440cd0f03e679d816b853ab9582bd7c58ef82869539e91e819c84edf7e50f -DIST github.com%2Flibp2p%2Fgo-libp2p-interface-connmgr%2F@v%2Fv0.0.5.zip 9912 BLAKE2B 772bf4e051896af12d95e6f23ad2591e2218ab5a02c4827664d3854d19e10645ee591d90f9dc6e78710d0508d791a266aa3eba19cc24245a9f1386a700467895 SHA512 a72ba1d1e14b87ad4cf26d1a251c718983e2d92245572963e367ece6fc079d19664d41647c7e3400177ab473c578cf859fc1806afd61ad7c10dbafebf48bf51e DIST github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.mod 50 BLAKE2B a383e6475ebb9734977379ef6c0e272dc993ad8a688fe7e73ac04fa3ab6ec0c2782bf754a1aefacf64f5c8dd7681b401850a31d7321c37f348cb1dd6e2e6adee SHA512 f90b04234a98e243c6ad250819e221dbc6a33c7f869edb60f8d9c564d8c2318c0a84e62c45c94097ae0ea318ac13dae09beb5e94aa7d38c5a8409b751495042c -DIST github.com%2Flibp2p%2Fgo-libp2p-interface-pnet%2F@v%2Fv0.0.1.zip 5524 BLAKE2B 6f61bec5c7998beb4eabf9e2472631d70f6552bce0d4650c7a139ffc6dc9903524e0004349cde7166c6e64cdffb0308981df8455333dcb49aeb5e5d5a8b68268 SHA512 5eb66964323fd774aa12936e3587286b1d674bf3ca92128f1f5ac4c67f2c050aaaf19e755c98c29f4c59cbecabc3e52ec48c33c139a756062599844212fe4e87 -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.0.15.mod 1647 BLAKE2B e802f353a3652531e864296984e9757754d43b759600a09da8650a3c46d09ac74aa5785813908b4adf00d0e8e6275a81ab2765b3442cbe7fddb4fbf4b189f5ac SHA512 5bf9e83b5b7b702e223d1a7796f12133ff4f5f7667ed77954a2e66074397bad5a3fea718873508fc18daad81989a70a771293da7ad4a685513665022677be87e -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.0.15.zip 83269 BLAKE2B 6df2e5fbdfed32bf4e578c69f57ee01ec5f6665d81aac1a9fb8ec1b22d5a521682b06ec5002e240712f01886b0fc8c6126f8751b0a614a42fb8665fe0c24007d SHA512 e47d2e50fbc07d48c03234b167b346e394078604bbadc77b59d802c3c19692acf59aafbc56ca33779fc8d3d13052931dfb10c34551dd2ca6dc22d9bcd34b33e1 -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.7.11.mod 1339 BLAKE2B 36c24baa48aadfdb79fe8927ab7de60b94be0eb2684c9714c4da09c35e6c4ad5b1a01ec9e0f07c6e961632e21a4292af7f8d2112d9b03f752613db0f22fe25a0 SHA512 4005235c7b9e107c123dec2d662774347863c51c6cddb5b73968449b1c43be805b16c1c44b952982a96a99719bfcc152d0a0ded8b80505ba56098f19dc47f4e3 -DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.7.11.zip 121458 BLAKE2B 57638f976e79d523bb90f9e5e5ce8977a83622aa47bc4c9e26bd885cea7824896abb5b5bf96c0a5a46b57afb58a7be12e072c1c9eedd7a9374d400996be78004 SHA512 a70fd318595b324f6e436d08ff353092deb491cee1733fd7bc83c4ba1421b70c6509ae96d4e884c41991df48d908f166a372b65425df120b3ded8607e78ab4b7 -DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.1.1.mod 249 BLAKE2B ac5d7286b98cfc57e35aed4564062b8e03e38aab859d5c82bc4c8ec06b186e5ab79861da14a4a1cbd10b5988b74f10f17514c4e96a7fdeeb48e8d0397dc443fe SHA512 1174b76e4aea3c4fdf1fba0bb8f4ac4b823ef04c61dbbf66b20b517e77ae49a112bccba146efda917a5bb751a3f845e5154c552717713c123cebc7b357d90884 -DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.1.1.zip 19754 BLAKE2B 6a65e4883bed6e1a286753799778b90a7028a2f5567c11c48b71dae8f7b9437ddf08887387d1d328448d289626189c05de0920ec3db1b5e0e0c24cf1357a5a68 SHA512 ac0653525a0ea4fe3355e127d8082d7ad7694ebc1458dee50b449e5fe4aae31df9e00c48dde28ce1e53a6217f0c0bc278bda28fb3ece6e5634e32825f89dac6e -DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.1.mod 443 BLAKE2B 96232b14b6359440a8ebe1becf2c6946c0fffac436bba39c050570e63832a5019660104459cb7083c85287c6502e70c8571ba7e7ab9c198df043622696e3246a SHA512 36d28649c973aa6d873b095c3a820d42bc4c2b4a4a377de04c1b3020df90ee00582c71ef4168c279506917e2e311152cd888269e5464847eca3e1e8f0cdca87e -DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.1.zip 226315 BLAKE2B 0b42c8f7f602eb34b235461a0ab5e089c87ef899017cf4f86d81db0c1791b3803051e98e3cadb94c0dcaa56a51b5070a1ca72f3b5b9aa1368f9b8b6a2cb324af SHA512 d7a233fecb35c1c085ab3c334a447065e9d92c3cdb7e01f4c4ff89bf7c74e52cd55050f4ad13926129fda2a0213675afb0b4d7c80091cc3e960a053ada7b8e9a +DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.9.0.mod 1336 BLAKE2B 9a5e628e3efe3bda6063e138a2c1935ca5d7e1fd6937d98a9de6f63c402a4689cb2e30c850ea198ca278c8e545f8674a005e2adb134288fce346aa3bad329edc SHA512 a1fdd734beb7d94a03b16bbdcc104610ad2ee6ec52919aeb302637e8d8051f123a979fe422f3e8ce9756a6fc2739a1e7d023e2e3275b238032063b526e468675 +DIST github.com%2Flibp2p%2Fgo-libp2p-kad-dht%2F@v%2Fv0.9.0.zip 130131 BLAKE2B 71377f706005f24a95c35318d75b7b481cc7848eb1952619a5e8ce95d77cfae509137117e55980d2d042292926efd686d7cb6c5a7e6027820d5d841d94f4cade SHA512 386a85e9f614bfdb3e4813b68c4d5ed048fe77336d6ed4fea9d3ddff5dd6c716459d74d816902f338453a0830e6c5a783b3966a9da37f80c2941e868a7f2fd58 +DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.mod 496 BLAKE2B 2ac651fa702034285730a9fff069689a312a3c360dac254cae04c89432cfec57191a0beb323ac74a265a9b5321806cfeae957a9fe428bc3dd6367cc57379089b SHA512 d08935fdc6acd8a2080855ff62a48b7a703b14948168cd3b13b9ac701f81069fd0cfb23e10d6ff8bf7b9b79b1a1d96267c560c9f076420edf860a0e8c22d1591 +DIST github.com%2Flibp2p%2Fgo-libp2p-kbucket%2F@v%2Fv0.4.7.zip 232497 BLAKE2B 7686b46c3f8626532d3245163717caf8d38a3a197e02ebd0e051d28e59177664a9ced03031349adf5dad5a3121faea2662394e6a096aaa89e89d9129123fd147 SHA512 584a0196184182e0178f08777b862d5f3c01efefa6173e6d3de6a7a04f9658dbafc2daa3077bbdf7fbbd581ae1a6190df7d3d3930c45274717f5b27368fe28f5 DIST github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.mod 249 BLAKE2B 8d016da23fbeedfd61a60943a8a4ecb2ee57f314ec5bc53f69b52c425d4ae575c3d36b97b0c1a89be42b1ffb8ee946f44fe38c334de05ed292fb75ed38f49deb SHA512 723ea37ad4d4c674f4852cb0bbaa0394701aea1cff65e5a8de34e53375bdecc0531dfc52c3c95a56e2c1b9704785a3cc2cbf34d89b289fc860de6bf19025a42a -DIST github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.0.1.zip 9922 BLAKE2B ebb20733159dceded88409c4e52765559918d6c672c08fc3af3b3f193d26dcd91ca98bfa3079ed1cc32e21bcc7e61ed520e34960b1444bd66f7ca1116772bcc9 SHA512 c213d5c24de5d539816e22b1ba1a45c8d37247cc6d6b3e80539a011fff8fd0c6808870c7aba3f0906fcde3ac8098f8294e6c26fb56041b88b9279f5f3cfefa67 DIST github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.mod 206 BLAKE2B d6e290320a413994f130ecebf8ba53b95809404837b407928d9e73150fb862abb39795863e19ed551a2e0269f0b0a0e44cfd07b57a035638235ec94d3684d148 SHA512 8e892d583c0e431d1dc77440d7d957aa034fb0920de36d6ef977930be5ccb8ac8ee21f150f27bdd91102598226c30b94da96e4c0592c4754e6188491d16b4a47 DIST github.com%2Flibp2p%2Fgo-libp2p-loggables%2F@v%2Fv0.1.0.zip 9111 BLAKE2B 6f722b40cee9762d0c8ee7c329b23a7ab270485fe837b996dd57cdcbd728c0660fbb9c1e8b064daa70691b4daebfa527617d44c45011dd438a7f2a3a9553b0f6 SHA512 2afecfa1ec16bc6aed6a05c322f0633f61023519cb6998c63b48e96e5c81aebf586ec28b288624147ea484353c26079f2ee81c1c1ef28a3ce6a6087c867e5f19 DIST github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.mod 184 BLAKE2B 675ed95ae4e6c51bf3923ede1bec64900c79cb1a0686e9555222eb205de9527fa0a6e39df6010f78733c6a7ead49c7b0496d7321cf341bf18990667006396226 SHA512 9397f34ff84b43dd8ffe93a9cbe3a3e03da6d68326a08a4e3c9f1e81308f0e094267df6d5cf0c443970f5883757dc5cd6ac15080edd3cd113d322dd1a3612b95 -DIST github.com%2Flibp2p%2Fgo-libp2p-metrics%2F@v%2Fv0.0.1.zip 9055 BLAKE2B 77aa87602fa4a1caa94615ba307d3a287bd519dcbde01f322a92ff9641af456c180051e9b0fb8a41fb6568531cd21dd7c642c1483f6eddfe2a7f4cdd7f191a16 SHA512 2098c819caa7c37d03920d9a8a76e9de40cfaa96c33a2afb98b52387fe4b9dfdbefc4d03217b85c4293925019084777450dfd0a3f610905e1a7795bd09cee97d DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.mod 140 BLAKE2B 6e5b91d8000c50408fe687a90bd9d2b3d0ff1d2c4b91ff56139b6d502211a3543663130f923a4d2b42c5b860eafcbec299b7031f013e14333e633c5561d1692e SHA512 0a13dd0b585d3cb2035cf3f3142844b29efcda7f8b7c7fd52acd1ad52325db5c45749ab381a71a6d4735b60a4deb931e10cdeb6af22e1b90c2aa3d91b67d82d7 -DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.1.1.zip 5178 BLAKE2B aa94a3970e7737039af512b3c195c42df38c0f6bbd611a7d53411edf113cde92a99f0db47516acbca960a1cebd3b3df54da6caf94f75db47f21d2e06850d6a41 SHA512 490337c48435ab6b2f5a5b0b049ee97ffa3decdc14ca40c9ca45d6823fa53ee28102758950c55adad3ba7546017fc33737954df372b58c3b6a51324e0a0d6894 DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.0.mod 183 BLAKE2B 6e6a1159182732bda38bf492d6ea434a837875c57aba9bdd1d9f49b39a8f1e6e53e10dd27ab95b5a52b9899ad934f89bdf7b5e1f0cfa5185d183517f11d05576 SHA512 73011362bbfe6449149177922ddc236c68db5d3c4123af666dc12dccbd24a0c090011d0640c073bd93cf00d3911d0d41cb99791e968dbcbdf1f5c3daf993fd13 DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.mod 183 BLAKE2B 2ae5b5f1ddca37787975b2abd0373322d299ae56ab58c1c665671cc17ef81175aedf3b4d93b88f21360b7792671d1dd80bfeb2933d481aa5a3c0175cf26c83b4 SHA512 dd46372ec5a2b42fc605b0cb173e6ebe04a8540d30eec6d58bf559024d9444b7d90e6663bd3a31ffe435b089fa568437a4aed90b8197abff2943394b02e3152f DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.1.zip 7939 BLAKE2B f97333c27c504e8bbac276adedcd1afe06a1a053c6b0a0bb83ada83342237158589c541ab53e25d3aa0fffcdd2d4509ef4a5da911e0cd2ade4d3f1d821925f7a SHA512 cd6161cc5bb58dfdfaffdf255197d786bc3cdc6e10958bcfc912cb4d139270af7334c33325e3ca60a2440c7cb3e80148932ae719824ac31bc189801c8b16a38c @@ -746,8 +676,9 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.mod 183 BLAKE2B 895b9a0 DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.2.zip 14743 BLAKE2B 056699b2b2800347115ae01538039db47979d83e5da8c10e8a39b646c4cc420284879bef7e1a4e7bc08e3e2835cc9f27130f3f0be128902a006b19f9b534033b SHA512 81b8f3babd33201b430b165c34b1bbcbfc922e97e9b6a42855d995dd8484c9695e8e9d1c8944a3a70dc366fece6b8d703d72eef134ff65edc5fa8fb82b71751d DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.mod 183 BLAKE2B be3ce9f7d1c3ce83137a7aa2740c1a07006b88273d2be5dd2ecac5f32bb9c790bd84e4cfdd9b6636c65a643b221776569ca6fa59e8b83b27c2165fb3a7113daf SHA512 da6bbe10c3297f8bba4f1bbf9d55958ceda36fb008c41ba6971cb185859ece9fe52b87b6f1a91d0f239e39e6d99ebe7c56b3db19095f56384a827df645fe941d DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.3.zip 13570 BLAKE2B f7c90f07cd3f4b454e493e7962220a587cfe7ad711c7e6c258b97bdf431a78d4912cc754db9c38b85d6a17ebe29443f7a0501bdda2fb674706fd985728b1da13 SHA512 81f1cf4f08e4f4c763163ec62c9c56afcc32506c28a264eac6a3e1ea23fd66a28fec1e20fd0ebed5c932713eafc1000b0c979fe973b7ef3bc31568815bf242d2 +DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.4.mod 367 BLAKE2B d88d9a37f8294536baa18915825196c2aa4399042e91d11ce292ca532c969f3d8e92d7cc77bf6a9172fbffe9b56b113bc1351fa23df4ef30d9fe18bede8461e4 SHA512 69bd8f918c5dbda190e9709b0b55b2a782314a283691b992f2f9eb440b61a3515414069773f3c93b81a33043e84bde4444493051ea2241d3d560ad838bc5b646 +DIST github.com%2Flibp2p%2Fgo-libp2p-mplex%2F@v%2Fv0.2.4.zip 15142 BLAKE2B f5def093796b0b358517f63eb00358973436e101cd11f65ec7ea78f9f41838038a1aef3aa88c20516ad7558495b2abefe01b12784c5eb20e841648e4576346ff SHA512 a8b126242496f183f16f83aa2e966514e7dd625ecb32d4d4fd60d0a4f2d2b740985c8f2ae1e41127274abe178129516c9168761afd3ef18b17706283c08cd891 DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.mod 324 BLAKE2B e817a45327fb283bf11f123bf95d0af19d011db8f22ec335f068bbdbeda2cca0d5884b41e68e442a82607d6c146f24414985143aa496df75f053e3b98fb482c5 SHA512 8fc9b27588f958b0e1f40925f89809405fdaed75cb61abe5a9bc5abcbd530ba017a7d6209144df5c68de2f5b11d0f032287424c7a9d3f3da9b178050b7bd1d07 -DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.2.zip 10593 BLAKE2B 084fc40fbc6d6a16ea5f42c7f6660fa95ac9554bcf13f762ca5d75b9efbcecb13c292be0f71fdba7270542c4dcab7da44cf4ed9d6b4c4d6337e724a5d0ae468c SHA512 470e73d4692c3e408ee8609a30108586597f00319d1466aca0874dbb2ac69445e5a8b5293bc97d14915184894032c6b6ab2b8c69bab9b03f0c63f7fff897695d DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.mod 328 BLAKE2B 05d413c8e29820fa866c650850366d3f625a4fea86dd0c5c907c3be7700efd6c4bc67f4026fc6684c8ff427ec88c10db3e793c613b8033b0e16479262a8efbd9 SHA512 563317f58414406bf9cd7c5df8557fa32144f40f2d1dedc5a6a888d0729c016094fcafbd1facc6867e6cd5783afa93b90664583d1ed2722584cf3304dbf97583 DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.4.zip 9499 BLAKE2B f3fbe3592327ff38392d2f2a0d1b9c1aa4e30256f3e2a9254a6deb08701fd5c517ae4a8e912f96ac0af219a135f11d8fd6663c0af7fd75c34de97eb22bf91ef1 SHA512 eba22e49572199d7a3b6cb75c6d68af2b05c037323083c23fa88563eeeabb3da0d5b6489b9512c008bb4c9f88a9b3dbae5797f188fdc9e5da127f20a3f3b0935 DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.mod 264 BLAKE2B 8dcde58f9f2d6f3f0bab9d6ba270c6d25ea65fe5c81040de83aa294fc6460a96263d5437827dbe77a0eeafbf5046f06d42134f709d81874e4428f077c918f410 SHA512 f490d61ce4ebc6cf71fc21b76bef42b7698b2bc6f1f7eb3a3bec1647be67d903adef907b5574001841c69c59e6d5e107b32d3260eeae7a2e47b6833245bfcb2c @@ -755,25 +686,19 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.5.zip 8441 BLAKE2B 8a6858ee DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.mod 161 BLAKE2B 4a8d93410135ec18cff51a782a912b0c18f5beaf9a02dcdc9d410338edd867b32691698d0d7815fcd6deaf3b7fc1e63e01afababf03ee469603c39d23e55d17e SHA512 3c153a09e465fe3cd16a6d36ec380ecefdd44c578ef855457717bf24435f05e19a27d0d1e717b166968eb41d2db225f73d405a1be039d81824f087c3f05cba16 DIST github.com%2Flibp2p%2Fgo-libp2p-nat%2F@v%2Fv0.0.6.zip 9058 BLAKE2B 78eab2866a3602daf38e84a908179d06a0973b451bf95689f27875cb20e76c38e3f0dd7da9f943a6a874119900ccd93f0f40216437aeb5c4b32e33fcee9b8eea SHA512 5a6549fc43e2751e6838cfb13514e435c96ada4825af9854b5fb2bb521fd6e6b3be0d9f2ad8b49687d9c2636f0d9bb8dd6c6fc131875cf5083d911baf85cbd80 DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.mod 378 BLAKE2B f952dff76e0654ccf928c26a7cfc89e52d0d623d54cf16ed5592e4a9278fadadd30b2652d0126158884413fb48dd9014aec0ea75276582c76c9775c9ad2e10d6 SHA512 c23b6098529918b34de5d91d518d239663539a6cc9d137fbc4516b1a5a48a02941e3b13080ba3494200ab426dcea4ddd309dcb716adeb8d10e9cd4eccf9bb5a6 -DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.1.zip 16407 BLAKE2B 5ae25b3059029a42e8733fc709db9a290de35d4a7118539de9cc7c12fccc748a064928659ce4b6e030290480f65caf4f36cff4dddbe594123699ffc1fc2e7360 SHA512 0d7f316433e9b60bb571fca6e652ed738d18bf9e66a9f0041c6b0c9e8c2be2a7979b66c567ee589f64b7ba9d639164e1659b6010c9de208d63b0739ec574fa39 DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.mod 378 BLAKE2B f952dff76e0654ccf928c26a7cfc89e52d0d623d54cf16ed5592e4a9278fadadd30b2652d0126158884413fb48dd9014aec0ea75276582c76c9775c9ad2e10d6 SHA512 c23b6098529918b34de5d91d518d239663539a6cc9d137fbc4516b1a5a48a02941e3b13080ba3494200ab426dcea4ddd309dcb716adeb8d10e9cd4eccf9bb5a6 -DIST github.com%2Flibp2p%2Fgo-libp2p-net%2F@v%2Fv0.0.2.zip 16989 BLAKE2B 5f71eca28ecb825239d3e45285e7dc0e60c704f3ccea24b82b628468d1a2976977946f7a7d320b2df7f7bc660f192e032ffe8ae578669a783fd3b22a94f889f5 SHA512 e3202bf8b7257767bfc2b3409f766d0f24ee05cb1081975b864c240b9b7c2d13de5198f7e5329fae09b2337bfc43c3cbdbc8ca75f9aa3b693a61c4501a9f3d5b DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.mod 254 BLAKE2B d6f04af13085aed54cf1afc595279cbe23fcaf73b7a02596eb9ca1431962935a7e8b2063488ce6a2411ca90114e9fdbe0084737b6a14431af223b4d516cc66bf SHA512 c0f0e24b159165a1ec6b7e76642e8f97861021e4e9a1aaaf56d191f3baf8b1b81ae0293a734eb1b68fcf138099a52d5cfaba702530f782b83da0c7ac2808b71c -DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.0.1.zip 9786 BLAKE2B a2f4094f5d581dfa08b2ba90078e95b67a7a50f7eb05b7e5747a390955b3b07395e8e4d778d36fe757bc4b7e54ee254ab91afb0e125ed53a495181d16967c538 SHA512 964b272c5d0cc2e8a5ab1e7347ee8a5e0bec2401654f5c5da6834a546f316bf092e80a94f91591e5c5873a86feae6762225847ec41a7026983a472626d575d32 DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.mod 217 BLAKE2B 3065f327bc37a609e3c370864f59a98b2d50e09be65e73157fdd4a9ed2e44693e45e9c3ec11c418a0ac9e354a0474a4159c515d87b6409f66efab0e1d1b449de SHA512 de073c257f366028c8cc56c46fdbf858439f99ce05fc198406fb76eecf3b4c24c845b198bd8f28c3edfb629e96a4b994fdc4fe9c28e67b027c89f6da99ee6ade DIST github.com%2Flibp2p%2Fgo-libp2p-netutil%2F@v%2Fv0.1.0.zip 9044 BLAKE2B ba6d7d1d449e73895bdfe896dd4eb6c986a72785cb573224810ef45c7fc7d613b66fd0f97f4a9b3c6f11097e6c9a65515c6926b77ed2ea57e9d6ed226e73c474 SHA512 5d0d23b6b0b1a5e30d28f1257962943f68b3bdc627cfd32db8ee1a9fce8232d1b6582b57165011a1e9a1e39bbf9dd42baa8cd8f46e29ed6927f4d13440dc6c03 +DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.mod 409 BLAKE2B 72154052efd224fe6a5366cfe57f33be02e0c4cf74bfa41e65c3b58cb0f1fb6a4e361f00ad34bee2ab0052658846e38efb227bd36e981cd3fa4996f481315847 SHA512 d33c1f6d949974b9de6f1aec1da319e240ff3461bf8e2e84ecb74df82e7b234fe6ea75b07c23fc0c1e225dd1fe9d2c22a90eafc20c7a1ee5bdea5a2bea28bd83 +DIST github.com%2Flibp2p%2Fgo-libp2p-noise%2F@v%2Fv0.1.1.zip 40288 BLAKE2B 48661251a91221ba76f489f6d503a0320cfd5d2ca7247396748e016e48791f252473ce509acf19bfd015399eb1df4b09b1039cad543c7488fe8cc7422e27c802 SHA512 0b3d80b46243fc998302d6e3b70e9a11d23645f19f64a429c5dc2b4d9a1e3c90cd775aa91813d70b818822b69b0e41d227a95acdc2229cf8a2b69645006b1250 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.mod 175 BLAKE2B 3c08609fe1ef0f34a6b86a1d0931f951e229fbce7330b9a81f844656439fd5f7c0b6bf237d15345d3a55d6509a1e0ca7d2eff8848770c0f925e0e385b2bd437c SHA512 5b9b9ae5115bba232deeca14deb24731dfb41df537df70e3a6f7f54120dd8310d0e55ac2f4092650fe4d161e187107c67f1ad3e0487979db91c34aa156492125 -DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.0.1.zip 13661 BLAKE2B deec55bf4f3810e2a767c6d65b2327a68015a48efa122f41bae48586dedb89fdf05b9d2009f7b0da9f390b039925d645dd45b47fbe0be4ca11a17c7ee4873cd7 SHA512 e0e5c05cb4d4478c8c410bdb8ed539585ce9d2cdce687c194c7bc49388e064d56e5e60f22bdcc0d7f6b5ced73fd4e6ef12ac30648391b1ed716fce0cc48d5465 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.mod 175 BLAKE2B 52445791cacce98d4a1769ed48a6f6571b96f2214df9c190c696e146fb998c478f22809abf87927b6e9e698e89a61a7493d41a7ea8607bf26cb87360440e7cf2 SHA512 7bad839a80868376645d2cebd06e48c002ccddde04d3d2b86008f90ec2d52773844d2a660cf9ef9a05749ce24af3c50785298357ebe9d93bfccc8c033c74e2f8 -DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.1.1.zip 12956 BLAKE2B fa371d0cf088d7d834b0c1fc129a0b3726efc554af6d42816935c54490237b37e7ef255c6ecef9477e88c9fc7f57ff2b798f1e4a58213db25968aa23e1fed55b SHA512 de0863e6ff01fc9e5d46bb4a65092c204d8605d44622c8ed99c5b4052704cba35536052abc7c32f648809e429aa84669141272778cb9c2be10f0c1491aa64b68 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.mod 202 BLAKE2B 81570714e1bef726f8a36a7cd282248854f66fd2253b08db8246eb18a4da9779e72a2ea07b06f6d2e9e0fc7f665a6b7c6df05011f451399a0541e751d0e1ba84 SHA512 2a757fb2b229c83b7a12e9d4afe29e6964375b8ac69e52c4bd9fc71967e0e4bda104c9a6e791e1267fbbda81031c3a826191998925046b731369435406d4a009 DIST github.com%2Flibp2p%2Fgo-libp2p-peer%2F@v%2Fv0.2.0.zip 7863 BLAKE2B d175d28e8fc987d9aa4d265d8aaab2fcd85bfb113d07836cdb1e50a2fae1d82d182350f3171d2f1060519bfdd36e9bcb121376bd8752ac4d28ac0057b4f0c828 SHA512 0882160f0a20fc9c2c669881d394c8013dd6a033ada4aabb3c7a3688a06c1b9702b5e61dde31ea4d59a857775ea0f7e2db4bfecb23a58bbfc2253dc9616b5784 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.mod 722 BLAKE2B 3b914e118763ce01ab0cc75f2d6106a9bbc805148b6c5a545a0133b4b52581e528cf975ca3e104da84aeacc8300fe2c9660f9ca80333263c7482162409431207 SHA512 22696799356119c5f09841ae78e9c7a86e8c5c56ac6329fce19e4e88f951e99b5ee541fc4fede0df723d07b2925006921d048c7849849f0ff0327154611de172 -DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.1.zip 62469 BLAKE2B 4f99164d00b24023c2b98ad2c7736288e9951dfb2c13b18c0fd2681084e08753d3478da52b1765e4c4935fa1c1cde50818409697fd708002fcbbf8235d83ce17 SHA512 3129086203f82bfd9558a358cc0b5b755fb6856774736a1cdcc567b0c69c6a4908b4734370cbd451bb64dfa9353e335e49349ab86d3d457b21d027d28b3fabb9 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.mod 722 BLAKE2B 3b914e118763ce01ab0cc75f2d6106a9bbc805148b6c5a545a0133b4b52581e528cf975ca3e104da84aeacc8300fe2c9660f9ca80333263c7482162409431207 SHA512 22696799356119c5f09841ae78e9c7a86e8c5c56ac6329fce19e4e88f951e99b5ee541fc4fede0df723d07b2925006921d048c7849849f0ff0327154611de172 -DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.0.6.zip 62800 BLAKE2B c63ac42ea20b96f78ac5aae414a7252b3eb75fa75e2f923ec34f8080dff72db29c8d2c73d7bb2fcb41d7dbbf9b18815f5fde36e1b4b11c581af5eadd835c28c0 SHA512 fb4f2e43caa5a78cbc81486da8f080dc13248fe104eb52998db2365e7f053d2dda655f7d4d32ed4f8805def2808995b891808c33d80e5bd493df22eb0f55bb00 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.0.mod 763 BLAKE2B 44c0f270dc205a790debc987fc317ce8793303f95ee4a16cb305ad4e1ed947dcf715dd1e7b45e58b21fef41997bccb067b994a8c9821cca89ea5f789370c4375 SHA512 53a8329c87880d34252b7695470bc6cbfc38d950ee73a9204fabca4b9c976028c8908c296d52f9d9679461eee9c5a24a214d77dbcfa15aeb4068b3895744131e -DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.2.mod 679 BLAKE2B 48322936eea9a9f1851ead046dc37bb79db6021a381ee394f270cbcec5e7f2f8f2759ef1be3a522c7556bd5ca6e8a3ab4b86bfeccac5f7d6043520337634577f SHA512 7f2c63e214a9fc6fd1f3f78ad435d957444964debda6a00170c419b7394aea0375b55fd067d10669245abd4bcab689420f5690b7edda49dce194a1abfdbdd522 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.mod 679 BLAKE2B 48322936eea9a9f1851ead046dc37bb79db6021a381ee394f270cbcec5e7f2f8f2759ef1be3a522c7556bd5ca6e8a3ab4b86bfeccac5f7d6043520337634577f SHA512 7f2c63e214a9fc6fd1f3f78ad435d957444964debda6a00170c419b7394aea0375b55fd067d10669245abd4bcab689420f5690b7edda49dce194a1abfdbdd522 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.3.zip 62093 BLAKE2B a7538f0845ff4452a24e106f10f2d0ccc6f87034750046e90dd6e7702e425f7ae00b28f1812fb5de4b2fc82af83153f9249669038ac65e378e3f463dc6ad500f SHA512 5618ee5d134efd4e474bdb2899c0fd5c10fca3fd64a0d045cc8035fc2ceaf3557d882d48b25936cc083fe85ce496a8bcc1cb5632f7eeb3c6003f15832cce5da6 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.1.4.mod 698 BLAKE2B e1e652aff7ca0034fc6e9d9bc939efcc0926fbe6838279dcf7e076e1ece07f58c3f85dd3db16facff281cbbc7825f116b92bbcfbeda055920108371a563cdb77 SHA512 56eb61cb7772046b8a6e3e455595f57c0ecbdde6597957b71db0609af44c660c934eacc0f46de2690c9618cdd06ff777f5f8f27b1a19df89d07421e8707ea43c @@ -786,46 +711,34 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.mod 791 BLAKE2B f86 DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.2.zip 69849 BLAKE2B 7ab5a5e631f02a7233cd63b02a6ff3f9862350212ea4af0e4a5c9e4d36c91cf616adbfdaf4bce9117edd22bf4254565c218eb04cf4c60c977fb666e636fde417 SHA512 52e2026a8a74fc6e922af752eb39bdae30175648eab00bf4201eec34a38df7b71c299162af8d8547d726397a9e81894974ce3b50b22d74d80db0e8495c683eef DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.mod 791 BLAKE2B 1d4727431a080a246574ea502776184bf95771b60b19da836a67ed91d4821a5798a658576047882e09fc7986201c451cfd28e416c27f7814c279c1bb458a353b SHA512 fb5f555e598a0d8ff5e07deaf0a825e20028ae0ed9afc8d79f44973205f69ba91ca55c6c32243acc594ad0acf3a768c5a815b29b7592844c7adcdc70a3a9e0ff DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.3.zip 69919 BLAKE2B a5c853f967c93b1417f6fcd09930f5a6fe6b200dda9baca27249417c43eb8a71e2ccba62610ccaeaaf7df4c32e90274a96bbaa5bd3af17b70f2a229552921b46 SHA512 99161f2038d66f3ef5d67cbb36c98994016bf9c5cb836b279b89986d39890cfb27ea056619f394fc26dbb9107433fce47f583be0c11045e8c448c8d578d6f58c -DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.0.1.mod 440 BLAKE2B bbe6a477165b9e494302acb4a1932b31d00fcf3b9f77c98f9c9cb1742d5989ea608c6eaf694087befb3e1fc3179dcfc042dc8ca274f7664b3c0476f9358c1df8 SHA512 ae6a79ead0128ff6837944cd4d4fe61e36ba98bfd586c69886f8e7a781d0081e5ff79076bffa78f2e1e09ad7cb9ad056f4281bcd23c707233fb4198b24a08b1f -DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.0.1.zip 10563 BLAKE2B f6b9e0564adf140d2c9e8c4274b0ae5420674c67d16d0dddc228f6179a626ac617b77d15c9457ec45594c90f198bddf906fb4161dbad7411e1d23f10d6f17a26 SHA512 19645c81dbf54277bd415ae91e12a736677f859e55cf644491c78b61671cece3744323833cf1a2d362a7122fbda42351bf6bf1fd71087e96e5bcfd9dcd9190c1 +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.4.mod 827 BLAKE2B d9afcce6ba50fc582135fb3d5a3eff7526e717f36e709ea516496a26767d1744a26f5253c3b4cce82960521da1d7aa88605c14c99fa0e185b85047f5c643a1dc SHA512 7a06abb0a41f7ba51937d22d25016228991aedc50676aa89b588e770b0d588c8fada06769638a1996a3d2c63d05fd85981b731088b2eb82cc67172e49feb0ced +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.4.zip 70247 BLAKE2B 0350d1770e9f603399f5092fd04c2f0b3092cc181a2d809ac916915d4f00cd68f4e5ee4f1cc2e4ab38748150fa40879d29690671ea2f22c7d349312dbbf59ef4 SHA512 93eec352d47d081826d25528fa3ff6faa37e3e17be7e2b1f70d8d3bfea0f8dd2eb4c771fdd24d5dc7cc413e7dffd2af82a9a3489b2f3b82df9951f40a9beef64 +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.mod 827 BLAKE2B d9afcce6ba50fc582135fb3d5a3eff7526e717f36e709ea516496a26767d1744a26f5253c3b4cce82960521da1d7aa88605c14c99fa0e185b85047f5c643a1dc SHA512 7a06abb0a41f7ba51937d22d25016228991aedc50676aa89b588e770b0d588c8fada06769638a1996a3d2c63d05fd85981b731088b2eb82cc67172e49feb0ced +DIST github.com%2Flibp2p%2Fgo-libp2p-peerstore%2F@v%2Fv0.2.6.zip 70353 BLAKE2B c91a1c2d8aa824d070c69a02382970d7c911f927fd5361c08ac6da37b44ae3eb705fd2a6c957342453d4daac82388c4ea6ed3f9f2fac045ff7933c88eac21d80 SHA512 d1b22f81fe21b1514d61af0d75eb96a3bf34bb25ef1425004f14b090e184cb3c73cbed07dd4502ed87801706cf507d3835c65563f90360d2f2740f5b98394d6a DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.mod 212 BLAKE2B a537d605640e7162aea3e8627008c68f17ceb1cb618233c385eb6d5841f1ab8d2aca933b752ec7b2178bd58ca9e6644b1ca0b9eb49b2abf625d77e47f6b8fbf8 SHA512 8dd0cc94669ae09b41f3f87c70c2d0d44783c7aea7b103bda4f4b429e44205394c3490e7b5e970f37de4ef6a2b0d674105abd3ccfa2cabca24119f30700bd3d5 DIST github.com%2Flibp2p%2Fgo-libp2p-pnet%2F@v%2Fv0.2.0.zip 11504 BLAKE2B 4b98b38dbaef061bd55e0cd8c03db1d585a245eb111be0fbc72ebd2269f4f4ebfb1267fa87aa56b1e6302921fe4847f7fdb795929e521187a519a8d05bceb1aa SHA512 9b40df326943fc74174b4d0641a1f1c23fb62a9fd6c2f95eb000bbb9ffcef9f5d53c5eafbfa59134bb06c28cce14ffd4b34174fb7e6364a33d7f368a0e02ba1e DIST github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.mod 44 BLAKE2B a169216703e70b926bdc6d021a3ac7608d4cc13464f3f2b07f3a5511e675ff63a22f43382a0741ba886d88df4740b6f1b58cff532ec0799885584ee7f1170b6a SHA512 8e19e375e53e8b723df4dc6e4afe040a2d9efd9fa3220fe816215ee32e291a175a6ea640c38923f5777d05aed894091de0bc25c95a6386005579d4685a9a65ca -DIST github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.0.1.zip 4117 BLAKE2B 4a352b56d8f93ece0bf1316d44b3a09c40dff7a6b9f4884813f24e8ef5e1d6489fa934b4f8d6b7eff6c37a771409cc2b8e901b58ea57bb61e18ee44d05b49396 SHA512 519a18e28686b36069ce1a637c601f05a0b54a15a339ca25a533fb450ca63fb1b2b9d1b8632f425a2a5fc7ffe9eb42ad171d4803a9a9ba4191b423b706f48d78 DIST github.com%2Flibp2p%2Fgo-libp2p-protocol%2F@v%2Fv0.1.0.mod 102 BLAKE2B cc5328a0958a27bf0389ef11daf678e61a8f00ccca7b962c52581a6f6a89e1af412afa321eaae58ff32bec0d9ae3760a3bda2d00edcf7b64a5663e59824ffa8e SHA512 62d09c3897be8ed667863f3947071ea7212df0647fda5d348589a9f01226ae87fe0015ca9ea8edcac77daea2eab1848c530da2abb924464669537140aba7bcc1 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.1.mod 620 BLAKE2B cc5e7c4660d703c63c13078e925245763a1f63cb5c5f8ea5c4302e0e73e65928c2d9923f27d0fe2fe52a92a88e4a38d4aa16c211a01b3a9b41c9b9c00969dbc3 SHA512 d989eafc53dcf6558ce1ef7151f4d228dfe652e3b3d00e467335b75be0f137431bc4edb52ec9c853cfb09d4c4fd2b9013162ebd8f11539e7b7350db4548aacc9 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.1.zip 52077 BLAKE2B 15c0e1ac1ed97e511351c12fe0e5f7195ca99432a6fa604b410d1b57eddc3546998ac7d5ccac93b9fc2d023f791fb2bc5bf114519600df6feddda465ddab01eb SHA512 66c6013a7c2841324b11c9774bca7e097dc193ada811baddf377b21821b50afebf06a751d146cfc8d632c2f06ba1c93cf42ea2e71cc965d9b10a10f97588c2ea -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.3.mod 620 BLAKE2B cc5e7c4660d703c63c13078e925245763a1f63cb5c5f8ea5c4302e0e73e65928c2d9923f27d0fe2fe52a92a88e4a38d4aa16c211a01b3a9b41c9b9c00969dbc3 SHA512 d989eafc53dcf6558ce1ef7151f4d228dfe652e3b3d00e467335b75be0f137431bc4edb52ec9c853cfb09d4c4fd2b9013162ebd8f11539e7b7350db4548aacc9 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.0.3.zip 52837 BLAKE2B f56834756ac79fe658c95852a6759cc5bcd5cea087cc6f2b0bd68074cf2d58362e766bdeebeaa17fdbb2b2b06680d9c2d58414cb3bd39b6aa5de98ca88b18e08 SHA512 0f52fe85dc9bef5e4e881503f3200a20b5e8fa728f7ce97510091a9499a16cc3dfed41e9d7f6024eee73bb1ef83f827f0eaf4c7fd75878f1ed7c47049545df51 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.5.mod 506 BLAKE2B 3a6a736d3dbb52526e0c40f1c3454c26b0015167b8e704982c40385acc4ec1b617f1b6fe138e3919a2107b190f2578e46704092d94025866f2dbfe04220577d4 SHA512 2b7e2443cd379732add477c7c18341ca1573b24411867901b7995283893ff9552edea7fba0afd5439b56d13405dfd136c9fb818c2fa5cc4ba0faa8905e4f5fd7 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.5.zip 90239 BLAKE2B d10451dfde8a42d13045c5c25daf6d0f7793873efea94ee891edeeabfca4cf87b3f6c793c6063bfd17cac7f2098001ddeafc1bd7eb34bae377271faf97f2ed38 SHA512 049c21db9fb2e1ca3190faec4767df48bca644b2765482d86c593b1f1751cbeff575b81e856d0d50c7cfe73c45d9aebe92791f466c244f9246c481a7ebc77c2c -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.7.mod 518 BLAKE2B 25555321bac27693be56c1278d5c4832763dc9109f5e04939def5dc53c34f5b09274f1fc344613bdc86f4241cfbbd90c8c5e2b77a14f457d919014959174170c SHA512 a48cea40361241e8e585eddec351c4377885a4fa829202df4d5f4a9bba1b844e7413c339391654f5201c2761451e72f79ec7d634134154be5ef80188542a3e6a -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.2.7.zip 90711 BLAKE2B 8b95b8bc13d75230255b35c3d749532b906ccb877152fa57c0b54615823559243181974fc389b8c1cecbfb511b63e29abd9ad2b583f041efc9c26c902d97f15a SHA512 fdad2b58357cdcb63ba8cd5475c43699a2b45000b39e6b1ef80c38a40ea087dd44427bde37de68f26266958048f973ced203e081149dfcb0671fc2e5adcde52b -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.0.3.mod 636 BLAKE2B 82da4d5744c47f661abc5c6a1ecc725c68e0316eae61bac3799117c352d3256e8664809b0ca6bfccbd1f65aac3ce62ebc0baf1048902059ca530451c7dd06ccb SHA512 0e8456d2731a3a4c1b75338e1ae54a0f5317962ebc498e7bc3fd3d0a2211e3126f825572efb48d361c716e6bce66c8363ced0815cab3baa939f4943ca3bccce1 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.0.3.zip 19388 BLAKE2B 6bd7683dca41c0994b6b5ca584c84527797cded338fb6d0fd15e41e9b949f8bd0f0cba72aa194c5d7c7fe14492037e49adb9c4a29d5747f51f1377a4daeb4d95 SHA512 57c0ba84773eae104d83d8fa9d68ece770344ea6c4b8e7a85cc35189b4898986ad021fc1e62d572c26a927dbe8ca22ea905016124d12699652edced1fd25d289 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.2.1.mod 481 BLAKE2B b8e4ebdb0e759c43cf3df1afe3a12b8e9771e0d4d68bd6bf102238cd65eb9927c613b7b4dc7b173d9eaa2ca4b9a30f14dfc871ea052d9726f47cc605b14d97ed SHA512 13651a8d21fe6dcd9bdff58dbde64ebb7f35501d36060ff06a9adaf8bff4979def0b725cf4cc0a48f0869bc6ebebdf31fe21a4ba6a1fe86a5779d8d35382dd27 -DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.2.1.zip 32221 BLAKE2B ea5422615f673995e8a70378b450f7108c2cf6c1ddd1012bbd70c0e8447975b2d9188be481c7e25722fc56165773837a529d136e005c5f60783b5365e33e6c60 SHA512 8bc338696be2af764b7ed460f58507bbf267e665f9bb9ec18f3932157420e314b5570f6a7efd7464e214d7b9df8168e7509f640938d05c8d770d340c87ea5e25 -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.0.3.mod 506 BLAKE2B e4abd9289e0b57cf979f34416e74f4707182ca0f7c5529cb96072c66d39580b3b1269022feec84665800b4c3dddfe4b70686925fdf1220d56858ad15c8cc1559 SHA512 ae47865e35b382f4f3dfe134b1cca37e0818976c2f6e63f7a73c04904a9034696c948849599fe2724f9ea290b4f8f1bfd2ba1cf9f6a9d9793e33044564af8626 -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.0.3.zip 19880 BLAKE2B ea3247a30650c58db5a36dd6cc845b67d25391999ae13692976d08a04dc3fde1cc4d477d676accc48c3c8c91c22c97ac6f190a531696c5e2cd2f4a603c9f6ff7 SHA512 07bfca642f9011b03ecaf2d0b7d1255242f26c858e02464856d51a0ecd9c132ae0f88ff171ce3f1fcc9d021d0c235b3dca7fc80ed5d1ecfa66e5ed243d63437d -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.3.7.mod 606 BLAKE2B 8b61d480dc61a9ef003e058c64a983468f280819da0725fa53272cf88067d3fd337497dfdc6fcc89b9c2f91fadd41692ba6588de3d5cf403db54606af5f7781e SHA512 2290c4656fae9463c98f3a7fe2de5079a8a988b4715c1d9550033780d9b462b2e91818d9274079147094ea68aa57abe9c9d8627c98bb6b4514c2da4c682ef5d1 -DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.3.7.zip 38533 BLAKE2B 317fe005920793589c6ca253696490c721e838f92eb9afd001eacaebe993cb8cb7079983c27ba2749894724cafac04c8efcb1a02be99fb8613f7ff9664f9f8b6 SHA512 26cd079a9d24ccc639a884eb115f4c313eed2f797c12736e9660981aa5c15f02b969760951b7bc1ebad4f83b191d84ffeb737b1773ebfee844e59c95f6325ffc +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.2.mod 873 BLAKE2B 950473b2e36df13b3595b561e298087b3b2d850786c7f8c430641bc8bb6c30bf4343cbe434257ddb3b8aeec4280da46a615ffa395cc596b5724199628ea56e3b SHA512 53265a53b9b1673950321a904151f45ec8067e3943ac2b77ec9decdc47af982d04655a3f1861d986d1e4220cdb743eb3a5ef207efc0412730854c1e52f53a6f7 +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.5.mod 631 BLAKE2B 50e9b9d9a5b2c4d071ee4a0ee2c99b0e2c0165d9c6c0ebecb8a533475770b78b9b5bc55d0e8d1470c60a9506aeaf985daf8b39b01919df0f64120978f183b771 SHA512 a4821571f9279c2bc046a49e9dce60a3145c5c3605fe86ef026c118a7c1f2d308ae6f6a73345cda226489b6bc858f138cd015816409fce0da6a37387e3bcff52 +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub%2F@v%2Fv0.3.5.zip 154956 BLAKE2B cda2dfb1a1d2164fbf12d9ec430efa1deb3183fe682d215258ad54a458536fbea245f82f19bf90571b21968e20527dbf34fd4a1fa151b62c861917f5e3b833c5 SHA512 fc6ec9fdc285d2318b097d9664a656f4f5bff879d8346ee6468651cf60956262e9f07c3949abd90006f3606e38fdffd225960fd067f587cb664a2e524068f402 +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.3.2.mod 519 BLAKE2B f1626fcad99c1d1b07a76b85ac5b200d706e6ab92d319cdafbab76b661be8900e20c5773c36c14f433e248a95cb7f0ed552f1fcce8fd9f6741b3e97fea31a6e0 SHA512 caa8d8e14079e675fa34ecd5ffcba42d4d3535b5e4377cd215417885ee6bd37669e3d820c7dce620ffdc72a2a435abeea5625c329ad67eae64e2f4174c44990e +DIST github.com%2Flibp2p%2Fgo-libp2p-pubsub-router%2F@v%2Fv0.3.2.zip 36897 BLAKE2B c3b5456de832de302f128eeed2f1795aa5560d9fc92916e37dfb00902d39485f240735f77e9c8ff7ae9eafaae037de2db765d0af5b934c5fddccc199b15ae1dc SHA512 c5b8eca0152bef988af190618fb706fdeea2a38831d9fe7e665738472bcf1763a8490b5dfa1c92937ffbf03660d79c5aa8403203165b34caa66ed7e40f2f4bb2 +DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.8.0.mod 565 BLAKE2B 34837dd6fd8f8fa707991e402da981e18a2066b7a3357fc88ae26c259ebfd895da3aa8188cb07494877813b0d4acaa2a6f863a09edb0e69dd391fda6ffd27f4a SHA512 5128b2eb282126094a479aba738edcc183e073f960e0471edcdc5b1cbbfa071a0c0eaf0c5fb9a37a04ac0b4d6e7d997cc55690904412c610acd33c7e652db7d3 +DIST github.com%2Flibp2p%2Fgo-libp2p-quic-transport%2F@v%2Fv0.8.0.zip 40784 BLAKE2B 6732dff86fb24387910b3a3ad33231fd66ee9b28375f597d3e071b606be7deff610b2a9608e921bd2175d3500b66b8178cc6685253c97c18484712e86fc24dcc SHA512 17a88ca84810390b0566e9720dacd42315e0e2b0c3b746db367f56e0dc9d53669d430ab6a9ca72c8f2b7da80ccc3c784338bdca0584d51c33d96ecdf7927466a DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.mod 244 BLAKE2B 93f07be64fbd2f3d86f0ab542985516f2c18fedb73466a34109a8326092a18aab7653eb03f4b72ee95e61f81abce19070e6dd627be0dabc3044911d4ae993386 SHA512 7b116edbc6057edada68014b6d58b9c41a5f5e0dc1ef5563c9a79d4ec8f8b29d9282fe557e14595b76137910c62843859a60333a2ebcf479627006026366700b -DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.0.1.zip 15433 BLAKE2B 9e46e3b405865dff020be2ebcdf95e588f9d68fd04261b0587a37f80531f193b3e738f0024d1535049ac8a58fcfb4d3f1807ed6216a12e412b29af56c8549076 SHA512 c9e2eaef93252eafc766462c26de87f44a9accb53a11a3f2483e006b47fdc74dd975c67e5201061bb0898b527799629126291acf5efd079eb1703c94240933bf DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.0.mod 242 BLAKE2B f694b2bd565193622abbe800a198b7769906e2f6a53fe332e202538103fc7a205a89313c23cb232c37d7080d38e62efdf3b9a74c03229268d4861e372222ef8d SHA512 0c8c31fe13bf7152d53990bacdf46c230c712e135eeb3ce3777e75f1aef99fb6d3e73d5dada78e22fb8b4839f18a68602a4c37f9e3ac4079d2cf91947bdf96f7 +DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.1.mod 242 BLAKE2B f0eb5a9083b07529cd1c2069a507594b2f020342809b4fb8c373aa2dc2dd69528f3bbd33cae6466cba23e02d80c90a64487074a63de73d506e289bf8a5103808 SHA512 35c08be09ae0295cc22b58123c2ee8b9ecd2e1012f6b3155c27c92d39abe7041f1a20cce9125f5287a8c19510851a1772e3f375dd66bbf19730ca987f7f22a86 DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.mod 251 BLAKE2B 3b75d291300c0bb6d8c40121c86a7ce21eaf49c42b53de49724295b64320d9c7861d7ee7729653d820b4f70f9a2f85d680ab1ca43b908396c208fc43d3c6e718 SHA512 55ffe156141d6edbce7148f494fef8feff3b18b1174d3be20ecd3f3752c5f1942b1bb95deb3b3ff511a20161815bc0231b4ff4fa072a2e05f7c9c051d6e7d994 DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.2.zip 18173 BLAKE2B 5afd79f3404401e94cb708dc5b74a4dd9fac58c30dbb96917e6b83d4113f9940d8a355b7e68e84ba7146156c6064171dbd3c3ac6664e27a81de998981a214312 SHA512 01926ebd76850069bc3824b7397626c367c021ad0ae12183cf98baa9cdf7f7292f0a75675f466fcf0d86a21108ab15665ab0677d7533bdcca63ed4f636aa17e3 +DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.mod 252 BLAKE2B 770d2887d4fc0e62391f6b3b0427aa4fea3455d578c49742695f92efaa2655a5747e1d62d9bae9a9463a8f4db68ac77b6781b0c1150c7bff9fd460eaa3cbe146 SHA512 6699586a5320227e9c4b7d456ba9eb06f3c3d42269bdad7a4149c52c8a1286c5c34f55a345dc5c245bfc0cc96a4599ff7b460166cd8a017766b56e372381a283 +DIST github.com%2Flibp2p%2Fgo-libp2p-record%2F@v%2Fv0.1.3.zip 17789 BLAKE2B 506d306a617c144b2bacb629e646240dbe2563f364f7ea53e9c04f1fdf02a8ba487b27575a780ce2731e4e62729b22c2da5ff26741e9d87c5521410c847ec6f7 SHA512 819e6ac4fd121b894386f197b2e8e36c45be894ef83a1424ac7c50f04675a84482dfd6d77fb9665fa4b4689fb4940ee1348ec8c628a6016284a39b6bf4b58540 DIST github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.mod 217 BLAKE2B b224be174ebd22ec13b2ed89c31b381c5eff6117554010164cb26c8a4820828886ca14074cbf82c2aae90d4ea998275f2f8bd5831539cef58dc6c169c93d1b26 SHA512 b6dfcbaea451556ab8899ba957bb0e08b24d8da0813b822f9f93b5361b6714bd4855c869244785aaacdd716e8aa98fd1778ea69684e39c64295ac3e798717f12 -DIST github.com%2Flibp2p%2Fgo-libp2p-routing%2F@v%2Fv0.0.1.zip 13540 BLAKE2B 1dba277f1f4a18d022ffd993c50e68489dd3a650fc3ba00d2fd4b0919a43a633bf663e36991dc5a657e7d47bec9ca1298b82d60cfa4e2c71f7ab6b97f0f24666 SHA512 800425da011abb2e1790a66437e887ad576c4e70adf4a63a935a66a200afbce6946ae20a57a8ca121a65b98942c34f21b7df2b56fb574e4bb0149582038d6a19 -DIST github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.0.2.mod 437 BLAKE2B e7e7fa1d8cee44d85c89af3753bbe5cc1c9e62535ddd9a5f91b7c7d519c02d82e2484bd72880d89289eb2d679ae2b73b464bd275e405d877ca253cf87077db51 SHA512 47e081ea421895cf436e0a109c3594e6eb226525eb65603365a5deae73915025c469c3e3b47d26d26a40430f398f3b9463ca3c9ca64bc5d58e8a987da724e3ec -DIST github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.0.2.zip 25723 BLAKE2B bb2d3ede58222a1ab1bf0bb9959c9cc87b5d80a0d7cc13d682c98e296285ff5bbfac8787717e0ca315fa704672a1d95e4257cdd3dfe8b2cc0415d7a1725f7c1b SHA512 cd801aae777d9088f779fbdf06eb243efcf70691448901630fa18b48e776043b5df5df347c4d29859fe5a844e8628e74daa712092e608b4b91ab0677658705c8 DIST github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.mod 314 BLAKE2B fa4656a2ef9317e9c391c6057b6f5f7444a383241086aca521c903c0f5b846b6f52bf9f749854ea8e0bc9c9c99afb52ce0dc8c4912a42da3a58b393c151228d2 SHA512 959c4738abe70411c8b16c492a80dbb996dfa4cbab9c6f1998f49b5c6735e2d93dad91f1e115d72c36fe8d13483a1de9701567f7bc3f9949917c17582da4fff5 DIST github.com%2Flibp2p%2Fgo-libp2p-routing-helpers%2F@v%2Fv0.2.3.zip 29366 BLAKE2B 3c560d2cd0aff7ea6e22011853d34cb3e94733119820e9396dd0e21cedd0069242d16efffaeef276c8266cf808a3f740c4aa421c4c7daab203e47c581cb5f2c6 SHA512 f606c4923d1fb30cc622adc953fdab033bd4dfba88a6774f3f0ac3d7950d419bffb42a549c5376f181388199f8fcfa860a1af86ab624b8e59d1d6eb1ec2d0a62 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.mod 487 BLAKE2B e8a0e4aecb34064a4fec1678cf6b370feb474a22a853d12e869082161d2458d1cc0225f1bf1608277a7f156609dad1869fb93dd2e9ae8030e242670221c99182 SHA512 a0ba4e5bb606b9d2b987f5596269451f112dc16a3c19d5d6482a5a63bdbb26641e24f01c8c3f6bf2745f7d6f25355f57894ed88942c5b59580638ae989e83855 -DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.1.zip 25942 BLAKE2B b83ff5fb212920d623833189068548bf245466426911b49e5d3cabfd4fb92715f65ffeaffcae6c1f553efa7bf62ffede3d2a5b1238e037ca59639b119d21ab1d SHA512 c64de3c094ac742bcf15378950ba0c97b0fd3f58c6cf9bc98546bbd8449967e5d4973042538a86952166b2d146e27ccd697b6d6bb36b8610b8b54e0bd7d5595d DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.mod 487 BLAKE2B e1cdf78b2636310da39e954ce2b7325a87587d016b4f101d8700006c678ac013e895884964bcec15b87a49362bf90d35e1e290ce55dc4c739bd397e2a9accc32 SHA512 aabcddc8cbfdd1d47c092ff40c24994425bde7e97607f8e3dcbeda6fea5034881c87e2a75f95bb4ee237bf2a558e6f7e5f9d3557478e6f2c67463d185f4896c6 -DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.0.3.zip 24380 BLAKE2B 7f6c8c86f480293f34adb5bc0b57ea75c7d1a71414ef161ec554dfb02d64e600461fcf232a8ae68d1659165e0f5bb39107af88d559a284a6eba76ff7426e13ff SHA512 ba4ee28b888069acfffe7b453c23cedae0ed7d512f7c9425204eb0de0f83dd4a5165f809d82eeb2c52c825370aec153037169c2584c16f70fc463767494c68b4 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.0.mod 426 BLAKE2B 97bc357d33310c922c45cf34affa487122e96f5e02c523597f00932839a6b5b6718b15f48ae8165222621548f4bafa985d44ebeaa9a189567f1f47071ad2abd3 SHA512 a02214ec5a3ae40b80303f0b57b5c388ffcb3b8752cc68d72cca116e603e482957e650d51effe8fd404f215c0afaa0244e0ec298ed0179b7c12d82d81cce34e6 -DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.1.1.mod 426 BLAKE2B 97bc357d33310c922c45cf34affa487122e96f5e02c523597f00932839a6b5b6718b15f48ae8165222621548f4bafa985d44ebeaa9a189567f1f47071ad2abd3 SHA512 a02214ec5a3ae40b80303f0b57b5c388ffcb3b8752cc68d72cca116e603e482957e650d51effe8fd404f215c0afaa0244e0ec298ed0179b7c12d82d81cce34e6 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.mod 370 BLAKE2B cbcd8cad65a7f3eb072687961391545a6b8c7355e112d856b84ff44dbd7a0d405a2dbeeaca642852ad09db20da2d55770d7389bb9b2ea46b7b3b9ebd8238e4b8 SHA512 15f15a5422b9277de92fbdefd6e181914a5b36f54e09e298d3f5b44f493862c1e15fd1737fb04a7fdb44adb9528b07300fbfb6f7285afa2558f83c37b06ff2cf DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.0.zip 26139 BLAKE2B 60cbf95157024bcbcff5e42153b7420fb8ce54cfada12343606a1e5343dae792a6e53a0e977fad9ac598a4bc0bc967b2123e13dfb087ae885d4796cb4d7c9adc SHA512 5a69b1dd512479fd387fa13aa3aab9e6c8284ac77711557b64d9d16c1d1ab6f7b7dd6cd3640bfeae94828af768e9f4f0bceb5f57b6c101c15100704390834060 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.mod 370 BLAKE2B 7c072bc374114aeb922d62e38c05267bfeb4a5532807dba3c71e10d05e61fb7aba9bfdc906abcbd5834b8d01c6c72289e15be0ec897e8c2d7288519ba01f609b SHA512 f0e02ed9a9ec881dde6f2495ad5e66aba3b3b6bb9864d609db508bbb31be6d5f6224df415b342b6f4fe6256757c25a54a076a561c8afb3aa60fc90960173f127 @@ -833,17 +746,16 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.1.zip 26998 BLAKE2B 174dc DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.mod 371 BLAKE2B 69e5e96ee1cf67df912fb7486f5d14904d58e7b16f2488a2f5de66540b22e96673d295f6836e0d1e06ff21b7dfb52f87a2243601c450bc7ccdcd5dd35cc2168b SHA512 13cf781c80b34ee7c32ff14ef6f9c3935501a7c1869a46af91e36ab6414fa457a01ac380ea56e9d0e9340f141bc8a9d80a7fb4921dc6a5b8a6baa280f40aad29 DIST github.com%2Flibp2p%2Fgo-libp2p-secio%2F@v%2Fv0.2.2.zip 28990 BLAKE2B 30b1ed881329a793e72eee3d077fe9f442cda5e64e7176cc3d6d69338c119b9b72b30fee3af23c80ba990fc3f01130310d37a88b656ce221c6f0ae297c8ae409 SHA512 a87fb7997c7fc30e3727b47f84bda8525a07017f450a55f408e8459fd005affeced2063ae7167feace9903ea4435fdcbae051e187695ffd9390269cb6c850dbd DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.mod 1244 BLAKE2B 6fa55c21570d5b18eb159eac782cb45d081ad95279ff1af4514fc63b177a198690b76ad1395b2ac4a0b0c0a92ffb0b82db1a3194cb4fe89ae70d58f7a7f73230 SHA512 4c3b9e06ffde9c18e68673936848a6804027b5dd07d6cd3ecf6186333c585173cf3fa9cd6be003a8915162f6d3f6cc41e0e9c63ddc7ae32be37db3bb088a7a12 -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.1.zip 52768 BLAKE2B 0e7cf4ebf288069cf02f303823e1944e38cb176e75be5d01387af7cb8e2355c7368616850eeaa45d3d1ba34e2c2455f78f9ce4301a505dfe5c28ce73772c5c2f SHA512 3b3269b679d9d61cb7c53964e9a2d77ef015c884e37ce6b99739bf052503529b5e38e98966c7b2692e18b05f2ee8acce2c013087731f895421f0976fe8bb8ab0 DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.mod 1144 BLAKE2B 8a18cdbd4406a6b8eb1ddfbdf619cd41b0163c2a96a28a880d923cdf1833e8dba575182cd74de9e5aebadc68acb47867a16ab774036a92b117ac539644d27dd8 SHA512 62ba752120f55efaf65883f816a5231ee53697c55b71b7195e2a640521a47c42395cb8986a7b5d602b2f2386d0f92a116a45bb1082de00a621a2499f8145859a -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.6.zip 52659 BLAKE2B c80e3c812353187d6043d80f7ef0d38d2ace1eccbc84ba8130ae40de064b4db5b4cef4f9b8eeb466198233a469c58eddf29278ee906ca98013034f9833ae044d SHA512 a5de53a8256866b0198ca943bf045d726e48804340ac9999adf5854b0c54bbeaa743d3199e3f5c78a25359c714e3a8c9ccf46a1312713b46a27247004d6475ef -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.7.mod 1144 BLAKE2B 8a18cdbd4406a6b8eb1ddfbdf619cd41b0163c2a96a28a880d923cdf1833e8dba575182cd74de9e5aebadc68acb47867a16ab774036a92b117ac539644d27dd8 SHA512 62ba752120f55efaf65883f816a5231ee53697c55b71b7195e2a640521a47c42395cb8986a7b5d602b2f2386d0f92a116a45bb1082de00a621a2499f8145859a -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.0.7.zip 52660 BLAKE2B a24449204f64ea81a12273f92f484e87c692edcede881fd971d4ac204427779467546e03c25fb0cc9053ccb3fb576c46457f10ec66288b17a16d01003cc3a107 SHA512 50f773e01c03efcda112b335fa361b8fc94522e6c26d6453616590f05da6ba6eea4489b506a19dde5131e0e571df067dbfc0061f8f3c0689b475c4088cb089fa DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.0.mod 881 BLAKE2B e4716903c49e7cf131d1f31da0a1c33e29938d0606c2bc3a082f5069473bc67e870dc8f977817720b775502f9132be06d5e94c291839b675086f7debda578c73 SHA512 050d842bd3e7d2a9fbfc89d92d629695b17d066c11882b3a173341010b1291b66e751e8e56c73c549ef5c283579d7255751f5dc8532dfcdf885276d2337a6eb4 -DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.1.1.mod 881 BLAKE2B b0b289692af995e697f64c329611cace1129de4dad6071e6e3b416a40a84ce7a44f123e35e5ed6a6b64a5bfda2b857adf0310d1f1fa50156cf966a86c720b80c SHA512 702d5e9e5572d60f0c0c2296a045dc0b550cf7eefe39f96abe8a42114772b80fa4075acc50547bfba794252b91e24e44f587948aa9e49cb04f635e4c94835e1b DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.mod 900 BLAKE2B 3a8a011e06d7788339fdbc400b288e42c420a83acc0e9735978d98d6e070555828c440853e4393ec7821746d97a812439d6b0cb9b98213979497851a3e5bafc2 SHA512 447972b33579fe67a56a3427c0fcb71c43bef49b1b8ce7806cbe9a5a595f1d86c43a25279473b01be76f87825e20724df8b31b2a9a3b54a4c5c436c3a4cfb12d DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.2.zip 56242 BLAKE2B c01e67ca5d30bd738883848bc4ea19119b5fcf7a9d2cc62a79f0f288c63352924caccd597a27a552ff833f753c21f195ed4ac4c648a9d7652d78d64755f05f4c SHA512 7c96a63c0fdf732025af2d238f8b3f3f71a98a490a6ccce13df05f9e54e18ef89d69597a30c6702c415624a871b6a04d9581c84c280009111da6e3e001c68bda DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.mod 900 BLAKE2B 15de1e090ffed52a6ef76337e2ea2b7b0c3cb595edbef9719225709dca69bec19eb4938e56edc0a25a2ac05ffd229be56da7aede10201015f215a0f113676db7 SHA512 ec51d90df11e6f9355d6e1712ccde418fede5d972dc6cb0af649959791cce444829f97917d91145fbfdafc5cf6ea231e3026b723ae62fa71a9d4d9c2f53557ef DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.3.zip 61105 BLAKE2B 566b232c1b0c8f5b7abe73b467a7f3dd246358d68c22f141418e747bea029e0e718b1c0ad55b1431a586dd7a157612613f94dc2bbf6327c583db0450380f458a SHA512 eaca5a463fa3aeb6d9f7fc92da806f70bd29e2a4c31a58a58d396e0ae580b0cabcf48adadd505ec3f9afbb3d4103e106825df31709d46d5223ce4097eaa6db61 +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.4.mod 962 BLAKE2B 0aef9dfbd860fa979887c421a0496188b27b8b593430dc6f0da166c7895589d2984fbb024cb49c177cf87ce19fa025db4ce92f49ec67315b7e1a9f6a064f0ed7 SHA512 517f2022648d3b444ece11cb907e04df315133235018d6a01a5edf88df62283c23c2a46ef3bc65e6a25e8627a291d4b0992c3f02ae4873da3b0ba2c6e3eaf11b +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.4.zip 63224 BLAKE2B 78c1801c724abcf9c9ca4b58c4f13a5d39d5fd157f4c6193a26969083dd0b24b8f7c4b398ea98a4a84cdabd8aadb99c11aad730920d411844f4c90b00497ec4a SHA512 8f91995a2c04254d2db3066f30967877a06ea47ccf72d49a775ac83390b515a11a5967e3f36af9ea56ced060ef6c663dfab0e439179c1cace703feba990cf23a +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.mod 852 BLAKE2B 3efceeffe895220558a158bc3c99b8f5cb86487f527ec4cd64aebd02c21da849b71cc41bcc073d1957b7a16c6cead567825d11fa9e201986748af31aed3e0f4b SHA512 5621eab118bf6b6ea0fa482aae718e08746dcaae0f6f42de5e89fee2b993e93a9069a1336fd290b44dc5ceda4a78058909c8351e33c732135e4c9df390f7659b +DIST github.com%2Flibp2p%2Fgo-libp2p-swarm%2F@v%2Fv0.2.8.zip 62829 BLAKE2B 7729e879274fd7fcd37311a655bd28625b79151d18d2a67fd7f9c316b563f2ea9f4dd3550928118568c29f28e410b0aecd9e76c35a380bd07d45ce2d9a70a02b SHA512 ed93c1e6e4d03e35afe71ca5f239056c5c7435b566af8bdf2e76991d05ad685a134ae1bea060fcfeb41a7a950b3b996267e2d19b23c38092357fcdff2ec3d801 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.1.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.2.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.0.3.mod 151 BLAKE2B ab94a6e4dc5b4e89772ca808a493ff31fba113ad84ab3cca1da6e4218296b47fc995ed9404599e1da395f6f70b2ca7d741cac44f3d483c8b623424cb687c42e9 SHA512 a9181c88fcf8cade820596ce2891e44db922987557e5fb7adcf083d85d9901f5f28dcef8d02e533bfb83eefdcaac892eeffada67727c623306edf5b0a671baae @@ -852,27 +764,23 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.mod 151 BLAKE2B 773a1 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.0.zip 25231 BLAKE2B a35a9f31994fc4869eb240a248d30b3364df1891eb43138f3ca3d0cb06afa95c25eead170225c06f013f1edcb248f1edc1ab6f7f72e3841745368dd6bcf53978 SHA512 dc618ee98dbecc026237c48c69573332a6ea998ceaca678a1eaa6a699a86acd85b9b8530abbb4689827990f1305e5f9ac605126ac95c79d11968e09bb5d2ee09 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.mod 151 BLAKE2B 773a14b6dbe2e983afc8df2678deb5ab6ee5a63a90723b928fe4456122715f3261f0f4dfc6ed68af489b0871c8c15ac6a9acb3a6ff83d4a4388c2b3deaec5523 SHA512 0a5c1ff553dd96d100afd3ffb15a0a62308f37dd8e37c738b8f188b8f98a755f9e3efab5220eb2415255143dc1fb768ebb044c65e3fbe6929b5002b6bd38ff71 DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.1.1.zip 25230 BLAKE2B 237e7e1c7f50995d21de69f019f2e13880221d9bcc175a37f27aab7fd028c641aa51e334e0e898e9bfa586437086c4657f02df30407af0b9b96584ea1a21e389 SHA512 dfe18f973e90787bd7b0e00585a373c5a1f66da6bea7c7bf05fd4f563d3bba822aa03a465c4f3c15507fd065291a3570341604d6783c8d703923623d96d8d606 -DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.0.2.mod 616 BLAKE2B bc8df3f87f0fe8be029d58a1ae64cfc8eb72c11547b2bd3d341fd885ded23e612563d9a58eda8029119b03228b6bca082edf62e52ec26e403c167eb8d3b49a3c SHA512 20da747d636160a53376f7c16b92792b103cee412ca3740966586b45c7e7827956bb71510137bc0a767db9d9c0bd1654e5ac55d541df937b5608674e0a296f7f -DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.0.2.zip 22471 BLAKE2B b3a6aa7ac8a67796d8e67b524cd0ead32c494cd7ddaf3e32f1ef44d432b635eb1319a64a963e16d6a270dbebb5caa71bc3f609f0b31c1cf1eb8e28b32993d578 SHA512 fdde348e0000b847ba4778a5e068d3a3f64240fbf47a5354958ae0ee3ec88fd7135e7b19f9b6781c05359a687675166f922332a104229b2adfd59aaee1a0c7e5 +DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.2.0.mod 183 BLAKE2B 7a63c681412c6544f8abf6bc61b8bfd8bbed86731c3694ca9edaa92a08f85a97a9779d10421211e93b3bfa3e316073cdffe78cd8f59840c3460b4711d12dbbfc SHA512 2b90a6dfdb96aaa9d57a5378ab8b81f0ca18ae65ff15f2ee272ce32d0eddfca879330f9f51fbcc4b4e83b09ba8929ee62a76533064e1f442594b5f2a296df744 +DIST github.com%2Flibp2p%2Fgo-libp2p-testing%2F@v%2Fv0.2.0.zip 29000 BLAKE2B 541c5979f58e3d703e825837a3ebd71be740439ca7b4ede78a2b6aba8ff957b70efa14a0e115cea79f073c0d35bc374cc79e47bca724b8b464b397bc978e15c8 SHA512 bb0ab70900844dfe01d4b79bce4231e155769dbb736f13f60854e91cd32c81e19ff54a86dd76ba0f826c3489b11ee342a285b6060d1831e00f8e122b63240684 DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.mod 217 BLAKE2B 0df158699398894e1432914bf4772be920df3e394ec57671b83ca78ec5849a74f445633c3497f29b219dedf9a858968997c5ba7462d8fbadb7d7df86f325bcda SHA512 2f1110e3b6a5f54251745ec3dc96027820ca56dead02a971bb37e299dfae62a3f5d7b7ed3dfd92341db9e0e41e9108f284ccd06c0b88fae8c41152b337e27eb2 DIST github.com%2Flibp2p%2Fgo-libp2p-tls%2F@v%2Fv0.1.3.zip 19482 BLAKE2B 5d219d71c67681933566d50688deaacd32ce21da86c5a8737f1c3fb0ef148e01f21c651a52b043f22760fe9bc9b38c50873327f0d1203325da725e4d78437540 SHA512 52fd0b2b9898e13cd27ce7addcba7dce1251957c4a22e55170a85dc164acfd296d6632732f0d493dc98014dd10f6a22bea9f58cff5398a553586156f063ce6fc DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.1.mod 257 BLAKE2B 2dd3f1957f0e53f00825e340c929df2846173c4398590487acb3f30981ab9cec0be500bc16fa359b4a88c152926abf894e74409e33d24f5779ff57b9a3fca290 SHA512 e6539b92fdd2d64aa5904edd0538a36793c6a8e311e934dbb6f6c88e1f2d36c0a3a2524e1722647df6c5670df02bd3bf39d56749dd3507771dd1d3e841b9eed4 DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.mod 296 BLAKE2B ee23b921f17010c5ff0bc0f31fe41e3e92b74b02798361675f6c5ab1f31987c7eb18f2b9565f51b0733144adea240981e91dce530d176649fc5bca489aadf160 SHA512 b034af46139751d9a5f4518bc8b9af23fe351b33354433508cf7ab36bade313a5b23a9e5a61cdcff6c5418676dd21a6967dcec4ce8507fb7eccdddd64e7cbedd -DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.4.zip 17337 BLAKE2B cdd73f8406271d990695a188aa7a9efbfb4afea27e2f7a27814efc3ba8048b411a6ccdfa6cc4cd7d23b1b8c16760d7d865345feea48e15b640b2f2df63ecb172 SHA512 841a65a9de084c0ac79aac54fb1b46f7e0ccbee6b80049edf2e606c61915b99e7cdc509dbf5378411d2aa849b9d3b29f4db58795d662d005c0de0de907f3f2d7 DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.mod 296 BLAKE2B ee23b921f17010c5ff0bc0f31fe41e3e92b74b02798361675f6c5ab1f31987c7eb18f2b9565f51b0733144adea240981e91dce530d176649fc5bca489aadf160 SHA512 b034af46139751d9a5f4518bc8b9af23fe351b33354433508cf7ab36bade313a5b23a9e5a61cdcff6c5418676dd21a6967dcec4ce8507fb7eccdddd64e7cbedd -DIST github.com%2Flibp2p%2Fgo-libp2p-transport%2F@v%2Fv0.0.5.zip 16217 BLAKE2B faa1a7e1302527f3aac78b06c767f3f7a88afee0d62849cabb0307666f28747c84b5961731033360dcffb232c4b9071d302753dbd05be9f0e69acf0cc564e96d SHA512 2e13445b88f727695490854f6774547eb0068cf70908df97ebf84888a43789df638d23d6f0efad03db56c935576af13fb17de09ac8a75602dcdaec8bac51ff8a DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.mod 745 BLAKE2B f9990f603aeebb5f824d9184fed0a3ed31d4cee46b99c04fc5a71c8a781ac7669138aa82e8e3f13d74262520dd67012bbc5686da5b40bce31e4a6c8f4fb317d2 SHA512 f0338230268a337327b5f203f6a81eb5721b512f01d12d0e41501a19ced7e4bef0aa65ecf2f902d12430fcc9e262e8f747ce34c7eba2af5d18e7235a4c42e00f -DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.1.zip 20079 BLAKE2B e6ddf2c8d6ab65b916924219cfd71fa635c7792ebbe2812d2512ad46c9300c1385058096e11b0be3cf181aa4f24a521d62e95e97389e6d37d2d92ce368b85a8a SHA512 79a14fdf2ba6db3c11ee171558fea63b88645adbc5a0fb9d613e81f30a019a4553c4eefe104451c15b3547dea42a825b07000f42922db55c31cf8b2b75731d23 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.mod 675 BLAKE2B d77b929ecc2a2c86b84d3e6372c2378a5504e0ffcb7feb8f4ccd7678a5c733a1521d6ad93bf293f30c0dbabf84589113e942a960283c1640d9e7cf9a560a015e SHA512 e979a9e6b7d29207dbd9a08837dfbdd5cad8b254df07827a8bbe762ce67228467ba3d94438b92857c567d17a618bf6ba53691b62d1f998f59efc00ad98a5de36 -DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.0.4.zip 18378 BLAKE2B 64432f7da5f55843a15850268937001b19f257770470f9478b8871b028891c6a6c9625545904581c6f2519bd1e15a30180b56a22d5b0e694c978645cc627bea2 SHA512 b3e7ecd7a6df18ee3ad8b68b1ea95eacb2ec1c4ca487846b37aafd53f070b7c42523114a8e60b846f5e2ef60b6ddd9a70a94c52b92a61e1ce8ff25cb7ba0a55b DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.mod 453 BLAKE2B 23bdf0304e8905575c4b2abbf64d7f8539d08eca6d800e41d92d621601b1c3aaac8a47a760b62bfd68dac464b4012b58e7523438a683afffc3ebf31c45ac4d96 SHA512 378d335f58f7062f8eb1fad1ddd5c5d78a5015249d7af42e5c15f994999fe751a68dc35081073237460b03980a2d45db5ddc2520f426825c036a12838b44238a DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.1.1.zip 17039 BLAKE2B 47084883584df9d3e55d0cdc50f4e50c42e2571d26a5c8882689f1dd7ce7dc7290d47976430f8806ef6e7254eafe63a45d2555ca03f75132a78d312bd32aef8d SHA512 270ae270056aedd92de83d7849acdce682fd7832d9bdbf31064c8a0e5c655a3bf51faf86c69e638ac4f971c33a946301221a363034dfb6b47e186cdf1a5a74e2 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.mod 504 BLAKE2B eb43b7b81611570a93e726d2ee990aaffe48c7bdff2ae982df1a71ed5d8ca96e96934b2ec2c564572cb78412dc75c81c1d9094e3213a1840325d4b95896c5a67 SHA512 71e2cae7c074ee3f97f295f4c100bd072dbfaf737900d3d6a62cd14685f6fab8c202d94f5178b5f29396410aa26d646f89607e77f8cac36e373ddd83687a7409 DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.2.0.zip 24230 BLAKE2B cae8a56586d9fd995784195fbdb989938d6101b3c5ed71bf97c5d496d6226a7d36f97a3150835ea8ce3dc13685de2d56c11f03af4a92fadb71b106981ae60d84 SHA512 fe47cd250c9de4d3bd819d3e5bc069a7d74f379813df3a347f4de825402f68cfa5827679c6fb91c68642f34b99669bccd7815fe0b70b14334b7a9d0c20372e2e +DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.mod 407 BLAKE2B 467c0eca96bc9d1e010d2ee538431331670e976c798d525032ff5af6ba46f84af2bbb7bf27edfbe1d029df8d03272d1114d7802901a76bf50ae09e8048788d75 SHA512 679f607f7a3e9599993b7b43b915eca05b0de30d2f663d0c96f56825ddd6a4c7e61835be15a88ec0c0ecdc7dbf8fc9caad8a828e496da5e3ce5f296e44173b2f +DIST github.com%2Flibp2p%2Fgo-libp2p-transport-upgrader%2F@v%2Fv0.3.0.zip 24016 BLAKE2B 68836f529925c45e1c1e7fff504eaa2b113bb877dfd68cd71d1e9bbac65189f4756225ba0cab244ff24f6db9ce8a3815c40a0a101bfae2dc5977cf686c88b2d2 SHA512 c8d7295a9ca5da456ff36b121dc33e8fcb7ac3fc04b5c19d42c54c8b389bd41eab2c84b37a6994121f67419d3109e26d29129ef468bc86bc1af26b8ecfb4e682 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.mod 140 BLAKE2B 5398a8b76084c6d003bd938399937663408db2fd8af0493e84ae1948261cad191dcec88ef3a9707dd93a6997e4a6082dddd772aff472020456b25dba06d26096 SHA512 6752dee08f85436ee1412ad61d9defeafc0fe0d52272defca25cda2f01dfa4befa39b2a1e3a2aa5e872ca7c3e737e0ce008e2cf282ba6dbb4da3b5c175dc7dc0 -DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.2.zip 4845 BLAKE2B a2a61388426df3fd884b6d6cab44b2a70dcf3954a55064767e629bbd82fdb00a92fe3b7e8656082c1ca4d91fbb6969722703aadceb17acc37d02758af8964acb SHA512 afb24e90c5bec9c8670baa87701455cfba0a9f908b6b976c20deb7174e35e0707bbdf7d2580b1002e648f81a7bb32ee26ec4e43036cbe54b68a059c1c2f40db1 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.mod 140 BLAKE2B 6031119e3ea962fc61085a0fb6cdeae42dc242fb2432b1eba046dea82d2433e3f7c9ff3edb1d513a3dbd8d2db52906d54d6c82fcc77be745ac383b5ea9d08914 SHA512 6224688e130bb684e33b6b46ab3afa6fb0825f11b27862817cb66a88f69e88b6fc880ea176d67c98a1035d4a4d47f5ccfdedeccef384cee2e8d1f0b478254f42 -DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.1.3.zip 4909 BLAKE2B b4bab61349f52d17468581aa2ece67f984e175728700a1b8d5de9019fa5e4ab416231175e732709851f151d4636d28a6587d19bc03f4e63e7e9d861d464e0c2a SHA512 eff2ba50abfa72db167621c2bdb16d9db01022c9608471150be0dfc33942706434b0b546d1b1854c0a3e45a242aa62ca38452967776d06ea4afdbbdbc8de5ada DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.0.mod 174 BLAKE2B 0cd4b51270dbf49a3afa632e9f6c3d544bcbaebbb38115c32c800ea006bf7cfa1d129a181a369bb8110ca937c54576ee26c69afab967ef123810c267662d60ab SHA512 2610d7e8f568fb7f19be75590386651d01df7f3bd333b9c10b9ae9e6d938c149a8b72f6e09b665ed45dcb29aeb3a044f0a5aa0b117019aed8308906ff568232b DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.mod 174 BLAKE2B 372c582ae5832b0608c798e2bd4c4042149e72f29b0cf08a36f75bf53aa18e2e7ab6a7d6d046f6ccb85782b436c647a4c1cb41bf7e7c8009ac7ed8d99f9c3026 SHA512 8dba2e169ec0e1fa40d7150b809a297e93d8925026d7a491dc1a4f8e65d5947b9c8fc7885c74cc90bb7339a17c76cee003062fe4d6a7a88150ca220d975aad67 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.1.zip 8152 BLAKE2B fe730757278c1c8ece4d91f09669be6b0306d6565a7d5a1acee80408787d873f7c68a31bca273c65293213fb450d1f8e004e6bdd9aaba2225460f25358b69b17 SHA512 8dbf7f0787cab80afe61ffe31c80a3b40d890d228b1549e5cbd60fe6b20c7c9108c0f3ce5a29a3b335ccf7e13e42ff7d5584757ba9e3e111fd81012a22b3e832 @@ -882,18 +790,16 @@ DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.mod 183 BLAKE2B c07a5bd DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.5.zip 13125 BLAKE2B 3ad77c05bf5f9b26082f158b21587cb1914080c21195e2b59826d20e3f1da7738594f379670cfaba90a77902709b722e190190b83b5c3a532ff11244bbff1929 SHA512 3d2dd9640d79e35a4d26ecd67d46c63a7307f192fedec2bb4c025ec1b3fff36591ceb120cc99cd84bd45edaa552a19af9ddf2af143d99a3d3cf25c509804bd62 DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.mod 183 BLAKE2B 590f4c597dccc9b39415a1dbf406da5502c1259876f2a3e1c99fc441cb4b4e7682a1ed9aa0b45b41d60a30c4516906183bf9308df781b533e9fd237c31c8a4e3 SHA512 3ae06c29160dfd29083d9184e5c50bfcd03a1344be58b70282e2e2ca2b68cb5c3ecc899f29bcaffa29f7379d14a689e461141b958267ec2ce9c1890e1f35277c DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.7.zip 13045 BLAKE2B f14d683edc84aca00ed9a58c5a0f4689d305540676ec5f96d274730318e1971a93c804a1ceeb3fe7ae89d33dfad97950facbad5f166f66a8414df6885447d74d SHA512 7dda4bab620d34b22dd20158b114c263123f6241c2b2a861a8961858eeee33f327c8e5b066be99d5f83d82ef48c2df8bd30b32e21b9ed2a2f911d2adc6049261 +DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.mod 183 BLAKE2B e2687fe3c79950f3e064050f9eb521e541dcbbcaaf0109e9f744340c8f7cff787a8c859193e8583df4ca6cfa40ae1641cf43e4a41d59c4aec17bb9d620bdafd3 SHA512 aa1eedc8231c4cebe2c8ba2a78415120a256ef581f90326fd4985f089c32c8118ab7df81d551cd67d9febad7d7f374aee7f95382325c9e9e6b78bb1346d9f05b +DIST github.com%2Flibp2p%2Fgo-libp2p-yamux%2F@v%2Fv0.2.8.zip 13079 BLAKE2B fe1db1cc0ccc208a22eb5ed0d41e5612383e6fd8abecc836f768188e8e6981648fd895fd29af286df99ef7bdec9c01797ad2a1c4c972365500c026d9f2f333ac SHA512 e00e3c740ea3dec26f3a1ba76a44b467fb8b830c6fb6b8ab80f5fa4673ee60fc432de52a6c217d548b5a3e7ad78522ec8070a48beb5785474e7e4b4059000284 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.mod 148 BLAKE2B e983ade37bde0de5f97afe5e6046e1c938f0c356bec4636528b4b73f5b3d46b857accae67d3d2f6b62a24e0e43f88d55e9433969c184d131d1abb0906a8d0b21 SHA512 f9bd4f5114967c8dafbfadc921afa519383c456651a15f8cebe9a66518a12e5cd32286b219bc1fcb32af497c2ad86b761a074679df92e6f3ed758f088673e535 -DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.1.zip 6512 BLAKE2B c90451481fa0e177186dba352d15ef9073956c9e85229a126769574d3932bd4fa6b5796ba0e84810bc7bebdc617900339b319727b31d9696ef95801373b37dfb SHA512 093d02fa01646ce920bb58114e0a93109dad1d06fb6a731b169f697df58818cb0e6fa5bfacab261afcfa4926bd337debd5687c03780c697bc3833111d1790297 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.mod 148 BLAKE2B e983ade37bde0de5f97afe5e6046e1c938f0c356bec4636528b4b73f5b3d46b857accae67d3d2f6b62a24e0e43f88d55e9433969c184d131d1abb0906a8d0b21 SHA512 f9bd4f5114967c8dafbfadc921afa519383c456651a15f8cebe9a66518a12e5cd32286b219bc1fcb32af497c2ad86b761a074679df92e6f3ed758f088673e535 -DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.4.zip 7412 BLAKE2B 24285882865379187bf64442d4bcd88f46a0f045ee4b403d00edebd29d917f74d7e0fcabcde58daf6384806841af3c9da5cd12dced23d9035bbec406614491ae SHA512 5d5d2bd56154e275390a47508673209d4bb630a66598f3a21207fb2dd7aeff73774a87457c434916a71fbcc529fd0f45c27f24dc1d0f1b57d63354c18800cd03 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.mod 94 BLAKE2B 7b317e20da581e6a50453b0f1b90e655e852870e31b44da19ed5d3c37c222b7cb5f778f7ab48ee914a39fdf1155335ee6ce07232ffb8a2fbc5af914a66fb8278 SHA512 58625487ae8ff7870e9760b960b12dd89f690e2c3534538e093577d9658bb9e5aa5f1da72c2ecc75599a3391f3205eca514e61fca453dfb0f2932ccebee9e8b5 DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.0.5.zip 7259 BLAKE2B a002d5af744997f316cf2c587aafd7c304c293b130359621d14f378f4e577477dc4440e302f31aeb7f0bfac772f0cee38fcdd334e8e98bb42ba089c5876e7b10 SHA512 25bd5967e426057f292a3992fc95647b9e64bc106d1e40958e75318b896e7206de2b6d07cc731bd3b7c423f2e469edbeb326463776fe8b59d737f89422d7f19e +DIST github.com%2Flibp2p%2Fgo-maddr-filter%2F@v%2Fv0.1.0.mod 103 BLAKE2B 254384a1dc888541cd55d0a85490f690553504beb3f9269dfb2e1a75a8dc04793f5f4eca82fce1ee3ef04e0566c865da859fd7f1ae41ca43698fc599a6bccb9b SHA512 54666f876fbfddde4779319fd3866298e298f91340f5db379878fc3d25057ea9301483a76c124894a4e81b6f599d25e19bbddf1dc59be46600074d40ec959a3d DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.mod 161 BLAKE2B f7751f1af8249084803a1937c3beab2f5f39f62d653a66ff35758cb2b686045ef36b1d647aae1f7e4f65cc5409e27715f33eb7a76ffe7b4fb05dd2832bff03d3 SHA512 6939c895fb3cebc2476e2502f2e4de511d2b8a766dd914078467d59acace548f3d97eb3679406c326e13bbcee307226e0bde27dca6c82b2ed5953e836db8d56d -DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.1.zip 17730 BLAKE2B c7ac505121a9b727423ef372580d8731ded8f2abc1919e6df138acdfa247f7d7aaf640665ffdfd03cdee4dd482df6ec924fd913454dbf73c8fcb42d2af367126 SHA512 f449776e14a8e1b5eabc1b6ddac4f30b1355ceddaed874b8067f00f1bd0d3aaa75f3f63ebc057da12889b1873bf55fb555f7cd4beba037da536840d4d503ba65 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.mod 161 BLAKE2B f7751f1af8249084803a1937c3beab2f5f39f62d653a66ff35758cb2b686045ef36b1d647aae1f7e4f65cc5409e27715f33eb7a76ffe7b4fb05dd2832bff03d3 SHA512 6939c895fb3cebc2476e2502f2e4de511d2b8a766dd914078467d59acace548f3d97eb3679406c326e13bbcee307226e0bde27dca6c82b2ed5953e836db8d56d -DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.3.zip 17490 BLAKE2B 745ff9451fe93f1a6ecd5b11d56c2e7aafc499d94c31e218ed4a9899ee2bb76cfb0c2337e65400b6e85a9b2cf502bc2d4ba41454bb3b8d0850ff25523f8daa1b SHA512 54f7c1bdd668577bc09f6b555eb5e2794dbe6155d190cfab39d77e9d25e86ad67a36fe2903966bcb6d231923647fa5ed7d7277f4530c88faee19c845703f8761 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.mod 161 BLAKE2B f7751f1af8249084803a1937c3beab2f5f39f62d653a66ff35758cb2b686045ef36b1d647aae1f7e4f65cc5409e27715f33eb7a76ffe7b4fb05dd2832bff03d3 SHA512 6939c895fb3cebc2476e2502f2e4de511d2b8a766dd914078467d59acace548f3d97eb3679406c326e13bbcee307226e0bde27dca6c82b2ed5953e836db8d56d -DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.0.4.zip 18589 BLAKE2B 69cf518603267f7ef931c3048d0771b413aeb59728630187a78dec8dcfac9ebf0a6f0d6e1c9b237206cac720b84160f940599bcf666e9a3455594dc9e5e16903 SHA512 55ffe2c164f69973cd3efdf4a8523e739d84c0db1c3fb7e30c018b33dd9f1cfa58b914dae39ac4fa07e5a5dee50c43e8ac189a102bab53350398a65ea8f11dd4 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.mod 160 BLAKE2B 2e9ba9e10feaca3e99686a5d5c7769cc93677c92f2928f81fb31960fdb8ae130d0d16601feb74a651a94d16f38c6bdb86e6ba9ffa40439457fb5b3d5523f4ff1 SHA512 6d03110b53ba5d919cb9aace04e22c81b7922c04bebfee181ca415f5610384286b20fc91776878819be83ec59487fc2649800992d32f581c01952cc36a58cad9 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.0.zip 20883 BLAKE2B 1ef6ee810f6b711a26a80469add691ce78bb6ff3f9e8f8f30513e69920cfcb20782419c446a831fba6d445c6059c6030fcbdbb04187d5b2fd5cc97854b0a5569 SHA512 8d977f88e3c6a18be05d311c5c16a177dddb6df5d6be8d6ba6d74fb125c56f17541d04e14fa5340dabbc14de829c7986b3dff1ce64600e3d9cca6cdbc2dc4d60 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.mod 128 BLAKE2B 36d898d9ba6be5c5113274f144fc4f143e803fef4b9554b4f7616a59ca191e1f3c602645270f3ffa111dcad85d6f940f66511d3158a3f10bc6e07542ad69be2e SHA512 702de11d210f7e75faf55013d0f018f48ad0baea4107c6bc802aab36df1b28990fbc232885d9f06d467dc5d1a797738bf61bf6a37446f26d54340b1bf60b2918 @@ -901,12 +807,12 @@ DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.1.zip 18611 BLAKE2B f5c75d185f6b DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.mod 128 BLAKE2B 36d898d9ba6be5c5113274f144fc4f143e803fef4b9554b4f7616a59ca191e1f3c602645270f3ffa111dcad85d6f940f66511d3158a3f10bc6e07542ad69be2e SHA512 702de11d210f7e75faf55013d0f018f48ad0baea4107c6bc802aab36df1b28990fbc232885d9f06d467dc5d1a797738bf61bf6a37446f26d54340b1bf60b2918 DIST github.com%2Flibp2p%2Fgo-mplex%2F@v%2Fv0.1.2.zip 18672 BLAKE2B d7804977de183efc7374e3751c0550c558881f8a5a8568f5535c251897948a2443692c809383f2d5ab5134340dd1ca055b8d7a7dc399b432f1f2181473453207 SHA512 d1e7ccd751d2156644c2163738b5fa1b7117319cada40a09b838c3145f3e79f34ca1013d8a98ebfcc23c118ecc2a706eb3bd9ce3451fe5ccd0d68d0e2ce606f5 DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.mod 83 BLAKE2B 010d91f15d52d855f0e69e4158c96616ef33839f92db1eceda945bc992912a1b8612d16465dfe248b5598617dec1ce0f94c01133345f757d13bd4b3b6fba7778 SHA512 9413b94d559014eb1e626efba47768212e29bdb9289037ee3b5fcb4cfcc7bfd59948aaf24e0653015a116f7c19421563dba1bbc52dbed4d3b3f2131f70f877fa -DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.1.zip 16296 BLAKE2B 942683dd85c17cb12854385e9dda375c3d6f04c650f95a9c32c48b2b4d8e4ecd2b2ea0727ffbe36468b8944422cc0db641e5f24efff476558ef1dffca23ecb78 SHA512 2cc94ae41dbf8d378fd4102a9181e21f8c677bd3d0a9a313f3cd6b0347ae31987d0342774b3600be5935563b3b2cf48726e69c0c511a877f00d8917de03f947e DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.mod 83 BLAKE2B 010d91f15d52d855f0e69e4158c96616ef33839f92db1eceda945bc992912a1b8612d16465dfe248b5598617dec1ce0f94c01133345f757d13bd4b3b6fba7778 SHA512 9413b94d559014eb1e626efba47768212e29bdb9289037ee3b5fcb4cfcc7bfd59948aaf24e0653015a116f7c19421563dba1bbc52dbed4d3b3f2131f70f877fa -DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.2.zip 15383 BLAKE2B 465540ddd4ff10b9d7ce064b3a20843f1a7f8bd973437cb84db04dc53ce460828000f3b7e6c07bfb9eea72ac6dc976ae0112f0d0766e4d5ab061562c152d83a1 SHA512 28a30269583bd97889640f6249d0edfc89411f10c5a59ead07de053fd34791a23bf25001d9a8db37deba5823549b9c1df29905c458c695a15afd595c50cd1505 DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.3.mod 83 BLAKE2B 010d91f15d52d855f0e69e4158c96616ef33839f92db1eceda945bc992912a1b8612d16465dfe248b5598617dec1ce0f94c01133345f757d13bd4b3b6fba7778 SHA512 9413b94d559014eb1e626efba47768212e29bdb9289037ee3b5fcb4cfcc7bfd59948aaf24e0653015a116f7c19421563dba1bbc52dbed4d3b3f2131f70f877fa DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.mod 83 BLAKE2B 010d91f15d52d855f0e69e4158c96616ef33839f92db1eceda945bc992912a1b8612d16465dfe248b5598617dec1ce0f94c01133345f757d13bd4b3b6fba7778 SHA512 9413b94d559014eb1e626efba47768212e29bdb9289037ee3b5fcb4cfcc7bfd59948aaf24e0653015a116f7c19421563dba1bbc52dbed4d3b3f2131f70f877fa DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.4.zip 15557 BLAKE2B 12b01e9221a1f5f9d9967d411fce5640214ac84da57cb8ebdc8ba7b0f5c7d20c833b48c32ee2429860f08ccf586a990ecd4c32f9ca617e588edf6def74fe8cdd SHA512 7269e224fa155a1b4042ccdfe611d8860f20aad93e294d454b5947cdffcc277b01a65f228ddba7e16390d68dc1ff2249d921ffa9ab714b8dabadf56a9c3db8ec +DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.mod 172 BLAKE2B dad6ec4504ee582926400877959151c3f531f4866d8604d338ade9f193c4ba2a8be133a773f92b71bd73a20af923257c7cbd9272af9501f14880b0e86312417b SHA512 5d91b38d7afece82c636f1404d6c5607429426ad42967e9a32f9839c65e72c92d046222bbeb2b5f8530b9c94fef9c27f73fa5d25ef0f228b62ebf6b224d098d6 +DIST github.com%2Flibp2p%2Fgo-msgio%2F@v%2Fv0.0.6.zip 22124 BLAKE2B 22b82c472759ea43a75536222edd32ce0262bcea2b3679de7bf1e133ea86c8813c660a4f43ef9a8b084cc389102be3a2f5e8f6642e65c117f2f02197d9f584cb SHA512 10db1d01a14f3314ba903e6acea10ee6c002365e061de9391c5f350c11bd9e155a34279e8d96b112628a043b792180e7eb4e0db34dae02b7137be19c291df8e4 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.mod 210 BLAKE2B f07fba01f64107091ce5ba51ee97fe3029dd9f7630215d4be4d7e6356a0c3f081a28f8673346d4218381ce88cfab3de40d56ade9ad0d362f714432d6a60d9238 SHA512 f9be9d2a2c173555a2ab64b7d0173cf69dd4303d95fe7e849db7356396db703f1ac9bcab5f4c136ddecc36461c817e89516e01db80932ba00797bc7103392980 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.3.zip 11061 BLAKE2B 2f5ba9e2ba1e0728c65e9d3ba5038e39bc9dbe0590a457e4325b7f88af4ad108040980688920172c4d1456f8e06f313c9172edb3d2d28518acc8cdc1084a42b1 SHA512 ffeef5ece064cc8e4e4b19d570929174231e28cd6273d35fe1380869c3a710b93f739bf2803fb4d0774e8bfc62196bfd96e1b98df15c47280fc810b66123fe06 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.4.mod 219 BLAKE2B f8dc154f7ea9404adb5d93553ab17ae89b1fac0a34edef52b5aec4d3d11f0db150d840a43092a410198d79b234844efd9a0f7bb6351ebc173d1d06005477ec97 SHA512 90d45d455d26bb05efaa654f0728dd5875a3047dd1af22497af0744ed1aa1b1084e36001faaf36f03543e69d3fcc976c892411dbf5872148f0880441d0eb4962 @@ -915,52 +821,53 @@ DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.mod 222 BLAKE2B 00b3fea033168f60 DIST github.com%2Flibp2p%2Fgo-nat%2F@v%2Fv0.0.5.zip 11895 BLAKE2B 5df0dcb2432132adc83b13964df3c7baa02d8d18ec0bbea25943cb657f1b330be9b18c203f0ac895e9189fbd8b4fd184c211016e58c6ba72e2cb7678f982b521 SHA512 ef2d80d330adc193b7dcb382e191ebd6e6f63bfdcb345eaeb2e8354bdf6579b3848cdf8633f4c40c51a45fef94abedbcc10ba1d1b85c6569ac1b5ea4ce8a016c DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.mod 239 BLAKE2B 81c397c2ec547d4ba506229a6ab0d9356bb3d8c9a605b88242625f7aed723dc2b66595b5b769ce5681177a414e6ce410af1dad7a6456df92abb30d06c66b4459 SHA512 2f39be5ff46fcedf4561bc39589778dd886ea55732618ab7629f0c560af12e9d0af4eeb98d232eb3e1dbfec6fe5b99429bc1317a90c03f406dc0f78ea4b0aa60 DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.2.zip 11593 BLAKE2B 0c76c3fd2e52d52579eae41a3ade6698099a7b62a190bd82a6a44ecb4ba1c4e58aad5e437601674a0aafd54e9baf25f557f9e289cc1a89284b98506dc2f59a61 SHA512 19ac2717e2c2cba2ab2c68c966f7c377a58f03e682d1384bdce61ef4fd2cef7bde1d7ee326c9dfa611b6099237851763b09886050d89b3747526ae5c2d871861 +DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.mod 239 BLAKE2B 81c397c2ec547d4ba506229a6ab0d9356bb3d8c9a605b88242625f7aed723dc2b66595b5b769ce5681177a414e6ce410af1dad7a6456df92abb30d06c66b4459 SHA512 2f39be5ff46fcedf4561bc39589778dd886ea55732618ab7629f0c560af12e9d0af4eeb98d232eb3e1dbfec6fe5b99429bc1317a90c03f406dc0f78ea4b0aa60 +DIST github.com%2Flibp2p%2Fgo-netroute%2F@v%2Fv0.1.3.zip 13219 BLAKE2B db1c013476abed8fc1f57b3be438109a1c82f3821303d8e66efa6ffa672773a62a7c8c9a687908de8c51c385addf9a4d119ef75b4924e2d414cfd4caa9be7d85 SHA512 683a75bca5d62477967414afeede488197b4b3460d6c5df8aca18c26a6434f5be2ccaf9e663d64a302575fc8f87a5f9f6c1f406b5e588b59e7123444b6913891 DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.mod 184 BLAKE2B fc45e0bc02a14629043654c66893410a567400bfe220ff6942a42893c3c707d3ab5dcb2a62e3c0231745c293f16d5398756236f1306aceb8d74d4c00657bc9ea SHA512 52fa1e80a5c28b1122887f8872a867b7136043a204d704027857c78233c74cd45783ca1aec8d2dc39835f560edd8e6b06ab712c73120fb8b538f326c0b0fc362 DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.2.zip 93559 BLAKE2B 1610175e1c42bb68e32ffb53c67faaba95547aa831e6e3b4855ea6dc0c1f353c0224bfab28f1060c56833783de2bbca6ea8ce68a80c7bc9375243b2f1a074e03 SHA512 782f73e12b949003c2e188a6e911557a026fb74c3e6b90a79fe4c17e369b933534f190ba9d5b4a34ae4d5e3ac942fa55128d52c949c48617861fe4c9047695a2 DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.mod 193 BLAKE2B a21fd585464abc7fbec1945e57eb1af54f04393bd55450ba1f14d6569d8950755250c39e4c144a0022436dd6d633531c107099071b8f50c10625b65be4b82eca SHA512 7e74e43025a5ad61cdd43c4908b548efee39fbd1f3e6be18d6651e643e5b32b4b41d0f771e05ea43fb2c40c25af5d4af86c5065caaa0b2cb34a5571534183579 DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.3.zip 93723 BLAKE2B 6f50fd11f14e6cab39ff530fe18023325104ba83df6571bb1758df1acc2ee9b4bbccb56751fbabbf3b5621b5261ff61cd8ebd6f4a1ddb2367f40287fcbb71f37 SHA512 2a84378a57de818d62350817f6f83e821d1eb8d042ca2e4b61366763d1595de88ef033e0d40dc0d35e94adf77463894009a9243213a6aa976be643f62504b69b DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.mod 193 BLAKE2B a21fd585464abc7fbec1945e57eb1af54f04393bd55450ba1f14d6569d8950755250c39e4c144a0022436dd6d633531c107099071b8f50c10625b65be4b82eca SHA512 7e74e43025a5ad61cdd43c4908b548efee39fbd1f3e6be18d6651e643e5b32b4b41d0f771e05ea43fb2c40c25af5d4af86c5065caaa0b2cb34a5571534183579 DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.4.zip 93732 BLAKE2B d7489177a171cf6e0c92f85276d77db5a6b0f1cee5c6f6fdbd8cdbe901640c7b0c6e2415cb5739b868062638b5bd288647be62efa26f59f96181b53fc104df83 SHA512 ccbc5f89681b59a0e87af73082ac600355f14354cf5482f2a56c27428113dae3723d2006515f26fae3faec535cc62e78d3497a0214351d4997930f5b8f9d9a4e +DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.mod 193 BLAKE2B a21fd585464abc7fbec1945e57eb1af54f04393bd55450ba1f14d6569d8950755250c39e4c144a0022436dd6d633531c107099071b8f50c10625b65be4b82eca SHA512 7e74e43025a5ad61cdd43c4908b548efee39fbd1f3e6be18d6651e643e5b32b4b41d0f771e05ea43fb2c40c25af5d4af86c5065caaa0b2cb34a5571534183579 +DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.5.zip 94460 BLAKE2B 392440f36fb69dcd7d1b9f83d247247b5c1e1d4afe296df5405b15ab9547092758ec3f4f6261aa21ea5041bc5cf6cbc2922df4712b3d84b6b60552c0c8395d1e SHA512 3088cc901aa78909807afe86976c68d396592e8cf8ac89ce20f7dff54d87efc360f1ce5532cbe0974ce4d4243e62a1740794d3a4932557a0358cbd058e6e0ad0 +DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.mod 193 BLAKE2B a21fd585464abc7fbec1945e57eb1af54f04393bd55450ba1f14d6569d8950755250c39e4c144a0022436dd6d633531c107099071b8f50c10625b65be4b82eca SHA512 7e74e43025a5ad61cdd43c4908b548efee39fbd1f3e6be18d6651e643e5b32b4b41d0f771e05ea43fb2c40c25af5d4af86c5065caaa0b2cb34a5571534183579 +DIST github.com%2Flibp2p%2Fgo-openssl%2F@v%2Fv0.0.7.zip 95768 BLAKE2B bdc96ba1c8fb5e4cbb617a95fd0dad794d4ae724071e61927b2f41a716ba7aadc5f24127d1cc9d1addad587f9a56df26b2fd2d9d2c87e4eb6fe22c9c8b03afd0 SHA512 4a4cc7731cdedcb9a092121ceb8340f6481ad1199cc98d48524acda1570084a6835f186c1737440636e969c270be8f3979e6880349dba113fcfe2cf2aba01515 DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.mod 170 BLAKE2B bb948d1a67bc2282def5d9da6a9c72309e45fd26f7cf3eee67577fc848167975db0187f4548aef76fa8f0f2daf7c2a9cabace4b3ae261848d682740fa1382212 SHA512 83b0b69fe553a7818692b7fe99d1ef3c94e071b50984a3362ad6cb97b37fc0ab8e8a7658aed32b4ddc392972c8af45a640b60c4bb250d8991e9e886c7cad9b0b DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.1.zip 8348 BLAKE2B 94625c6f483833f6af072e5acb86d0e56fde5c987d331396d1d896b11815128d1268b1b35ec16eb566ca26498a20a4712b521aa8d6b199e81158fd6c019f65f0 SHA512 f8074a2c9ad65bdb3b58d4ce6b8f49e586f60b4202d7054c294628cd78fb358fae87d2faa78e244385a2eb6ebf6b495d939f1511079c55b51c9f2537f983e809 +DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.mod 170 BLAKE2B 13f23d96f1115919fd4f81afb8b717be01808fc5582bba0332cff84693c40e92476921a4aec84fac4899f091cb1157bb61275204c298c10265c8ec7d4f5ef4d5 SHA512 2eb70b0a3bfae1750b6312863a10b9549bb0e2d5a276d54202d59c5f03ead2dc2158e5fbd964b20c1397620580003e378be9975a5a100b5e91beb5d9b7b989cd +DIST github.com%2Flibp2p%2Fgo-reuseport%2F@v%2Fv0.0.2.zip 7534 BLAKE2B c5dbbbf5711ff3c1f499be9057977bb55b1c33bd2c65917dcd9f11e8f8859a540f1c3c27c1f15d61e35d753e92089f0261ddce3935912db53e1f30365c372c1a SHA512 cbc73e1b3afbd9050688c36f2bef5cfc714c7cf2d16f4a59d68ff309ff24e15f937d96b5e48e9d3a6caa435a3dd211cfde5092cf80e5efe680e9dfbcded1a288 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.mod 225 BLAKE2B 77c83e0698d95e156b56440e615b3bd0787464dc4bfbdff28ab60d385ade1f4727b6c94ae3665e2d595d8de563266f1009f0123ee0029c93e2be49599df9cc4e SHA512 9a41124ccc8278cb36957c3e5f212b42c3b544754111a224c54b2957cb9f64dbd8e4d75d312552a7b2950f60d4f036f861cedc2ef74480e4c89fe70aad982544 -DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.1.zip 14980 BLAKE2B 7715b4a8a4736512b1385b4c983fad3bb1be58a32d029072c9dba7246d9c6279c7c91a591c44ceb6a5cbeed13adcd1b695c8530cf7aa9397dd5928e3fe4b1ee5 SHA512 a341809520bb860fa13f1dae36c4474c7fa2317d113e15da75a2b4becf405421dfecef42ac5deddf9ef37e6640344ef97128f3eaa9b5ba427b11615bcec066b5 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.mod 225 BLAKE2B 77c83e0698d95e156b56440e615b3bd0787464dc4bfbdff28ab60d385ade1f4727b6c94ae3665e2d595d8de563266f1009f0123ee0029c93e2be49599df9cc4e SHA512 9a41124ccc8278cb36957c3e5f212b42c3b544754111a224c54b2957cb9f64dbd8e4d75d312552a7b2950f60d4f036f861cedc2ef74480e4c89fe70aad982544 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.2.zip 14875 BLAKE2B e763044f0def2a32c976b029ae297027f4bc7433816750efb395cc5bb405b402f528251f5f34728732e8c4a7f30495350862aeddeef92dbb95667b38a17efb27 SHA512 cd33da4583a7ab60d60a53d4b2bb40ef27f401757b463d567ac09398c1ba73c4d9e66a4c05b2acbffae0a9908c1c1c4e3dd691dedc80e470171fb182f76f89f4 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.mod 272 BLAKE2B 818d275ddd33b4727372861021c98456366f32c053cb90b90158d983bad66226617cef5bb78652e06f3fd5bd67363c55079b67f75e86a738e42e365367e088ca SHA512 98bb330e6bd0291bcca9476ef7c940ea4d73abd7adaffa1cbfef4157355f6c26f1c1a0be1044660be416cb9e8242f182cad2a3e883266ad8a2c047c6f02192f3 DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.3.zip 15027 BLAKE2B cc0fc08e453a89e6558976f88de9f74deff4df47b248562f8cdbde3d0a9de0bf6f15f75ebdbcce08d9825ab8bb58f13866c297d87f44bbed4b599c7dd46c933a SHA512 b749ac3f02aa039bcaf08f1fa3f28637fba96509964202e73f8e42ac678da9f57ca9399622ad46edb4cf3ac07acbb1d81f2f9e450339a57121e62716d2346e47 +DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.mod 272 BLAKE2B 8b12e339f1895690006850e8055651cb6f8df24af0f8d4cf0c1eca57d7e9a407009086cfebda6932008085ac97de923ba0856aaaedb2683b91895fd7c16af798 SHA512 e0a4bed74759c7d140face1360014a151fed68b03c5e0781321777b3d2d8bb8e7e2173d03f8c4bdcef70dd88734f62e39fafe1439fb6829f84102477bdba282a +DIST github.com%2Flibp2p%2Fgo-reuseport-transport%2F@v%2Fv0.0.4.zip 16399 BLAKE2B 79f0663aa126169e0e693c1099645e6a56246676d7d99c81c8397f76d37db792691a630ca162645375da9f395a93583fc9ec1c7c65cf454fe7a463ba8df893e9 SHA512 05539984fa95babfcfb12005fc5b3a9e9cf651ad76347e2c3108763ec29751d2e0790eb1e80df76c60ed01e550feae2c7e467f5f33eb173faeb0aa797020e7f6 DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.mod 107 BLAKE2B 443ce0ada5af2703ce3b3b1e8462c1bbaea680e3d286ad5d26c8de6de0bc130407c2bb91d0455cd3ddb6d38d2d00bf569d9690bcd75ae231893ed2d3b7585cd5 SHA512 803ca00d31589f83dd13694c6f71d90cc8fcbfcd247fc4d160d2bcc23844c5a8172703f6a8c05ef3ba1b294cc1cf9468598449fc52bfeb15e59e6148b38bc233 DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.0.2.zip 11417 BLAKE2B b14e0a109c2df77e011bb3e35118497b34888931edbcfd50420c0c35e4d279cd51ec2b89163a2c8ad12714181e170f71d3f38de4218ef031395547cd40dd38bb SHA512 330b5aeefd692e37dcc63f09e95433cee63232a4679cb24dc31cc673bf5a9659841769432191f7a5f3c3b12543ba0f47700276abb7fe8b40de74cd5634016d75 -DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.mod 107 BLAKE2B 443ce0ada5af2703ce3b3b1e8462c1bbaea680e3d286ad5d26c8de6de0bc130407c2bb91d0455cd3ddb6d38d2d00bf569d9690bcd75ae231893ed2d3b7585cd5 SHA512 803ca00d31589f83dd13694c6f71d90cc8fcbfcd247fc4d160d2bcc23844c5a8172703f6a8c05ef3ba1b294cc1cf9468598449fc52bfeb15e59e6148b38bc233 -DIST github.com%2Flibp2p%2Fgo-sockaddr%2F@v%2Fv0.1.0.zip 11017 BLAKE2B d45d9daa80536bdeb8da80359f9a6244357609a744d832ec3ceb5e30644c3a64d480358c1b064cddf7e521fd337953848e2a7c844877497403b14f8e4d0bb21e SHA512 c25f5279ed29d498a051b392a039ace35962fcff6a65e672380a5fb160bcc1a3fb644727d018fd3b86f14027819fa8683d5ef65c434de584e0aa14aaa2ec65dc DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.mod 190 BLAKE2B 0df8f7b13f97917cb7392cd894cc0f667d5ee270b3792eaec0bc686ac087c5e5b28438c3811f085028b60e81941e2dd0062a688d34ad1c852ed7cefad4ac4355 SHA512 18ab3f60f11c8af5573cc7d90f3fd4053a21a3e8849e70379622199cc869c63b0b5155b832cfd92809a54b1419c85b12bc9bb54fb8b6b34c865b71c1eb9a8cba DIST github.com%2Flibp2p%2Fgo-socket-activation%2F@v%2Fv0.0.2.zip 7945 BLAKE2B 7f9e2347c69d62c0ee0ab272e5b2126e97f353f86b3cd92ed447c2315797b8a19884d93a6de7bf46344b1752ccb462345d0387cffbfe44633d43c8da981c2ecd SHA512 8839472eb8c3b19cde92a6de3e294fb0d22340d73089b77a60e5b6e66d9250cc78409c1876fed7654c9d37cb62e59119e1c5d6c2a960e08e836f32654647c041 DIST github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.mod 41 BLAKE2B 7dde19f4924372e2d1cf22c59330f8eaad017bb70ba2c6e6a7bfa17a76d5ad4108ed4c6ce9f5aca1c6b06b6ffe04aa572851ae8d545779bbc5083f5692ef8f0a SHA512 aaf375a4457cb1ca8237eaef67c627204f1d7a9fc75e14cf0ca5d853880d66ba0837a02074f2f8c1c9b8414a42b5c0bf4d10717b4d20fce7d61b5547c637aaa3 -DIST github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.0.1.zip 16275 BLAKE2B 50449fad462dbee7c479952d6b4f3e12a87b400b348db249d456c04eb37438c70ee7c1d9f57b4deb0b43f50a44511e1df363ed65757535efed90f42a27a71755 SHA512 aa23cd41abef76003a853465877369aff3e26fa8f2d26d44fb636da0ed4ab09e77398d1d7ff85b9ec9bfa2859249a277ee7a43daa3b0243bf304a696f82227fb DIST github.com%2Flibp2p%2Fgo-stream-muxer%2F@v%2Fv0.1.0.mod 139 BLAKE2B c3997e7f037606111660dcb2461e7c1664a36a6ca883645d64791368c1415cd61c5d39828a28ac530e7ba2d3cec85dd62ecd367ed661dc1c26cd19d5fa929458 SHA512 c04a0395231b175a6ff5f8eecca18963362ce60e8e9e5ae650bea504508e8cda77ab9d1adb8f833645475271eaa8c464996aa3f6b0d6ff7de8ceb0f88c15076c DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.mod 164 BLAKE2B 5aa5821c9b0a95ecea7ed18ca4aa0012b239d1c8f7257ba9c087892ed400d6dafabb5486f13539fac43df7d2b7da5ad9eeec3a40929fdf41f5a03e33cbe735af SHA512 655345b387bc4245a4333229f4a7d05f232acdec2dfab84565a9c797a19d5e7a826339fb82f5b9cd014da1b6ff7d3a4d88c6816349a443a104480a1ce43c76df -DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.1.1.zip 3987 BLAKE2B c97ac65e2d1a6e342dbf50cdaf5e4ab61dc08fccd7c192a279ad2bc0ab2eaff9d13850949524e466bb3a6f495e37892561fb2fe35b7e00e108f67a1d453a08f2 SHA512 83a7eafe667da95259ed7ea4bd6b0c1243278ccf899129d2458ed41bf9461292b593a4cca570b5b2e0c63c6496860ae6691be4dba825a6fce4b9a93134e426a7 DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.mod 163 BLAKE2B 4cb76e93346e05a850f9ea2520644c6fa62d88c304b82d66075f403bdccfb27c3314ca0356e3024646b913c483a925ddd7164f2ac28c8c5937be47e8295f6d6f SHA512 b30cd01cc062a891982fa797e41a1718a9bbf1d608d592a85e3ce88d3f831fbdeeb4dce748376c53fb38f3fcd70889ec9d1d8e9296c68c88b2d306f987f66d62 DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.2.0.zip 7035 BLAKE2B 649359306dd8f46a35899b645fe8756f25d44311126e7d4f958382a61403d8a68229a02f260f1e65b9e534adc7a3b581c33d949f8ad30f266807bf4734384a7c SHA512 e4a3acdca2e170078dbc25cf719114875f73e41d742125ab690e452a4de69782846f0c1f2fac578eb5f34cc04e7b0d7875002a29433d7c07233a39d1b06c365a DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.mod 163 BLAKE2B 873d0b56d4e33b660cdc48944a4694f11877a01bc868e8bd53e69eeec577fe90aeb8e7d94f6816158207f8604f5fcc300d49d0c86af41929bef539dea48fdc9c SHA512 a933933773d2a5203a09fd242f3c02e1e31228550cfd3e09bae879f7bd083d8b9b83b4f902d0d9fec569737711bd149f5e8ff50d2c2ce6c05018c37b3378f3e4 DIST github.com%2Flibp2p%2Fgo-stream-muxer-multistream%2F@v%2Fv0.3.0.zip 9768 BLAKE2B 288939bc1653297134c6ac201f59e424f4a850083808f7e03f05cc603d5bd4f07fce3f5ca9d4240d64664731f1802e7ddb3c9ed4e0951f7db7641610d5a65ec2 SHA512 79894cda5385a71b44c00d463c941bb3ed03233dc8c4be42e6463b8d6452343f2f45329bde681f73b072740bedb4a509fd794d0b13aafe498889317a01753526 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.mod 557 BLAKE2B e36929c1f25bed72d0e109f7e06d7019a31cb844ce8b53fa086af6ee596f711d626c4a2c440b917223dd243ca4c1869d684698fd6317ce6ad2084f517226c5a1 SHA512 da4aa298c426775fe97fb84544e195650256aefdb866b0f40e2ddfe13f0a01a1aa3b04382a25a77d8323af17f6415a0e88681842177c55b1a3e02c76773e1e34 -DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.1.zip 14410 BLAKE2B a78b4d6b36afe0b12290f574be739b0bfe5179561997dfba26750837395cb3435b6a5d20c77cbc3fe497ca96636e9556b06e77beabb7fa81729a6068bf5ca567 SHA512 d06c6c93c1e896acd1ea9980a6bd42b62426b9c340619bde393cd93fb38646853ca4b28f5055a2c8cb0de80d0dcf46e80c0aa4c464204542112724cf49c7046c DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.mod 534 BLAKE2B 98d4c476e5bccc71fd5745b96b05ecd0458aa791d39adbfc7d15e9e368d4deaa95c924aa8b8ccc4a93e70f0d86e5a62b39507ca71030501524a137fe4897e2fe SHA512 2fe38d7bd67143adf4dc4461112a97804f30ed1b7dd03b98511da65807f5916893eef59d56e483b071b046c5223c99f155db3bc77a746471e57d5b60d3628bf7 -DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.0.4.zip 13173 BLAKE2B 8d36bcf8ace1ba34ddbd02c0796fe66bf42a53b11cc9f31fbd7ad953c6d460a1dab291c8ea59cad26e76c1c63ee601e4a3c15c7d7b60e86e826e597c4347ee02 SHA512 d04d8f143b8b5ccd80171e46ce812ab277d22528ae172b19ff2f504bad64f72c20a92a8d58ea098e53000c96dd847cb9887d5203e4639f9cb2d3d444a0c52fe1 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.0.mod 556 BLAKE2B b894aa7a440c927f1c4486f6f2001d40dea7a12548436bc77ad58025377b2ccebf1bc9a9662d6ac90a1018faa8bf89c82a18ba1d19b30bf189f2e1801dce53b2 SHA512 84b573506ed1cafd95094e61fe111c2979ddcd3300d2af31eb2f079cdbd2193f2299d02f2154c8c980673e4807966e90371165ac9f1d3299d8d3a35b3b8aefd2 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.mod 508 BLAKE2B afa680cce5f40210a01f40304e2660e55e634040bd8deef7284cba455cdba04dea180fe1c3f6e0721a3c0d0a2ea3be08f969a1b8eb4ba72fd0cc87a713f06276 SHA512 ad5f20c8caeda811266287179d6678631af9fbdb77082a7bb3f7a3f7023bce74a7e6dbe7cd9ca6a87e1059ef36a189eeab530842b2ddbd12012027e161b9e5e1 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.1.1.zip 18103 BLAKE2B 6f2ba9deaac850cf0b721347286c0ce8e29906ced5adaead1dc6e5df98246020d92fcf56b2f4adb7c899aa14610ac853a8ffdba61860327db505f62047ace568 SHA512 3150e6aab4fa96c528fac7e6bee5c900776e966d5a4459214bebf94a2a6faf10269d766ca7ba34ab92b52bc8cc3e9c316b23aa73c67b44585a62df666dc11318 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.mod 508 BLAKE2B 7900f753b91a89a7b451c77bc5370dadeaab4b2bf97929f3cf64211bc232b9b6a6e714c5c1e3ccfe5097d54473a134fb281cb70cc3a849d276d62f7026a3f829 SHA512 a4b4573c0c7154eca4e415106876e1399f00a69fcf6b58e67eb01500366d429c2d51e6ae7a46ed26f27f44b98b91fdcfc829f3762d3fa0b9628b9b34d013cc31 DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.0.zip 21195 BLAKE2B e8fa8002871cae6b36b28948fc88404fd1d4cfb94d7bd59ef70aa9045044c98703dc373d0e923bc7ca5c1a58901f035bcdb4e52db4783010567536d6de36fa9d SHA512 d14fb211a487334155cc9fea647d5a459858c1bcbd8652d4510fe2009af1277794b61c37dc6175267abcd4f5cab92e7d9a5b4290601bab9157d393d5ba046d70 +DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.mod 508 BLAKE2B 0dfc8dce210b24b7ebda84d0bf4a1c12a52120a20fc27e3f3135513b2976c030a62ae062de72f3cb93b424018ed347a63d761abbcecefabb245b8eb9d1188e39 SHA512 df0937be6010edb4b81b1da036b8f233fe70c4d9fd4ffcc79b24eda03913d0ca6e5fcf408171d37d41e5e07491e4e26548a7355b2aa4fb3b2aabcd7cba4a3931 +DIST github.com%2Flibp2p%2Fgo-tcp-transport%2F@v%2Fv0.2.1.zip 21471 BLAKE2B 8514e27acc8c7386112d0422aa0489750370c54fd95850b09f1984c9bd72b6876f4350e99c0f1af333d04dd1331de81e877f34a4f36e1a1caef72510341142cf SHA512 3649b11f80d9e892a8db7543ba61f7832ddfdb5b26e2dc1c2f68d613a7e5a4c11ef668dcd486e1174f9b9367783d1d43669fb932f69144c3a167d0138bf4805a DIST github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.mod 224 BLAKE2B 3703bba0bdfdbf377beba4ba79fe2df2a9f2eb4f9d3d38bb7eae3dbc0e920837fc7125984377142da6100a72a74437bd93d4a96bc80d65f6355521160ba2546f SHA512 7158c0bff3e8a95b9e05be3d2ce5dabd6220059e1c8902ee42eefc26f05f806406cebf46038d7202aa1ef71cdd631ac72163530feef94df8cb23b31deca611ab -DIST github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.0.1.zip 12822 BLAKE2B 4807cba1c5cbfec785a574d434aad3f2ddd83b624ece69571e7a54e87b2760e142e6ff0eb538edb613108917b881248506fc18f07e49147935963a3495d89636 SHA512 1e29ab7fc8cf9378626b1403ad65aaacb1ea7bc49365c48bdc073c1671a8861a3ad3db372d08b635627f433d01626a32972352932fd9afe5ff5d73d7bf4c2186 DIST github.com%2Flibp2p%2Fgo-testutil%2F@v%2Fv0.1.0.mod 245 BLAKE2B ccab27cf3ba7ef02cf1019a730a37f4f0998d3e28e7e96b86a54df7c314ed09fddc129db083e9ad38bb9ba716994598c9832014c6287a7891f6a105ff7492773 SHA512 53758b00d58252492edd33633fd4be6d4367321328568dc67221560230e0fefe67e29cbce5d7dbf7c830381963d71338e96267b381a8062fcafaa048f35af403 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.mod 474 BLAKE2B 1b4f45cfcd6170e8e5f54ad3a5b100be3d0636da6727cd5e7b632ea7f177511b9489282a3bcc3604bc2966886229bbe4e76360fb1b6e47439041192fdeb018c9 SHA512 7b3990c90d76f421e8a03be51c68cea9c48d24e54c8f45b069657df670d2ff1fefa6ddc516035871bec5d5778f69bafbaf86af191274f081964c53b55dc92dd6 -DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.1.zip 16536 BLAKE2B 395c2cf28afb505d50be4dc9eed0a2649578bc3093653ccb51bd38287aa1f0bc3cce22613262d3ffb98641923db197484a43e5fc3262504ee4661d941591a634 SHA512 764ec7190c69e5ebcbfa699850b170a711acb07ca3ea589e36275e1e89da96ca1556787f9e5a811f27e59b9b919375f70db8cab3822a391e0e298c76f0c89cb1 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.5.mod 451 BLAKE2B cbeb1983312ca463ded853b34f074cb983afbf384cef2d006179fffbe991b859d21e73269514990b32ff441bdf70d14c87e520756aa9fbad3acda9f9d3426b99 SHA512 a18f85536fc00b26139df8afc39eaf638f9309bfbdaca2c38a123cc4de1d723d8aa6356e0921c551a299adac340450c4db80d07cef523db8b007402e75bab996 -DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.6.mod 451 BLAKE2B cbeb1983312ca463ded853b34f074cb983afbf384cef2d006179fffbe991b859d21e73269514990b32ff441bdf70d14c87e520756aa9fbad3acda9f9d3426b99 SHA512 a18f85536fc00b26139df8afc39eaf638f9309bfbdaca2c38a123cc4de1d723d8aa6356e0921c551a299adac340450c4db80d07cef523db8b007402e75bab996 -DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.0.6.zip 15118 BLAKE2B 76243b66cd37bb90aabd160bdd2b875dc8e2f16305a3ecab94807b4cd4786a2f170cc0457a903642f81bdfbc156209901c97df1687bea37bf5484cc7e2ac0d03 SHA512 04300f488f12d81b08a7ccdcdba6f1ddae22123f451eadfe184adbd98c6e2b15d1722667a4fb360b6246377d65ef1d2d09e43b78a9e2d53909bf413a5b76bdb3 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.1.0.mod 406 BLAKE2B 7f361ec54e80f829f3608ae5154e08ba5622824ee93a2dc70ba7f4a0d314b683363e4e5a047cf7fffc383059ec7b3cef5918c70dcf1bc8c5372c604fc276e691 SHA512 c4162953440ab7b7650651d440523faae587b1d72ea302c615e79d59acc5ed9325fa7cd1f4fc804550dc36c722dc804b8f0e3225dc7ff62548365bbbe7cc56c4 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.mod 481 BLAKE2B a3d3cf995649b54e92d9a6382dc9dbc864456e610016a367f3bb28ef178b235e70ea61cb6520e6c1b53dd0eaa6a73e09b31de047d3b7b214d57c02d0564fe377 SHA512 9541be02ec243b78fe9d2cc71936dd6ecabbf86e4750a488aabc10c63867c7f6ba4e551c4ad4595dc47697bb67a523f45f4f24ff158aeb9fff837823b8942803 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.2.0.zip 28018 BLAKE2B f1c7a19ea54570145d9e89e501b8d2bfaf624782bbb407f69f143794c06907fceb6b043b92b78d0592d435c1f907a6cfc39765c4098acd4b9e4e901d3de1baa0 SHA512 dad80bdf083de231b39540e2a0be04f4f5bc880f2f5ee3d0e80f16cbaea33fdb6375795a48d2a30135656f20ca29c79c678f03efa17dfc5b6940b24eff71d3c5 @@ -969,9 +876,7 @@ DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.0.zip 30371 BLAKE2B 6dd64 DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.mod 425 BLAKE2B 39306d94048c87fdffde14a0692a624f625e957102138ea46b0c999dac26144b569b0a0168dff5b2b957e3ca0712cbda1105b4554a2fc48e8cf35223d18e5b12 SHA512 51a8d04bbb363a38d37ad7e2e63023dece7e966de1df45d7ccb681992597a9aeb2e8e97be739eea030810abf64b54175374f7f265b507df16fdb3faec0d594ab DIST github.com%2Flibp2p%2Fgo-ws-transport%2F@v%2Fv0.3.1.zip 30509 BLAKE2B 787e66d8dff27f3d049ad15e5790def9e4e569a66764af25aaa86b0d66dcbbf5661a80be296cd3381d110eb1a6c8408eb429535a416b6fbdcefef177bb33bc8b SHA512 42822dc71a1381222f7afbff293fa79ee47979b6d1f48404f54bbda6c3cbd0e7a5efe62e187e2c6307f556803b30547376806b1b3fd7f0a43a3a1f4d4ac8eb3b DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc -DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.1.zip 31507 BLAKE2B 2c48c8c69868851b305a836df6eda225d3e4cf126836f25ceb47c8ae263c3bebae4f834422b4e73f4957e7e49941be94413715e66123c53cee0ad5ea08e6fd60 SHA512 505a999ec44db05d779f35a337614bd55d9ff17d9a45c62f690d0bbb1336d59a8024321e5d30bea57bea30904c11c7da117a0d4d2268b49df21368d1512622ae DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc -DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.2.zip 31674 BLAKE2B c43e4c6bbf4a1375304a128e2c526769e4a1d7072224662efedd22e9f9478672f9a72f6fd9b0ebe1bec9e0fd168153d75c9cc733a6addeaf892c46e382a2470a SHA512 8d2be48d88ceab613fe36ee284fb3130ebc1d4638d45d666ed5c2aeca1b92ef0706aad1e8a8d0de4a3683fc2da3c19fd39c9abbfa208fddaec972716b7cf9842 DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.2.3.zip 31713 BLAKE2B 3f0c9baf5542088304936fbef43cc445bcd09d04631e711ef3d1552c9794381dc89f558c2ccb390b5e7f2ac2e94fb6744a00055e827566a7b31475d78ddd4aba SHA512 e628a75cb507db1c5cfaef22ba989148e621cf60e07d6163b67cf02df2bd650953dc7966e37697c1b98ecea9bcd08253487a683df558a5f66e83f82c4a4b1f0f DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.0.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc @@ -980,39 +885,33 @@ DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.mod 92 BLAKE2B 918406dcee85b96 DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.3.zip 33746 BLAKE2B 6e029c4a5a1dfd5a8ce9d99cb1cb9876f793e1e5f539cfb6e6da27ee43f271bd2eafd9fb70f6a4f132d5fc9e62f3b46540beb207b3c9cdf71729e99ad2258bcb SHA512 35c23793764f68181eb77d7197030fe1154c67d4141fba5b4d20dc7c1b3ff555482567e2de19e0d4c8d28d846cf804371ea3193b262de1d0e0b1aac719d142ed DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.mod 92 BLAKE2B 918406dcee85b96af3dec73ac72da981577598bb71d0e04cc55ff7391c50b93da71220ec13c05c36cdf226b6aedfe26a6ac45cc4e082079a227971acea1d8a92 SHA512 296f048d4a4721418b9b71bfa782484673985b332d65c739c522277f525b8764abde6c83158fd6a4b06b120b659a557994ec790ace203a257d48177ea1953bdc DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.5.zip 33596 BLAKE2B a855084aa0ed6aa53874bb60a73a735c0889e5a33bb5db6791fdc120169949a3ff0a395ccf1b678714ce59481867d28c03ee5410dead0b35fce0edce06cc83e7 SHA512 d48a0db22231c65391dab315afab88e96c0018a2a56a89497b04be2d4e1255d1a21c806b4fa6303d8a3eff35eecc2796cb2230e2c152ca26a12e8cfd1966a946 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.11.1.mod 340 BLAKE2B 8b9beb150ca115ed54bd6cc891392a99527994b593ee72ba8e7070134bd8b72e75badfa1fbccc1a0b52be7bca4c45e21d3147dd43e5ee889e26bf597a1ee3441 SHA512 e38ed4b07a9b3d227af43346e97a7ea1a8635e5dd89efc2801650290c50067013f9713b66bbe9e49bac14db10d0c75fc36caad99dce005f1e92b8a3c7d8d8581 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.11.1.zip 485595 BLAKE2B 1da19497c7fc0e995fc7f6570ff9a9d4121a87060e03773b5bbb82251bf0f06da7f4b074b2e9dc7ec6b2f087ca9ebb73f845d77f02f85448ac651e24820217c8 SHA512 9cc7cfa7da49bd9b28b54a47d2866d0ea0d05e3b65be1eee6a876a147ec9d1b53c3a2266143225412e7b3a429b6eaadb1c108828688bc487f0390b5c1d362428 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.15.7.mod 582 BLAKE2B f265b83af720399c2c438281b7e98d15f5bb3164627ae580ac775b533576c429f3a5408fd8f4a92f7b403598df24b7c6732b22eb817f9fea495c0138884cd136 SHA512 29d12c6f2d42630c252d58bbd2b2f5ef9af6660d000109b4c0d9a4f4e048d3c92920dac309aa5b21962e45df57ca8ea412e9fb63abe7b51923ba9eeb36f7d9d7 -DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.15.7.zip 679034 BLAKE2B 2a7477ad03a902b15cc08359190162de71ffcbd36c24a33b10c00b9f1d8734c19686eb4d4b3fb8356ea9e68ab0e96cdb686f09442579e063c96215850934bcb8 SHA512 67fa041d5b3ffd66cc134bc9932e19089700374e2470e09092d4fef81536f750ca70125cc47494aa03da1cd672c31dea248d83e063649e8aa2fdc8c70608b8e6 +DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.mod 97 BLAKE2B d476d83340b094779cac233dbd4ecc00654cdb9c2def657288de66eff594bb85710592c82c7ddc512defcda42d19962f574b422a97e580500e0a358fd0443690 SHA512 b76ca092dac3df061ef31d82f97556b269086b13e9f2e8883d20f0ffc363b0b3ed44ed48aae3106b9290523ff07095a5635bacb947f733008eec6257e35b822b +DIST github.com%2Flibp2p%2Fgo-yamux%2F@v%2Fv1.3.7.zip 35705 BLAKE2B 9e26172b5a3d6631770046aab2c20fb4972c544d127c98365c5cf2a6ae43a470bfd15e29be8393a7471c6875a11590b420442a5eea57a593f384b554e3a5bb03 SHA512 1c3627dba65505aa632b55c2192904e1c2e68403e115f97b4348acbae7085a5aafa1272fe56a8c616c2f739f717dff47cb52c54a22a805c1b395bb15f8c59608 +DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.18.0.mod 761 BLAKE2B 39680bc99714d194fa22a44e4f163d0e3c9b575a23fa359d5e591a63f542b11b703d68df1b3fac5b0b798fc41179ab8f711a64cabac5376e664000812a952ee0 SHA512 bf0c06b3495d22616ae3bdf7de7fc80fc5594b231bb20ad247143028b9cbfc852e6032cc9aa2641fb10fb9a0a599a6040731ca3aa1562c26535ba6b2077ea9fe +DIST github.com%2Flucas-clemente%2Fquic-go%2F@v%2Fv0.18.0.zip 731256 BLAKE2B f0e7af8ca89b7b440ac5c0a49e952ea4acf469b48ad33c92bb3818ca5d0c24782ff4238818c203071dac7c0a24a559318fa6f6b2c6d5d29d74b3101e840742fc SHA512 c19474c55c571f50e4556dd8a7b1778d9eb24db323e2ec92effc1189695e6be2dabd92708f2c500f5c85a5ad7ebc1b335d31271d16e4be0d2d9475f59eaa456f DIST github.com%2Flunixbochs%2Fvtclean%2F@v%2Fv1.0.0.mod 37 BLAKE2B 0d60c4f85be76a6a73bd4b6403a73e12378ceaebf9dd48bba245ab0e14e846bc1fb480671f959ff56d52c5e2b41db8de0804d4258fb4cb58d6b0c618c1401104 SHA512 6a0913935e88940258478e250207882eb1df8727e18e66419ba5d4a06a0b2c8691642ed379d4b4ef16df715893b35e59d1e967d5276e6b0ea75b1f481e852a65 DIST github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod 40 BLAKE2B b8e71ef21c42894c31d75cce0e7423b21e716de0539a8a7ff462e0d5c05c77795238598630208055ad808af2db8c56a997e7e114ef391c07d380b996ce533544 SHA512 8a724e5cfce28512549e7b06ec42c9e02625adfb3398fd45af07f8c512782002a262e8567669929626814758f9d12041c318bd4258f88d110a851630537bd5d1 -DIST github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.zip 38603 BLAKE2B c0b783439b139f5df0c9bd7654e4a85b5eff2a37349f0c68b713a00018764ef355622756e7ed23d9eceb3201c93e45d0c0f7a7b17e3ed27dddadf523e79e7a89 SHA512 b10057680da719464890d8bf7ae3c3d375c9fcf6ff833250eddbe897b9ef68790bc5e2d4cc5936caa69cea311999263cdfbcc71431839df8214f6b0a1d1fdfc7 DIST github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.mod 34 BLAKE2B 0f1af1d8e53c7b13c36f0a436cfc14eb8fc7a7bd4df72d4e9315ffda79ce20852ce50ff6297daf8fb2998e1d76af4082f71c94555ed919170d0003483de94f4d SHA512 8a3f702f8044a984fb6e1b9c73d837cea4b7f51783fbd03c6a957b58a0b4084461c63c94367314ea91f4684612b1f7b8d4eba8c1cb3522913d51db41edb73cd1 DIST github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20180823135443-60711f1a8329.zip 107870 BLAKE2B edf45f679d8c1bb83441f243feb0b31f19f88759e919b333c82e4a6595f8612e5d1c9211ad2b41b8fcc95646d6c546f10eb9a21f146634cac0c44e24e2b178e0 SHA512 e7ff9d061aa69f1f62aa3f64942a7a4fb7d515ce112d9e5502d2fb041fde4e90b38789a4fc666e60400691e2212737b779dd0f0d9174bc6892002268ba430f57 DIST github.com%2Fmailru%2Feasyjson%2F@v%2Fv0.0.0-20190312143242-1de009706dbe.mod 34 BLAKE2B 0f1af1d8e53c7b13c36f0a436cfc14eb8fc7a7bd4df72d4e9315ffda79ce20852ce50ff6297daf8fb2998e1d76af4082f71c94555ed919170d0003483de94f4d SHA512 8a3f702f8044a984fb6e1b9c73d837cea4b7f51783fbd03c6a957b58a0b4084461c63c94367314ea91f4684612b1f7b8d4eba8c1cb3522913d51db41edb73cd1 -DIST github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.1.0.mod 176 BLAKE2B f13ab7cbc5159bcb8e425bafffb50590b8ba21d0cf304bf690151d42db2facda3347d7ac3adf8030cc939c4f1930945f97df443ac59483d1575db01e2d354163 SHA512 f3d70545df7302538e468344498b131d8d5cda99696d02e025f255b77ed02cbb87941eab7c17235ce1027dbcea96d298fc304d2ce88db1bd34aa9d1fb4487bbe -DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.2.3.mod 169 BLAKE2B 2c00778603b181f9f14744bed2bbe1927e8f51a3ecbb49d7bbcf7b51fd5ad32756188708203e4319b9797c45a2488602ded332e56916b2b2d91bbb75d57920cb SHA512 f09ad6d4d7b4e53f69ad31b50c934a3534f68887c1b345a41bbb356579f217c2fdb482dd305214452e201b924e5d775a81ab3e91de120fee3119616a31a59da5 -DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.2.3.zip 570824 BLAKE2B 6a9637085ef9f5b42a7307d5e1ed80fa0bc29ad196407e586a32ee6094e6549c3e5c9cc51e8df920ab81c5746cbbb2f86e8c04e438c2cbfc7a726f9230afc5fb SHA512 91bdfe6839550b5529609f259512ccf8b5a38e1faad3493f55366dcbdd4b2fcf216c62c9ca57d70260c0c0655a9eaa6f522c89c363e45143936e4174b35d6209 -DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.9.1.mod 200 BLAKE2B e92c57381bad535c271d3e00c5c361d6b1ad8f5eacc002d511f2e473d4d824db11fe3c223ebd874416bc28481b5eff9f42fc7cdafda3b334c150223ee152cef5 SHA512 485f69dc07637010a13314d890a1009b6ed9f144baf9263fa6fbf131b039df722bda6aa71b04fb03efd7fa721b87f73ae359bd2cd73568321884fdeba986a8ad -DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.9.1.zip 1156527 BLAKE2B f232d284f6d8f1d557c44fe7af8dec4d0cdb45c5a3b94597cd678c9ba5635b442aa64fb92cfe5cbcadec6b1279a2d49f2eed4cc2353498b513008d2b2f9ff954 SHA512 1e2b61aec12a603d77792806e64c349a00b4fe2fc5357dff50d583cc251d91f5bcaeae92102c409e548b8b2d9a86f6dcbac39f38b556004843271f70c944d7f2 +DIST github.com%2Fmarten-seemann%2Fqpack%2F@v%2Fv0.2.0.mod 178 BLAKE2B 1044039faf6fb3c3d61c9b00ebf83caa7812cdd7b7787945b7f9f106b88899906d646a6f00f81361e14aa48e053a2177309cd59f1a63cabb706a832d5a7cda6c SHA512 3db41fe780063d019ba2e84c08116f754f5cf6de31dd4432364c7f9f808d802218d3eb039e10eec0dba6fe6ab836799663c5f3789a12f308605d0a52934a2960 +DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.mod 201 BLAKE2B 12946a417b352c690b676012121a26e6dd80839e5bd7452262488044c17988fd094b1e1fdbacb5c15b156a6e50cc4604434c452a75c97081bee15de827ded57c SHA512 df90f7153c82b58c2141b2a59dc4b1cf145cdc99cc1b2eefc881a8924235c02eb5ba39795f394c4e90557fb3f74a79abc98ff66d07e4f915740a63ca0b3f4180 +DIST github.com%2Fmarten-seemann%2Fqtls%2F@v%2Fv0.10.0.zip 578850 BLAKE2B 0403309855bbfc905bc149f1ebb375f5b7f72eb7e432c18dd91dfa220f643d9508bbb9500597ecf8b2ab6f96a71e19aa752a67999af84853a5fa55cbad8c4bc2 SHA512 2b8b9631ff73a30f6590ba86a21a77ab531fede897a23658d3d7720b24da008006178e225725eb46605b968e5678f5d5410dde24a4b10d9e0b404b53a1c284a0 +DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.0.mod 207 BLAKE2B 5b3d5ad841a5d0141a734651988d7d4fe37edf8f0452606a9368db7ab760986d6910a62c1f9fe404c02eef38f24b01ecb89da7131b8dbf29f771032bf0b26306 SHA512 a1596052f6915fbb2d54b6d5ec302f4005630d26952d42dd645a9beb62dfe65a80715a0de4bd64b04712c40fa3d67bd6ce4abd0c98a07ec0cdf37281ffe91f9a +DIST github.com%2Fmarten-seemann%2Fqtls-go1-15%2F@v%2Fv0.1.0.zip 589816 BLAKE2B 690313edcd713bf57bbb66b18922d6d6d5a94a68bd4321c910e80b69b7a2e1f8c24ebf7ca1200e96027d603578aefd02e4036c9c02229457da2998269e4cd8d2 SHA512 ae2f6c302772afdf93cdf44f51c9c7c230da984fd2ff2d48715f522f6bb5a37f7ad8129eaf654c1e2ec1f4e018ee9296fe8d3b1f73a0c35313b49d0137a20b6d DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod 37 BLAKE2B 6bd675a05c0bb6f9dc12d09203d13de115801888cf8c02cb5d609f72d214b7e7ebf13a72ddfa2eb9172e9c2ba1f3e5a040f089a86ce9fe873d49288d5f7dc5a7 SHA512 3cc3ae26618b96a0fc076b18bab6f8f0f6a1064d6a9913c1015a9867fd3571d17f5d2867d72cec008e9bc7005883a596edb21424084f82ad5b572443de90f976 DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.mod 80 BLAKE2B 60990a438d80f62d28312e2ca1f07f9ce277b9d9d52ca762201f9bdb4e9bc72bf7ae95b40f1a249126f70db8f296059bce4d7a098e82d2615186e1267e51eec9 SHA512 89a2e1340f04d1aa40eacc84c94ae2723fa34d2fc5772c60bad2d7e00512adfd5f503896aee75440173037f4d50ceaeb98f7266e80284f29ce00692d15bdd2f9 -DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.1.zip 12177 BLAKE2B f0c99c40e021ae1262064909bdbaf9493836fc860e36decf3400d1ffb385d23ed4fbfd476d5c329d74a336b26781cea0b62180420895d3a9811a1d5fa27dac76 SHA512 fb7597c396082e29ccef11a9f78963d850bfe154a400def531e607cad7b3585b1f546de026eebff6ea8bc6d00962dc4610f2d20d4e75c25d7c36915e6831aabc DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.mod 80 BLAKE2B 486156a648d66786de2a05b45b054ffbc6ccbb45ffe98230d3b3126ff533fd546af1b348fdcf67b1b3ae9310918869355fc39390a4f67b99cd7a1bbd1c6cf891 SHA512 f69ecc2e8097c17a9c0002181451d56a8a7496f62e87f437802420e9af27c5f80da2be189597759f2a5ee2656dca8c1cf91a5374b8e46919f7a6e0f9579d2526 -DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.2.zip 12177 BLAKE2B 8089c6123a976fc954dc76f74aadea87031bef339aa263aa38e80d3f3ee0fe87c58d9986b2961e29b746618617e2cb6b2cfbacb5c413acf963a2464d36dd0bc0 SHA512 54509ddbb3aecd1980215f73a53739d2f3c757daf67c78e54c508474678cb5df929a3b8e17f8d2b66438c1e78989a2268db2b32d6a0a6d5236abb6936a09ac04 DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod 80 BLAKE2B 486156a648d66786de2a05b45b054ffbc6ccbb45ffe98230d3b3126ff533fd546af1b348fdcf67b1b3ae9310918869355fc39390a4f67b99cd7a1bbd1c6cf891 SHA512 f69ecc2e8097c17a9c0002181451d56a8a7496f62e87f437802420e9af27c5f80da2be189597759f2a5ee2656dca8c1cf91a5374b8e46919f7a6e0f9579d2526 DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip 12838 BLAKE2B 668586a4df02fa2d5db174a4ada1245a463946d4bccdef2599b791414af4f10eb07f56c61484977eeb21499db7f9b46f8fea03feebbaae5511504c13e3f7a64d SHA512 c3104e921a94b1a424cbf6936e8e5cdf5823947132f41190c211e050c9c8b7135c7b319eee0667a2b958c9f4fda27b9cbad4436d37b512e269716249dbfbef65 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod 104 BLAKE2B b8d6df41ff2e8952e12f0518d455969d7a496b8318052ca37ffabc663d9602b9df70385274818af8bf1b50e70a44ade59b0436133e08818ceb385d34a3b44c03 SHA512 218110264da1c7396295627414259fcc65cc9823216d6c03f2a6d7499e17205e540821add3216ba673efda92f1e5bfbb817416874fc745ed1d926c43fdd9bc99 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip 8885 BLAKE2B a9d15d5bb4264391abb906ef4b8ec929ecf61d0bbc781ad37aa36e236cf92f5a97f2035c0c08bb49c85142df10ba129c4c1755ede5bc8ec71743300f60af3d47 SHA512 4430b33d70f0fe35d07aefd6320ca0d8e49b71689d93b49e021e1893f8f9f043f8a6d16705e5517a600a538b3f35fed8f14a69a985b2955e8b6f34c19605c83f DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.4.mod 34 BLAKE2B 55253c2475bc0169df729915bc92689eaad2908ff7b9dd81b8a553bd75d5f866c308a85fd69d664d31b0d2d373d8d52ee1701677cbebb07e361612ab8cf17f2a SHA512 00c272b4652db259c46875641b29489ecada2602e38beede8c8bd529d73b6e123bff58f8e0f8cadd2d680a6a5485aadffa448e9445548abbd2fb424b059a31e1 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.mod 95 BLAKE2B bb0de423d1270e7ec38c7ee345c788b23e2083b05e4f745832327358c4c054ef8d2f3f48d9bb7bc669ddc67796ca0abae164c1d40b2def5f38749d8ee4bd6f32 SHA512 923114bfd285393d06f681ba57db69f042f57d8cd7817a1611c7719121c812de8023a049024165e10112bda31a7f99d3bfe0d4c4f419557ba8909a2d005be405 -DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.5.zip 6915 BLAKE2B c635157b3fcfa5f9d990bc2c452c6e038ac5549ec3100b2df80b51271004f75700c9f6144ce2ab61002d7fd6eed4dc02d7928336149c7e59b7be03835873b2e0 SHA512 a11d1e71a13782e0890369c4fd52a1e29b2e8a3ee42ba97ea2b479b0c43c260c37dcc648e1625f1437769dcd0bd07f04ae502f48749745fda22f0fa16328a9eb DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.mod 95 BLAKE2B bb0de423d1270e7ec38c7ee345c788b23e2083b05e4f745832327358c4c054ef8d2f3f48d9bb7bc669ddc67796ca0abae164c1d40b2def5f38749d8ee4bd6f32 SHA512 923114bfd285393d06f681ba57db69f042f57d8cd7817a1611c7719121c812de8023a049024165e10112bda31a7f99d3bfe0d4c4f419557ba8909a2d005be405 DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.8.zip 7430 BLAKE2B becaf402e397202c86c156c3a5b7ee8f785290ca134d87cb36106a9496d18b1b45e97d306c6280c7186976a18307a7ef04d6ffa29a2e6cc2a3dd378fb400ff44 SHA512 1a7efd886840455b37b44b4d0c048b457eae14e509a740455db995e84c98f8fe94449e7dd11c544ff241e784ebeedf0f60c87838adca21fed08146fa3adeeecd -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.mod 37 BLAKE2B f36ba4b667bc5bebbf49062ee5be234891ecc0a2be075c7bf57f5e39ee7fa2657d6bc086ba9a89728468ddd0623d27edb3c357ba4e91f79563bc9747d1d9ae63 SHA512 b891712f639a850e41582c15bcb384a985fad4f8aa86ce2d3f4d2554354aa1a9619667f60837a8280f869fc07dd58dc676c222bac23aaa5b2b00c06284b2f475 -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.4.zip 22344 BLAKE2B 9dcfe0ef5fb4f7e493f29ed3e5edc8ef2744351a4e2a5b70f5a8931b503925ed58b5f5f58e3512fe5fb5fb8d2e7bd1598037f29dac4520e7d966f60ce5f2d307 SHA512 fb2bd143a0eb1be1faacc0069ec8c2d53b16b6969e6c4dd7ae4802f16606a80ff1c362712f0836b97f1453df468e7e12bb5dfabf9161436fbe9b87231f593068 -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.mod 45 BLAKE2B a7d3b1ffaf20b96cc98161ea6756d62d8380e7557859606dc7975b3de91a2d4142932d5008caf40b41d8ff2ac1ff33f672dbfac351f3e518922a036d7c116a93 SHA512 0cfd4101dd8ed90f80b7f4ce2928cd322b93855764abae65d66c5ff9888a7c8aec6ee6581c7f05d1c80db5c78003ee2afc8537fda8a3855e2349bfb8267aba61 -DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.zip 19769 BLAKE2B 0e0f4d4ad5d19d5a0c7ffec0007cb04d9703c8d27f90db5f5c5a367477bdff68feb50278ce3d9f01be1b6e44f579c15e9f65a88b0e9bfb83b4ad4beac6a62ca3 SHA512 e34dcc87f0141e505d455ef9ccb83c11fb0d4625bdef6f30ed3ed21957dc4356cbcd370b005c2c9aac25763e36b367866690682c0bb4ae4cab24b799e70f2b99 +DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.mod 45 BLAKE2B a7d3b1ffaf20b96cc98161ea6756d62d8380e7557859606dc7975b3de91a2d4142932d5008caf40b41d8ff2ac1ff33f672dbfac351f3e518922a036d7c116a93 SHA512 0cfd4101dd8ed90f80b7f4ce2928cd322b93855764abae65d66c5ff9888a7c8aec6ee6581c7f05d1c80db5c78003ee2afc8537fda8a3855e2349bfb8267aba61 +DIST github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.9.zip 20005 BLAKE2B c0f71323efd262296b78867d2b387a74491cfae3f4498e0dd22c036b20dd6fc1b6569171eebf267effd140ec009527fa5ccbcedda4f8cebab2679582766331ea SHA512 fad08292597cbd4a359e06f85bc7cc37b3d3d84b8046e47828259e36872063069c4ab17b7c89f2a5de4b5d0ab1ca5cc66cc515847a7887339a3a04b5f44e3c92 DIST github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod 56 BLAKE2B 50d2d6dc9c1ee92d629af8c9aae9fe5f70a0c6fe270a95a8232cee3c50132ef90c68218ac64a3b5b72d94e23ecbea5f567fef39a81be3d4585bae3f4f5348545 SHA512 5235188477921a263176fefaffccdaca4bf8175a2e248356a06596e37fa868400203172c7fe9fb80d0a65d335d23d80edefd242657de0eb83d9360589e063bba DIST github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.zip 44378 BLAKE2B 15ccda2b94bb024656859fb8a6968782b9a1bffb786b0b1ed69a3284b01f4a2100b3f3c46b6ebcb8f7febedb5bd4f6762fe333b7d4f1d14c700f8fce60843352 SHA512 e9349ee2a7d5e5b129ec6a1c0507854aebca82cf9ac2d0a681cac2f4630ea35551ede48e1931494362232a83dc9f26b6b4162c6114e0176084c50101b1da46b0 DIST github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.mod 29 BLAKE2B ced49475e4e8b7199364d477553bbdf91390d5969a6840e688e9d24d70afcf28ede7ef8fc09c89f23a32bfd65bc0bf9f9b58261b693e5162189e37be03bfba2f SHA512 93e7d64e25fc66cfcf514bf546e618198e32d2c35fadaec01684e9488489b484ee402efd301435eb2f725f086ea851ff0445fcdd26775848db3494795a09183b @@ -1022,42 +921,39 @@ DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod 28 BLAKE2B 7846fb7a9c146e4b4cd0 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.zip 210318 BLAKE2B 5ea827599968ec234e9ac782e03c9e8572faee4e1106a67b77a49e0b69c19986486ffd631ec3ae2b08bd5551f844a2491dd6d6821a26f28d9eaad266c6e28d99 SHA512 742af70a48adedf9af2f09e0b6c62c7baf6a155a5724bb40e730b2ee6a649e11a3ddb3d470befd723846181917250307ba20808d30ce00e9ef68ceb7f1f4701e DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.mod 333 BLAKE2B 8d0eee290f65ec90aa77494795ca379d6e0dc3c1a3e040b045309e1ddcac7623330a140fccbf829cbd32cd6788195f3446d340144d5757340734804504203f86 SHA512 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114 DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.28.zip 218729 BLAKE2B 9bf5e20fa089e56483c8d1fcb4d1bde5fe64d0905073cdb4360282151ba3776d1868b48c1918493cf46c0d5ed3ae779de0dcbd8d63f04c6c3c4d45e6ec0d674e SHA512 d4ae3b313247bf4308b61057bf729a7c39fdb4fb4840064f53589fc98d50dcbfae1bdc9a1262b9489df708ea16ad0826e90f7db7d9304e724a303331c1060cd9 +DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.mod 333 BLAKE2B 8d0eee290f65ec90aa77494795ca379d6e0dc3c1a3e040b045309e1ddcac7623330a140fccbf829cbd32cd6788195f3446d340144d5757340734804504203f86 SHA512 838358c8d40bce54c7010bf6c141e2022f2036ba91129166dbf27e2fbf355b8c32392fe8fd6edece94934c460c1b9bc73c496627b4b7efd63341d7086fd0b114 +DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.31.zip 224434 BLAKE2B 7719d75840f11f1c547a91228ea7472b1774560966f9b456aaa3c19095e9bfc51c4e8655aa0a0a02590a52f0b06c2ad6ce3c0994d23d64f5a324539d7a98eb0d SHA512 d60802ce85252ea35f932efa2c04e10ab19bb94d56e6e7c84b1c41b9a43124b9b9e082f0eaa1ac7c903f31d70da9b8bb1f537edc71c0dfb19626226860d52a4f DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.mod 28 BLAKE2B 7846fb7a9c146e4b4cd0db250d3a84bca13c7c3b8292ba71215a041006c8ea39a36b88dac7749a9bba96dc463b499633591f6f19d43369067b0f4f46594b8ddc SHA512 4ce4d3df63fbdbfe3505816e81dc7e806554d79cfe0254ce8e0228bc16eafc014c98475c24f4a6e0c6efb6fa16e891e2e47c43c9ea10ce20a95dc69f686f6361 -DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.4.zip 204894 BLAKE2B ddbeb3fd06beb22a0f700354da94c48d26eef81040bf09ea6a56d1f80deb38d510fc5e53ffec5184effe47e6be99bcc58585d8908f9b3ffa5653e8b4d25bcbbf SHA512 4bd2cf57f6d5b9ad9476320bd9391494e9ab1e69da141e00051e54892b9cbc8f7fc8bcf7c3f869371f588d4187a81cbc31bdec60202fd262bce31f50dcdba914 DIST github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.mod 37 BLAKE2B d1b7e7255c332c255ffa69e9f5e2801b5fabfc79e87d65f74215102ee4e4377d3afaf52900781613889f4cd1efda90aee3380290de613771ca8d256e4c1d4027 SHA512 d9a6048084adc484dd2dedf9796f0a3e6d37841327ec4a7a01ef0ba34888ff821b72bf6bad3d6fbe29fb9c265208e2e8fa6779c9d0d32c9b99e65de1ad5cbddb DIST github.com%2Fminio%2Fblake2b-simd%2F@v%2Fv0.0.0-20160723061019-3f5f724cb5b1.zip 74110 BLAKE2B 596141be30939245a7709e22df94d99afbf410c72660bfa6e79c2174f43d070fc52fd9682e742f4766db1645b9b9fe43a0b91b53520eac528b73b0724ebd0daa SHA512 b17105ae601242ab326d3b3c0ed90bfc07c28dc61f954cb4290078de46cc2a9ccf7dbb32c03c8fa538da77d77602206c52634fc3c6471a51acfe4351f8fa7fac DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.mod 36 BLAKE2B 3d65012cdfc89913335409a75fe4cb6f5990765bd58d38d6daafc45435effce7cf4b2533673ae724b31284d137261d3d4b4a27f1bb3791f9c6283871e43a253a SHA512 a940acae8474af5b295f2d77782cd0af2940086115fcf0b71e129668faaf76a9472767fe0633918e668e998465b5c9409fb120569b202ae5ff1644416148a8db -DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190131020904-2d45a736cd16.zip 88474 BLAKE2B 4e3d2cca8ae276995c9eb855f2f399bf117a46956d3c4a5361f6e8386fb682e01f15b60e3aeb927a29bc4c06ca7823897213dfc205852e18057fc14e64680c82 SHA512 a62f8ecac0d426339566588f649a1fb56d2c0e9dc182bb90fb49f1cb63e9bc3a7884b4402fc05dd3de3e54ad4249ad99a49b34dd7f6018c223c92b924aaf9ea8 DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.mod 36 BLAKE2B 3d65012cdfc89913335409a75fe4cb6f5990765bd58d38d6daafc45435effce7cf4b2533673ae724b31284d137261d3d4b4a27f1bb3791f9c6283871e43a253a SHA512 a940acae8474af5b295f2d77782cd0af2940086115fcf0b71e129668faaf76a9472767fe0633918e668e998465b5c9409fb120569b202ae5ff1644416148a8db -DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.0.0-20190328051042-05b4dd3047e5.zip 87803 BLAKE2B 9e267be98317a513266d2ec8877292dfd6e69c7407348ffcc08600ce630f0685921242160f1a907e52fb0cf6f25f32a669dd33c222e31f7cfd2e50fd68872439 SHA512 b9e408641143c43f16531c9293f204af35856460c9ffbfa1415af937ffd247ed7d9b2f4c622fef24e8ae44df4a89cb8c5189e4b9a123d40bd2a017dc5d94dd8b DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.0.mod 36 BLAKE2B 3d65012cdfc89913335409a75fe4cb6f5990765bd58d38d6daafc45435effce7cf4b2533673ae724b31284d137261d3d4b4a27f1bb3791f9c6283871e43a253a SHA512 a940acae8474af5b295f2d77782cd0af2940086115fcf0b71e129668faaf76a9472767fe0633918e668e998465b5c9409fb120569b202ae5ff1644416148a8db DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.mod 45 BLAKE2B 4868e4a4afda265cf4dd2e7c5a25657237687b3b1ba21d24f280174a05dece76ba902c1447586a7c632a961b8454a1d1c8a0e7d523fabcbf98dddee26d26e341 SHA512 2341ff459cb2432feff920048aac90868260d97c5ff68724b0b7e22c8e5c65da2b4055026d74578983020e24506d2f064e47e3fa247a4560a37951e205cd0a15 -DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1-0.20190913151208-6de447530771.zip 86346 BLAKE2B fe9d6331c3a89de210122afab9d4d9f5efc60fac9d474305bb219b312db7dbf64cae8f4bb62c15efbfe5c81b74ad9990f193847622c7db9cc50492b5a2a4e5e9 SHA512 44d8c106ffc8619a52a7190c8302ec055b8a9a66fb181b315389e76ceb0ba7c7a648b67b3f810064f74b6465fd3e11c9af65afc4f555b937a262e3c61a8faa81 DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.mod 45 BLAKE2B 4868e4a4afda265cf4dd2e7c5a25657237687b3b1ba21d24f280174a05dece76ba902c1447586a7c632a961b8454a1d1c8a0e7d523fabcbf98dddee26d26e341 SHA512 2341ff459cb2432feff920048aac90868260d97c5ff68724b0b7e22c8e5c65da2b4055026d74578983020e24506d2f064e47e3fa247a4560a37951e205cd0a15 DIST github.com%2Fminio%2Fsha256-simd%2F@v%2Fv0.1.1.zip 84306 BLAKE2B a22f077e8a63a951ca47f6d62a6de017245ae81ad57f788996c9efc722a5df7bf3ef9cda993ac8c524d75a95a2218732471d46d21e8bfc56f324ed8b126ba1ff SHA512 7732e181c4a620e81e77d261addf74c7d7edaa50fe41f13512124650a572ec258ebac8a4144bffa3107115f9c65968cc67a3aa5de8c8dbfffbcffceecfccbc63 DIST github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod 39 BLAKE2B e28ca0cdd6db21c4b97e47151a6c11487314f26d5a259f9d7f5581f3d92648a57d931e1d6b004597f76cf10916fbe14728c99192e24b6da674de2cdc9cc4e78e SHA512 a2b7ed5a25e6dcab620357d5c216546bdb554edbc6fd927a0703e788d7e7a10a743471d10f5c7cc56ad829ab35c7272c61d210e55947363447832e924844e9ee DIST github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip 4163 BLAKE2B 7e00360086a04fb62a46ba20a10ac3460b364aa6ee09bf46f9769980c086db04aad45c4cbaa809a218f207c086876678d708a74d0a7679a48cf62b0b5edd48b7 SHA512 06bd620730c303df004e1d6a06a1aab8d83551d594c28e42f8d43613153ac28e6a5dcffaede69c84b2b49027b62581851a332f1397a2d6df9a46078510f7d1e2 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod 41 BLAKE2B 291f73049327af60c94a2b2113b8e370f90d2a3fc7074c58ac523ce2a613ebada88ce048a73cf882c68ff552dd6df0be42f796f4ed11a549c0b7ca6c67f61c38 SHA512 7816e3703475601df65f20ad4e5d1f6bbedc4a7c87c594518358c1a9c24421aa5ccb6e8389ad983a514a823674c6f0f771f1f367b10d99691dbd8db7105ec44e -DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.zip 25943 BLAKE2B 9cf08441a9bb45da31ac429a372a969a822a0c5de569352bc25403cdc3e8559a7110dd2612cc9b93c91882973aefdc70f8ddadf44c1488eb0c3f5bc62cca2b73 SHA512 43d57d9ca99ee6af49e8a39be4d65799afccc8cb077a8c5b473a9147eba30d4653a8a4cb86abce66d4c8639d1eb0d961c4a50907ce9af2b2864acb615a2ecfc8 DIST github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180228061459-e0a39a4cb421.mod 39 BLAKE2B a4d082021123db99b5d72a1d8d0011a517a79ff7b07238f0f01e550be684f18be03907b6280e673aaabee5ea837ce14b9e4daf278a23605c8dca8fba76bf40ac SHA512 4f29e15b1d18a8952c14f5142aa863b77b7be820129512cfeb3f8bc3335ff637a8a86c0284832a20543abc2c5351a3c0f992d52db895385e45f176af899b5844 DIST github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod 39 BLAKE2B a4d082021123db99b5d72a1d8d0011a517a79ff7b07238f0f01e550be684f18be03907b6280e673aaabee5ea837ce14b9e4daf278a23605c8dca8fba76bf40ac SHA512 4f29e15b1d18a8952c14f5142aa863b77b7be820129512cfeb3f8bc3335ff637a8a86c0284832a20543abc2c5351a3c0f992d52db895385e45f176af899b5844 DIST github.com%2Fmodern-go%2Freflect2%2F@v%2Fv0.0.0-20180701023420-4b7aa43c6742.mod 37 BLAKE2B 3643a4250f81729708917dc751cbff6ab6e37761ca94784062a4eaf243682a9e2c755ce793024cba1737d0eee1c52c29984fe3008a2471ed24a759da87ec7081 SHA512 72fe8dfeed7041bf92af829dd84513f0c97f709d69586a044f830fd3de43deb27d0b02000338e00897a44c57806ad036cafcdb9661b1852ff76886ad92bd83f9 DIST github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod 37 BLAKE2B 3643a4250f81729708917dc751cbff6ab6e37761ca94784062a4eaf243682a9e2c755ce793024cba1737d0eee1c52c29984fe3008a2471ed24a759da87ec7081 SHA512 72fe8dfeed7041bf92af829dd84513f0c97f709d69586a044f830fd3de43deb27d0b02000338e00897a44c57806ad036cafcdb9661b1852ff76886ad92bd83f9 DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.mod 33 BLAKE2B da4247632d66672554b324ea0d72361bbf87549000c055de8757e7b179a58fdc0e109e9705114204cb810eb30c9c451afae31c49e43558ef7b907cc32eb4673a SHA512 56aec1c287c16b6688d3bece372a1c696eeb7b1b19f68196967eea91bc7fe49b8b858a76deeabc0af4b636d4697eff141844f7b9543dc0cb860e4703a4a9d489 -DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.0.zip 13092 BLAKE2B f3c2eed9745eb45ea4b43e7986a314d3ba297a6a15cfff7a8c1d945a08d2361d7a11578610a761cc8f641c72d5706825f7e34c3fe70130935c17bade6d11070f SHA512 75afd71886abca062f3215467f84f233603e315a196be7e5eb758025afcc1aa1706d9f8849ca45816af593d09e6dfdab21ea39fd47dd4b32834e290c4b4c9f1e DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.1.mod 33 BLAKE2B da4247632d66672554b324ea0d72361bbf87549000c055de8757e7b179a58fdc0e109e9705114204cb810eb30c9c451afae31c49e43558ef7b907cc32eb4673a SHA512 56aec1c287c16b6688d3bece372a1c696eeb7b1b19f68196967eea91bc7fe49b8b858a76deeabc0af4b636d4697eff141844f7b9543dc0cb860e4703a4a9d489 DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.mod 42 BLAKE2B 8b6b5ef5a28ba690292225e5a1a0df3d33db308148735b4447c6d6048c53589b9ac0cd9b96fc8f9498814ba1f7674166641b398f587edc5457e289f8a370a71d SHA512 f49084ffe1c559c559a4f1a27480de073d17ac4aaab2f6223c23c80bc252520504d8a90d39945a59a28e8cf349cb93a1c15da2c6de4ade19b19d812e72c94465 DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.2.zip 13264 BLAKE2B 5a98270e8209feebe90c7c22f05c1c5b61702508d14baf6405e30f2285452a86399c7dbf2deae0fa8548ef58e47d40304c25b2250413fe2c348e573bbc2d326f SHA512 47138e83b371bf33f982201143defc095680a3b45f494f8bcce6fd9f3424041e724c55d7e03465217362ddeedfc9667c9d563603d1ae146e3e9f51d7ae4e7d91 DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.mod 42 BLAKE2B 8b6b5ef5a28ba690292225e5a1a0df3d33db308148735b4447c6d6048c53589b9ac0cd9b96fc8f9498814ba1f7674166641b398f587edc5457e289f8a370a71d SHA512 f49084ffe1c559c559a4f1a27480de073d17ac4aaab2f6223c23c80bc252520504d8a90d39945a59a28e8cf349cb93a1c15da2c6de4ade19b19d812e72c94465 DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.1.3.zip 13725 BLAKE2B b411a1dc291595a182806dee05ef19800f0c6b098d7ecac4baf3843b2bdb29b874e3bd1326e2ea647718f9e58cbba2209ead2f423cf7889f6443e79fc21fd123 SHA512 a2f3c0f4bd6ea780f167b66b19d81f99b10c4df08baef04f750919b3a0ddb17fc7334be8dda160c8a2f74203b6195b9978ac883b673105a2a9d5edc163c68f4b +DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.mod 42 BLAKE2B 8b6b5ef5a28ba690292225e5a1a0df3d33db308148735b4447c6d6048c53589b9ac0cd9b96fc8f9498814ba1f7674166641b398f587edc5457e289f8a370a71d SHA512 f49084ffe1c559c559a4f1a27480de073d17ac4aaab2f6223c23c80bc252520504d8a90d39945a59a28e8cf349cb93a1c15da2c6de4ade19b19d812e72c94465 +DIST github.com%2Fmr-tron%2Fbase58%2F@v%2Fv1.2.0.zip 13770 BLAKE2B ecc0d9203b213c3be0eab310fd93b425af2ccbf0f195f6ea31ec216c7d6addf800e20c1805d75e652e2603dd5330469990f5a416328916daca29fdd53b1b95b1 SHA512 f92d1f2f49ecc754adc3325eb5db5a21163774349478e4cc0c39a0658089943b23c406eca21f709bb462af54082cdb8772abb0d8ff5cca267ac671492298bcd7 DIST github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.mod 41 BLAKE2B 09de16704a78f75375b0e8bfc8b33935292b4c092ce4f52a83da67487ae22cbe2e8943579d764b27f9c939aa71c522225b0bffc7a3cfb63fc33574e9e9a30932 SHA512 b4e161d4785471e76d71bf2e0543088197997cd7516adeb6e24e4d25c0759fde8007339e5f596af88cff2c96954643171fa73c4ad60bbfadef8dc206676705ce DIST github.com%2Fmultiformats%2Fgo-base32%2F@v%2Fv0.0.3.zip 10550 BLAKE2B 991c6c18d52ebe0b188d94f317fde75794dbe5f615f760ae5dcdf0fa89be849d9e8adb47bcf5870cf185061a3310651a3d266cf110bdc1b91337c165f2152bba SHA512 9ba5591757b67ceb2b3ba7d2d399eafcd4860082a59dd3da6e510ac97423bdfc89be313e8cf2f40cb5e46ce65118c217649460cca41227258f8035b7d284431e +DIST github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.mod 50 BLAKE2B f3cac25defdd4556d7bbf4e9f74d437a25c60783e09dd51e8e292e2e58c6d3b3f600ef74bc9548384274d995bd6cbac61ea592296417de6ac462bc1ed0e6aeda SHA512 60a818b00bc4d358599253aa2ff036506d2e8dc51aeb0de86ff1869ea573d5294faacdc2dadd650b1fea4ded8ef6d2a28cc0b06d05d8df7198ad193ca697cca3 +DIST github.com%2Fmultiformats%2Fgo-base36%2F@v%2Fv0.1.0.zip 4867 BLAKE2B 4ddb2c2aa16cabe016612e6adf7384754dc6b989e4d38f8e1391f2119c4b1bf5e4a5d89246e250b44e032cdd8399dc2381999ac97b824146f95a828dfc687b63 SHA512 7b57efbd9760727cd907d460ea26bd74b9df3c85a8166fd4bd76ce0aece236bd07da6ed5756ac96de191bfd5358965801cd0cea4d20d7581492bff6cc7ba557c DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.mod 97 BLAKE2B 866cec73577b960da5d69c5762e6d990517153a2fcbd66d605ea9cf9c3f2d2697d543bdf9169f8620dbcfd4c294f4259497ddd96231917d57418a7465b4a2540 SHA512 2fa04779ba9de4d3dc921fdc365f220bb8cfdea5ae5e4882929f4e9cd6665a5c20bfaf14fb7d99765275e55f1d7597264d5a44e7d4fc91257d16c5e6e54a8809 -DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.1.zip 24573 BLAKE2B 72c0c898d6965cec6ed156fabbbe434b0a269ffd525ebb1a85b55c2e5e266a369b3338337f9c7225c888fdfd7ebac556f165110c3861621e4ce77806da3455c1 SHA512 dc32fb5cb8e3e328bd8296179ae2f53288751663115e37eddaf68277f02dec0b7d0ae9d759ea876c2850fe53e6e098e5ae835595d9bf039686feba8dd12e27f7 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.mod 97 BLAKE2B 866cec73577b960da5d69c5762e6d990517153a2fcbd66d605ea9cf9c3f2d2697d543bdf9169f8620dbcfd4c294f4259497ddd96231917d57418a7465b4a2540 SHA512 2fa04779ba9de4d3dc921fdc365f220bb8cfdea5ae5e4882929f4e9cd6665a5c20bfaf14fb7d99765275e55f1d7597264d5a44e7d4fc91257d16c5e6e54a8809 -DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.2.zip 25244 BLAKE2B 242a454099b4a97cda7de7bb4fe420e89a2fe7ac2b6fec5af67650c4f2a01dac7c8c63819d5688c10e108e3be3a67d8c87d151276cb1ec9a76f3156a5aa9a733 SHA512 23dba5464fd901cd42118c5c602187ea79bf6191a88eca8117115e2929dddee22e35bde063b03c76d0169d1e3fc4d37570010d9dc5ada541fef621987ef7688c DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.mod 97 BLAKE2B 866cec73577b960da5d69c5762e6d990517153a2fcbd66d605ea9cf9c3f2d2697d543bdf9169f8620dbcfd4c294f4259497ddd96231917d57418a7465b4a2540 SHA512 2fa04779ba9de4d3dc921fdc365f220bb8cfdea5ae5e4882929f4e9cd6665a5c20bfaf14fb7d99765275e55f1d7597264d5a44e7d4fc91257d16c5e6e54a8809 -DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.0.4.zip 27445 BLAKE2B 5997445a012694d521aa1d2baa152b60e57554894955f4750e40c394ae2491919baf4de8d9542f14e13133b9f84f92dd22064cd791c67fbeabb369b534221680 SHA512 2a6f0f0cb4443cf738b742102f5d861bf5c234eea417e92f601ed396471157153feb20f7b6aa5732726d0fef2bb60244dd0e7678136ded5587fc34b74ffa07e2 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.0.mod 97 BLAKE2B 866cec73577b960da5d69c5762e6d990517153a2fcbd66d605ea9cf9c3f2d2697d543bdf9169f8620dbcfd4c294f4259497ddd96231917d57418a7465b4a2540 SHA512 2fa04779ba9de4d3dc921fdc365f220bb8cfdea5ae5e4882929f4e9cd6665a5c20bfaf14fb7d99765275e55f1d7597264d5a44e7d4fc91257d16c5e6e54a8809 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.mod 106 BLAKE2B 2ba71241c36fe02cbfcaad9cc4413fbdb49dfb0ecd72b3478fe8367c3d0f0248aa6ff85264b7811e61083107d36143ce4d840cdd9c9bf9e5e0be3f1854a0a684 SHA512 2bdf82ee7949135650ef0561e0f76a45c7490742a3aaa71324048084677134ce3f01138b96eebb3852beebf5c43238c05afbe402a93277fa2f0f058f4b3a7cca DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.1.1.zip 27810 BLAKE2B ac3d676c3103f0d74aed558399f172a34d8bcd1c34bf201bd7fa7152df018699a805c5ace19ddec32948190f582cb3baa3b755f2cf85bbd72e9aff2e174ade55 SHA512 169b3b5491a240c072c284a6b6bacf016bb8003adaface1159d38d6ab309a594303af329e00ad8dde151ba1634db33d987343707781e6e02eac967b37c1b75a4 @@ -1065,18 +961,20 @@ DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.mod 153 BLAKE2B d435 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.0.zip 27319 BLAKE2B 1b419cb32cf1d240621ea39f4172882a9354e29116a2abc7c77c92f28234b3a6b7f5643964e09dfd44b1d067bf8fc5f4b7b2360310005bb3504d7ce48fdaeb65 SHA512 f39b728ad41338cc58e37d2b72515f2063b0a36d7a89dec8a8198013c3c1b0c2158ed201e7104e4ac5ac3717c0a3594c03de133d22ebdb904846ef441d7e0bae DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.mod 154 BLAKE2B 712d84c019009e27c757eb2247ed7cd4425221666f3a1fa15f59162ceb5de0ea589fb6e4886cfc5a4dc03cd48afe9761f44c2308cf19fd59bbc41fdfb1290688 SHA512 aa329b170abe104e900c8e6a43b4a686d14b0b6602245dc16ba24afb5e217e29b49113da2c63252cd49b2c32d0252968540108329205a7cd182400c672523802 DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.1.zip 27595 BLAKE2B 4517dc62e6867a99f1b671f488e3a51fef15a6d92757354e294a3b03a4d4ddab28255fdf92c42a2636482a04c4293cb244fc3b93b239863dee4fee4e17cb2b02 SHA512 f1a92ab27bb09040e2bf4604ae4f2935a384fdf70466a799aceab0e95f9a3ef39a816ad136accbec5afe79c3b62ce1e937fde7cc084402010a1a6599df2f208c +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.mod 154 BLAKE2B 3a32e31718ea5c91640cd0c8f5481b72d506e7bbbc2acb5c11491b965cf83ada96f77454a5c4a0a1686edb78c950499c46e52c1bb84f6f2b89980fddc3549c36 SHA512 115538df200d13bf498fbfdc86f25414dd52b665510c91188b65f90df4023b5198f457a732ddcf6105c935e0ea2aaf58bc072e9fe206ca0599264c60b90dd480 +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.2.2.zip 30396 BLAKE2B 63c8aed9c99b0f5308e86a91506d1c2a260ffa700cc416fb66ea61533264dd45f0eef87091e218586bb7fe45955b4d3d4c29a913083b4b8fbba313623c5e4058 SHA512 1184df683f41b30a58eb195ddf4f994f2346e3efd34ead1d6c4af87c29110a5996d2b832072b1aa65e48cce849fc61f1c0eaba0c81d3c072c29b5cdc9753ff88 +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.mod 185 BLAKE2B f3b1d3152aa166c874d1ab23ba849eb0921580895a0e06d602c7cf29f0532a0e170d70129263f9c79d97ade3fc2d286ad61a7744e387d0006dba5d354dd5d37c SHA512 39c8b46c27992c95a6b8a4419bff2f0c206fad585a670211f00e31cb3c4daf9f21871628df4fce7ad1e958aae0ec40d2cdfe57e160d28c6b8ff1e38a73e6bbc0 +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.0.zip 47275 BLAKE2B e78b6882473da9b1eafd76ad32066abf8b1ca9b80a45e610073859755f8e2c19baa08ec7ddda06a11dd183634335330352ba524c58a78850a9b0d5fc96e868c9 SHA512 52fffc11d2ab6c57829456df7c9f81d9887471ff6d86ee833f1c2af8967b2de4aa5015168e47d51f7813c201d9479b3fd6864ac4d11245a64eb7b2b97f3533d4 +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.mod 276 BLAKE2B 6a5f20f367f43be7df9c2e6e1df50a730c9de33f5554d77f8ab7cb0a61fd9d9900312534e7ef5bdeb2bce2f11d8b78a974c256210f498c6e05a3e75d5c52aa6e SHA512 9de3f9a7c1b47859fbb83768d20013ed5a2fa120749494188cafb6ffc0de09dc8fc904b60830e572833254b03575c45805a2638b46fb126f861954189d5b804d +DIST github.com%2Fmultiformats%2Fgo-multiaddr%2F@v%2Fv0.3.1.zip 48597 BLAKE2B 67b072e997019fc27fd20284365393da0ffbd1a21525f7b88a153d7cc7953a1f1713da8ad99e3baf6f596cf8329f75db690c7be23b24a99c65aef4d15d3a45bb SHA512 2331ac55119f871f63c1d9a9102a28da14ee60be5094e989db3215e60a10827648155d8aa129351d166e4e1c6b7fa0d70f9f8fc660594e47ea0c25b6e7c9195b DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.1.mod 101 BLAKE2B 6f73533073bd430dec3c70b907e4b9dc8506a97766397ae73a30f7983f91cb82371775dd0c639ef6fa1b981943a6fa1c229dab4fc46a429d09013efb70cfba4d SHA512 470b7a4c94acefd4fdf609876eb86b2f7ffa3ab7efb066dd5926dc9c2ea383620a0dbfb0e75b512bcafbd8092c5f6c00399934151dacce9d741e4d25986d7d97 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.mod 101 BLAKE2B 6f73533073bd430dec3c70b907e4b9dc8506a97766397ae73a30f7983f91cb82371775dd0c639ef6fa1b981943a6fa1c229dab4fc46a429d09013efb70cfba4d SHA512 470b7a4c94acefd4fdf609876eb86b2f7ffa3ab7efb066dd5926dc9c2ea383620a0dbfb0e75b512bcafbd8092c5f6c00399934151dacce9d741e4d25986d7d97 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.2.zip 8596 BLAKE2B 4bf9895e8ec8810fed82e153711d3fe7e451b2945a161a39ba459758793e6c54ff6b50cf3b9432ec4ba2aa78db40d096cd08d32db68cd47cbcd475002cc22f45 SHA512 89d0f0cd4a45acea8f29149dab92acebdc37e8677f50cd5ec26e3b3a7cbcbe830362f50474e8f643ecfd0d7d6cf07d8e431fcf73dce17018b9f99d69e49f66b7 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.3.mod 101 BLAKE2B 6f73533073bd430dec3c70b907e4b9dc8506a97766397ae73a30f7983f91cb82371775dd0c639ef6fa1b981943a6fa1c229dab4fc46a429d09013efb70cfba4d SHA512 470b7a4c94acefd4fdf609876eb86b2f7ffa3ab7efb066dd5926dc9c2ea383620a0dbfb0e75b512bcafbd8092c5f6c00399934151dacce9d741e4d25986d7d97 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.0.3.zip 8645 BLAKE2B cbb49c5b9ec2180d51a1b897fb8f1e95513394f744e846bd163fd0719abce29261ead817e274133deba239cd4eefb590082695cb9df2cb8aa195fc053bbfcaf8 SHA512 0fc361fb99421eb30962f9b78dfdca0ba48e52ac6fbfaeb56c76962098199b08c4055d61e14a87c5ab15868d3f58e9ea7a02c976bb23d8a22c958e38a07628eb DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.mod 110 BLAKE2B 8057f4cf068446b03776ae38cde380b17966ea8f64f00bb33f1a7efa0c5ab24585ec3a283f8636f4ee96c71be14aa8d1d6171ba123a5505d99243750e7b3721d SHA512 b08b53b3b3f8d10ae8c169467f5af03c475033054e66c74b2991248c5d4d9425549b067a68b07105a68becb989829b3f1f6b960f740bf219c65696a8b81376c9 DIST github.com%2Fmultiformats%2Fgo-multiaddr-dns%2F@v%2Fv0.2.0.zip 9550 BLAKE2B 093e34422abe509ee4f3212b4f001da76e0777feac027ffaf6cb8b8a15b0f317f4654ef84796fafde55f932f00f12d3c7f3cbd0d663e6a0736c5205698b021e8 SHA512 307ee3cb563493a2e65528831719cc06f563868ffe7a24528a5687bab22cb959af2486d229e71c0811f2e1f15d373e010f9e3e0b146c2a3b930065f12fa93c44 DIST github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.0.1.mod 155 BLAKE2B b844c33eebc4c53e21a9fb4c96d33a724d8fa5253b2b8c9b1f3c464e1e53303d1cc37c408419a2a7affe33121ceff5e18082d1d103d8725fb3b911055ae2b610 SHA512 5c2b079767ca6dfabdecd2e5d78190bbda5a21d13ec1580a226541eaf8a3d8dd32befc182cbe9e46c69070e0ec1012cd163444ba7ffec498760443a22b15232f DIST github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.mod 110 BLAKE2B 9a662c95ab46198404d8a13c48f4883899c3953f0160e630f02206f5436936e1ede4fcae6f12ac7e56e9240300c2a77fdca8e25ddc14384753bbbb43d55a932a SHA512 128a9bd512dae3f4560bbfb8042769f7167877777807e6141181238f8e14dd8d2540df44f99f12cdc293f2383a4288ce388ccd5634f4fca119bb4ff98d92b162 DIST github.com%2Fmultiformats%2Fgo-multiaddr-fmt%2F@v%2Fv0.1.0.zip 6565 BLAKE2B 73b4282b1940372464eb833eddc614ad03b98604947eac942d923cb404a78edd1860a9b4d51a6f8654ca64750296486153f0aea11a465c323d83d7aba0bd5e32 SHA512 e10144b85a7c15a8d85f57f6cb7fbe6316e930b8c3ec40383c9f6c72b439dd7759bba1689ea7d109c3628c6e318035e06df6532f6a925e18cbb2510a03712262 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.mod 155 BLAKE2B fad7444d7893397163b4cdea593df954a4a9929b149c6855b5c15f75fcf6fc50b34964a557778a4f0903aeefd1fba3cacb7301eb6581dd251569ca566d8acad9 SHA512 923957a0ade68d712e5f21efb00901b4259b31e60f959a40b87236256b5eb34988a36187e60a3acead41ce7d91d2c3b01dc380042550af4711b44227a674a199 -DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.0.1.zip 23274 BLAKE2B 03977851add173ab7b0f8ad79e0c35b032a9352ad9b5c99db1d452dc9cb4e11fa0e49c72646e203356d7b29e54dc201d1b32971bd4aba149a9ab28660cdd09ec SHA512 95a3bb6bb48368311d7fd6227b0e38df01d497044cadf39261bdc85559ecf5854e90358ec3baf6e00665f359ac0723a31c1890eab879022ebc420080edb2eeff DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.mod 110 BLAKE2B b54b2cabf9f8fd1eb0763611b291e6939bda0259842ac17f7bd54d6d2018b48055980489c061c571813098a426bb4f44beb747a654ed495d6f1c8200d11b4374 SHA512 7517cca34434d31d5731a656da8a336667ab4c4e49c9392a76f29e562c06225ac8bc314e4a21ba5cea1b0aca0a57a8bb03709ab4cc691422164ceb22281bd992 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.0.zip 22441 BLAKE2B 859bca0ff124b9bbc9f9f0d1037be23a1f64fdc5786b5e72de8f363bebdcc28987820ca28190205c4268cb8bb6c39161bccf9ca6464cbbc0d23dbcef8283dae5 SHA512 ea309d602bce01fa7df08d8545f68791cfb7ad0d619bfcd813a19f87993216a6ea41d7955554c7a3484d67acd4a572544e4f3d26e262ed7719f3f1341b3a085e DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.1.mod 110 BLAKE2B b54b2cabf9f8fd1eb0763611b291e6939bda0259842ac17f7bd54d6d2018b48055980489c061c571813098a426bb4f44beb747a654ed495d6f1c8200d11b4374 SHA512 7517cca34434d31d5731a656da8a336667ab4c4e49c9392a76f29e562c06225ac8bc314e4a21ba5cea1b0aca0a57a8bb03709ab4cc691422164ceb22281bd992 @@ -1089,67 +987,72 @@ DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.mod 110 BLAKE2B DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.4.zip 23516 BLAKE2B b431746088f618d0c36bc0c47c0f09c3aa3a47566d9a64af8724d8167e9809aed32a95e18bb2bf9d89e15271608f7fdaa46ca8528243f887de65cef2eced6d3d SHA512 d3aad46f559db16a444563ece26d84474c23ccde964ef921aecb28bd2d5ef6ab7c933587353be4024977e79f537528c3034fc9342ef11b79bde88eaf75c7a147 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.mod 110 BLAKE2B 6e509371afd193bb7f9ee226f345f4c51ba8d37803aa2c13cf90c1531496cee59993dd48db44a556fb37f84218c22f05241a80f75ad4ac3948dd4131c08255af SHA512 5abb8d3ef50ba4dd28908e545165773b92dba58295fcb97e1a4b263d9f960ee19e8a0c3e5b011ba7a14ad38c9c1ae1936cb4c30f741d588792abd1f12be72723 DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.1.5.zip 23569 BLAKE2B 443bcd85065b230a31ce2e2214002419c8f78bc1350c5e8d23d15139ef10d788c90990d69b2e7528da9192968c02c0fd470ed5afa4d058b0061d8beef541cf37 SHA512 98219f79afa1682b48ace99ac00f9584c8406c46db687b9bacf6327e0b4485c25ef3137efc6ef46f781a09b7fe4eb12eb9adcf3130c27fe3411ed9898c6cf46d +DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.mod 110 BLAKE2B d517da320a019bc947bf655d2eb57b2047affb084f2291054373eaed241e1dd15f911f0c43a0ac64055da2b1975245281a2424f2848c9f47ddf37b954b16b7ea SHA512 75538a837de6b9253cc4210c5ec0463eb21c3fa39f3010a7263e4e6f13af6d301408c722d84ce1a8fc9607cdf6bc6f4de46d32965812b752537aad91f9904169 +DIST github.com%2Fmultiformats%2Fgo-multiaddr-net%2F@v%2Fv0.2.0.zip 10746 BLAKE2B e8764f0b1c82dbe58ba91b917161decf653a3bf005e3d2280fb629a2027bb1f0c06c0e6416cdde42dd0f0382041001fe1d24ed3637b113ae75e4588bc75e3882 SHA512 bcd7f65c0d8d352b341589f07153aecaf6e0835a247aba58aa2ad286210c0295403edf3cfc857e048c478727fdf359ae99cd2e636aaf2b1d05287d3b8b2fe99c DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.mod 133 BLAKE2B d030369d62f597bfbda78d6e3f47d0476fa5debe2e46d3df05bd85f8bd0baf6282a2642c6f69857212e51f7c100ac14c4d5c72d608f684d0c664a4b36350f486 SHA512 c29d62c16dd537b9d8b35bc612d6cfd9dd55218427d0da02be811c52d5fab6fc087c0296fad907375bc8172dfd7467790b1dd9019013b322ebe135453d4e24f8 DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.1.zip 13828 BLAKE2B 8cfadcc0a9304ab00ae0aab1a98c08a3219f1a3a4cc6f781c12b068c4a0b680dace48e6f3b804814604f0e7a8067378a399b2f18d436a3d38991e5f47f7b2af7 SHA512 859174d8a21db1b835834a81f0627fc47d539c2e2754297ab5eae57bddf9cf17648504c3992a06ee5203cc4209d2943c147602b343b6b94ffc36121efc15910f DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.mod 133 BLAKE2B d030369d62f597bfbda78d6e3f47d0476fa5debe2e46d3df05bd85f8bd0baf6282a2642c6f69857212e51f7c100ac14c4d5c72d608f684d0c664a4b36350f486 SHA512 c29d62c16dd537b9d8b35bc612d6cfd9dd55218427d0da02be811c52d5fab6fc087c0296fad907375bc8172dfd7467790b1dd9019013b322ebe135453d4e24f8 DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.2.zip 13822 BLAKE2B f6446b0856adf628b4361869bb2ef12f72e93573a29328f6b580561917931054727fa0788193d1e4895f64d9f712f6673511da6b537e78bc4e6f1c74e8efa2e2 SHA512 b6161f3c5517868e5e15fc5300293fa598ebc591759cedc6f23bbddbe6fa2f00f254fb89390975c6bbfbea031c9d5c6b8545ee4282891b66c39029d39acd3904 -DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.1.6.mod 45 BLAKE2B f2524107c1305e0da48d49a76b20784ab3a7c23e988127b0dbd31f0b9c0fc5131dd6059454c861ed3b4e02f0024f351843f3282f6b94ecd0f1fd87d10619721f SHA512 c49d032e3f7cd6d4fa350d3f497dc48b89266464597e97c06e85d47a82379953126ebf84c831b30682abf9df93f027481d6b453110f88bf8cf41592c9e78a8ee -DIST github.com%2Fmultiformats%2Fgo-multicodec%2F@v%2Fv0.1.6.zip 36598 BLAKE2B 820aa3eb119315e3eae7c911a25b4584ac298c9ccfd05dd10323e911db5486c40f1b070216c6d34ee5176da2bb3c77911542ef49d1295c964988e7cd858ea9c7 SHA512 3cbcd6e900cf0db402708cbac63474f5964c64c673eb0f859bf7281ccfefc20562412c5137be20bedebf18eeb388c63497fba883254c513b45b67ec913c2de12 +DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.mod 184 BLAKE2B 7b8169b1cbccd4778a779bacf5a92152ccf8e3736345ec19ec80e972837a01d4edc6d975ddda2f0a8293c6ad5087ada9517e30dc2b208596b35fc7232c4f98a4 SHA512 899ec024a514d6010402dd9b4a21c0171a05972bf5ab0e59bfe3159c90482018d6435449c66265adf9caa9729f7fcba424907a1b00d3cc2f8a528a7f3cd39586 +DIST github.com%2Fmultiformats%2Fgo-multibase%2F@v%2Fv0.0.3.zip 13825 BLAKE2B 941e4e5adc48a9178289e5679448da4a610e8d444d334bd752e12ccb7dab62a67ff648aca2a6e7d11e7d985094c71e785f322ddc557fb62967323543d80713a0 SHA512 93b7e6acd96d63796e3aceaee6cffce03bacb90bcf6bffb480674fd74be5441438d8f8deb5b9293e8cac737a73e502b26b7eb98a254d2816d436d3bbf7779113 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.mod 426 BLAKE2B 0207d5b80ab74fad18f34613a9fb5489b10aefddd7d6aa8d3e0172c7c6bb586c5d7a917d034396e67f91565f7898bbf51b649266675707d0ba2b06f3a50b19d1 SHA512 0c2611faedf5e01cd5e240317b241ddf92a00c4b7b138350cae3b145053f2fc4809b8753de3be3ab0015f188a41e8b69edbaae09f0547406b1f64e82ade20548 -DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.1.zip 29148 BLAKE2B 43d9a6f48e10c5b3db00da6dd7f85463e886308bc9938b3146fba410525149109ea4b2d115f1c3bf00b850205f56d861caa63fd97454888222e8720223d24afa SHA512 6c1d4e98cf0cc9ddb829581e5f3901d3d46338c92ed9d9aee113df6e6641affc4c46130a35843da25fff8fdce882f234c4b81c33a4506924b345bc0c92cacbbc DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.10.zip 30701 BLAKE2B ddf6a188747b9d36ea6bef74e63e34d8ef58fbb1833616b1d7363787df520aee84f045d8d831a008cfd00253dd93e335abf08ed0a12fd4f1acdcca756a8b625b SHA512 59ce1403547ea259173e77709e6408b02a256c8ead0f293dceedf1a9c32467fd176c69c5aa423005eeb1fa6d3b57134da834065f1a5f42b2b189670b05ac5325 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.mod 368 BLAKE2B daa5e79c1d6c337a47c6cbb95fdabef6b577f942eb9203581d8a2c762ad38db7d354b55ade753dce15d80f58b10eeb23ff000442ce282f08e33d9f2c37ec99ff SHA512 f4574aa23fcc101f579ae9dd73b8fd6087a2730b8d9377b4498e6deb556e2edec1068fbca0d8720cb50b3cbca0b250bb16ae5458c14865a0c27104372cd9f900 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.13.zip 32440 BLAKE2B dbf325756117d1690243647f5d96b7ad2faa53d2f9a013e72193f1b4b9ccacc3ca83e330989742ed160dfb5d0510c6a262aafedd17494b7e63eccd03902e38e4 SHA512 b5aa5fbc0c0177e5ad13183a5dc08fc705c9129960961d2fe30e6b0e1f734976a5efd7aa2920484f3d902d8c8d6f250840871ad07a7c3939f410c7c2c8a81584 +DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.mod 368 BLAKE2B daa5e79c1d6c337a47c6cbb95fdabef6b577f942eb9203581d8a2c762ad38db7d354b55ade753dce15d80f58b10eeb23ff000442ce282f08e33d9f2c37ec99ff SHA512 f4574aa23fcc101f579ae9dd73b8fd6087a2730b8d9377b4498e6deb556e2edec1068fbca0d8720cb50b3cbca0b250bb16ae5458c14865a0c27104372cd9f900 +DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.14.zip 32883 BLAKE2B 338820445c1117501ba9aa4bcb2f14f83984c23c710543ccb6e63406fa6a47bef26bfef55956b0815e6190f450bf04c53e9c7280df2e2cda1f8dd6ad9bb862ca SHA512 261028645ec68016a50cac5479fdd8b0d32f02d079440016a1bb6e146ced0d2bb9f659c251c6d9fa27a1c1f7a89cfe89564848af3fc724e193f514dc3fad05b8 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.mod 315 BLAKE2B d173e9dad06c7155fa2906cf4869d31abefda5580704b8072c6072686d32f7f3fcfa85538a7463f268c8311d8ede80c780f1d79421e9096116d6ed613c98ac60 SHA512 d9615581dc92f34762f37fff4a459fc193e61538c7a414152c7bfd252b6cfe67ec12a130ca306ff7aea58e7a0ef90ed1f7100d8c7bf92a348207d506175c066c -DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.5.zip 28477 BLAKE2B 6445d611fdb185e5b547c836e74709b8e61973d8f492130324d9c7be5d33cfca4b78a83c806bf3b563a0dcde41abdcf504a9c0d0640f8b294c7d0c89f31ca7b5 SHA512 ca8653360f07a89b130299f28039f98896dcce02f01845715cfca6f405fff5d03c48b52ce232c52f63ad329e320d96c6203ef556c3dbabb82eddacf0d81e907e -DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.6.mod 287 BLAKE2B 19758fd40af2f8f5e42e47c271217b3e81dfbcb093083e67a47d344d1e828d81c88c48d4215fb0f919d5b59f36aefd42b28664724bedf43c1d827788d86d8c62 SHA512 e2aed839cffe430728779dd39b16d64a3b8be08ccecb8d74463bdaae5848779ce5b2b11d9a68290a1aa9aa396a1a7a2523b7157b2ffc31b1d23c0ca85d578427 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.7.mod 287 BLAKE2B 19758fd40af2f8f5e42e47c271217b3e81dfbcb093083e67a47d344d1e828d81c88c48d4215fb0f919d5b59f36aefd42b28664724bedf43c1d827788d86d8c62 SHA512 e2aed839cffe430728779dd39b16d64a3b8be08ccecb8d74463bdaae5848779ce5b2b11d9a68290a1aa9aa396a1a7a2523b7157b2ffc31b1d23c0ca85d578427 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.8.zip 30257 BLAKE2B 3e0c0b5e7694fd4214e1719cfdae845e55f216ad741c698dfff0789b48733bb4b5c008182d51b7108febc43a491d95a1d0f9d65b62491655f381deeac76bfd7c SHA512 7d26883d1034f41f53f0b47c493b34b8d02da3742691b86b10cb4f3ab9e47517b72fe80e4a7f3a9338592dee3438301313408be5c09f944be159a01afd8a2c06 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.mod 326 BLAKE2B b1b305b239819d7de057dc7de09facc661ad8d8a7667ddd4736735d4411856e31c09ef39d38f3a933eb4d169cac1e013142d3b713b4d3df2e2a07edf7cd3401a SHA512 567a8f6956142d569bb42c2082e608372184e677fe29850ff101b559bab90e899777f141f011d2879e2251af4f855f3f3c7bde993b38bffda64d83f56bed7242 DIST github.com%2Fmultiformats%2Fgo-multihash%2F@v%2Fv0.0.9.zip 30525 BLAKE2B 78f2b356fc58365858cfc681462803cef15aa1d155b0408ea591106ca1228347ba474359903b738488643b2132a78e26f1e7a509edc4891f02a3e936926ef361 SHA512 90a6a2020944d7af307f59d41bb6c7109b9430d3d1721b9dbc0bcd0c82132efad9a1a745341e4df38d5f4e0e625c5ef4056c7ab99d77dd944d203866c39ae6ae DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c -DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.1.zip 13340 BLAKE2B 9d99f25a758320c7dfc63ec2ebaea1ecb044be50ae8f613d8a340836ec49a097ee5cb84d68da7a713543a5e99b05c9e4a92bd8774c896deb5d03d3fbb4c0a0c6 SHA512 659dcf59387d0cb1e0f6d0c50f5e06178638bc0e1eae1710bbcbcde53692515a65d77a8ae90484ff03c724c2925832376148bc6a90d8df3506c1b65c2fd7a962 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c -DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.0.4.zip 2355065 BLAKE2B 8b47adb058e34de2988ff7fca2cfafcc6bc98ba2d80f9a65ada938f02cbbe0c0f2cb20aa73b31ec45ca5dfbea1fa4766880410e064cfdaebf26116e5e2c3fbaf SHA512 aa9adfc1a531af164fe92af87281c13f950fa249e103a7f944aa661e1d3326fa99d5c1c0edab36d3f7b24eaa05c7099ea30e878da5b9eb35151edca65a3ea360 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.mod 46 BLAKE2B a892fdf37f507ea7ad3f68191a7202c486796b08a63c9b60a2fee65c6412303449063a13949101400710aa2266cad8797d5ee57d6eec26e9ff502b244b435759 SHA512 9ea624d7ef9c849eb51b568bc9497b97790dedc2da3f1368bd575441c95cd5ff90c35939d1a426e0e39f19a2e30e6a8628a8f8c0b924fdd793f4f48c8bebf21c DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.0.zip 2355069 BLAKE2B bf6339dba73d26d98c577e76a42c349907965cc5750143216160b2dcf9771cacc930b484314fcfd46ece27424a23ff9b350962806edb5482187ac1b3af2c700d SHA512 5c735c37678481e148501f0a5931b76c322487ac8c33a482026ecfd3f1e190b5007c47cd4e260f4bf0a25807b2c26a97931f19945b0f09356c97a2495730d814 DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.mod 55 BLAKE2B e5e324428b8793458f0ed33503265aa4660d0d7c902dcc6dd48092922fe78e29a08c4cfba47281f3d34bf8427c8072d22ca2531d549732fc4df3bb6da52c86ff SHA512 f87be6a60a7f7d2a71c9486e67e0d769eee1cdf19629e923be9050ff2c9e687ed4c7f434b67d3306326dbca324c3296e72e98f518dea50655d4ae8d06af042fc DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.1.zip 2355146 BLAKE2B 5e403396a7aaf48ea03857315c1a122d577e92787b1e66c68cde5208f1174032126d1896b41237c5c9a7e9767cd5bfead7270d43c948d19a6aab0b98fb01e7a4 SHA512 46d6ab5749fefb68a582158e5a91cc2862223ca24b96d3aad712795cebe3a65c8c62d4412584b3083b5dfcbec20e9244317e21ef6e20dabb788f8bda0c0aeadf +DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.2.mod 105 BLAKE2B 5716edca2df8d820c67fdbaaf4119c6aae87db7ff8edfe6b3236a471fd99b1a8d9d70b6a148cea90fdbe3eb802a23103d990c9e1442a6d0143e9ceb0417a25fe SHA512 4fefac23779921ba59a16b012c2c59406c76fad3530cbe6c250120339e8f840688c96a4a6749c514ae6d3be66397e1d90dc2253f27a67fc668be36de2326a8b8 +DIST github.com%2Fmultiformats%2Fgo-multistream%2F@v%2Fv0.1.2.zip 2355317 BLAKE2B 0c76eecbb8c9b7cc2da9ea77ab6ba814aa0119ea256d3409eec94a660fd27d7a701cb373383031abec85f336ecd7b6f92a35c11671a036d9a6b2ce16da1f03f9 SHA512 c9d80842b17222648367513ba7a21def2e36f0737876bdfee4a62395e977c7fac0f2f51acd0e6b6c744c79144cd5d08e958fd915daa76782dfb98ead4b9c8499 DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.mod 50 BLAKE2B dafc6e6293ede20438a91e9a6b1bf66cdae8b1636c525d0ec04e0912fac06def988de0be701dcbfe086684679e67daac943bdf8cbd44b70217f2f7af58878699 SHA512 ff1e77ca2511fa4e6d7bd76f0733e89eaaa1be8df68b0b35ebe0fc794b29e371418eb8fe5a0aaff766fbe4e9251c3aac6e8b32be4cfbd90093cbc4d12742d515 DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.1.zip 3854 BLAKE2B ab7a6b08c13df70e60aff0812609bb4910cb86f6625ace4ce91940b6e9e05581d88926948b532f8a0c78afdab3d5e3bf4b4c302321faf506fca7f9ebd9f5ad2a SHA512 ccc05ee16226e69190770c09fd76335a3e64556639188f77d2967f99f47f8f0ac83b935b23ccc09c2b3ef66c5ea57b96691e7bbc01ee34e10dc8868ce240646f DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.2.mod 50 BLAKE2B dafc6e6293ede20438a91e9a6b1bf66cdae8b1636c525d0ec04e0912fac06def988de0be701dcbfe086684679e67daac943bdf8cbd44b70217f2f7af58878699 SHA512 ff1e77ca2511fa4e6d7bd76f0733e89eaaa1be8df68b0b35ebe0fc794b29e371418eb8fe5a0aaff766fbe4e9251c3aac6e8b32be4cfbd90093cbc4d12742d515 DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.mod 50 BLAKE2B dafc6e6293ede20438a91e9a6b1bf66cdae8b1636c525d0ec04e0912fac06def988de0be701dcbfe086684679e67daac943bdf8cbd44b70217f2f7af58878699 SHA512 ff1e77ca2511fa4e6d7bd76f0733e89eaaa1be8df68b0b35ebe0fc794b29e371418eb8fe5a0aaff766fbe4e9251c3aac6e8b32be4cfbd90093cbc4d12742d515 DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.5.zip 4726 BLAKE2B 3a345393fac315c759555282160db27f7c894c68b63f7b71db4323a35604b5780234d69e98ee910af1a466b819a7606ed1343b2f1aabdbb8c1a0dfb761828de0 SHA512 60f9f8179c1b65f00ccf61e7b7d6bd32f7eaa5b7861165bf291c9f2afcdff7ed141a28c84b1af3ad66b6a9ce7386a7d1272e3e7457ad14bfc3141befd8c602da +DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.mod 50 BLAKE2B dafc6e6293ede20438a91e9a6b1bf66cdae8b1636c525d0ec04e0912fac06def988de0be701dcbfe086684679e67daac943bdf8cbd44b70217f2f7af58878699 SHA512 ff1e77ca2511fa4e6d7bd76f0733e89eaaa1be8df68b0b35ebe0fc794b29e371418eb8fe5a0aaff766fbe4e9251c3aac6e8b32be4cfbd90093cbc4d12742d515 +DIST github.com%2Fmultiformats%2Fgo-varint%2F@v%2Fv0.0.6.zip 4998 BLAKE2B b304945d5cbed5491c53d9e72d517ad0d4689e8a573b2f62b011d4e332b544ed5f6aa861041dfa4fb89e7f67759ee362d6ed9829ea980adc8fa7bd6b4407fc81 SHA512 4300f75f8a1ff5f3e70f0838726389a7ada60ecc138124e8f974d45cb551cac7f938bafc91d7a1f602541463cd6a13f2d8314049fed16faf55e07ac6cfd39975 DIST github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod 39 BLAKE2B 391eaf696f1a5c764f9e156ae3f6285ae5bf8a4abf2a735fd13fd1591f3bb97737502b79df093156305503ed4b63e0d458900e61fa8717f96ee17a6d43bc2f79 SHA512 9fccb6717f5b37cff2d858cc31f7e16aed120a67498c2f0d24aa30ffac4eba2e87822b12d62f700a0c62d7561708bab2e13e35e89cf5407cfb06a0de5c70808b -DIST github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.zip 24318 BLAKE2B ca6af09a05d68b30a5d7b0a25a5aabda5253db4ea60dae79a02dba819771740b51101ea6abf43e456a5371a1f4ce541ef7152e41a292fc0888b4aae156ee6263 SHA512 2da970823cf8360fe51c74349dcc50161299c67db7d364bf16941325a357cda0ff9a216a2423bd463e36f2a6d888848fbe671e1998892c78edc2690e28e93d38 DIST github.com%2Fneelance%2Fastrewrite%2F@v%2Fv0.0.0-20160511093645-99348263ae86.mod 38 BLAKE2B 22b67e9f112f9074c978cc35a361c55f49e38ecec057d0e02e21957c2abc39a7992a487dbdfb22dde3a1e07ce95decc222708a8872e07756b62bebf103a21e02 SHA512 640533d437f3ab00bf4a436007f3ece53f602142b44319d170d5714da2defba70ed0f8ae93ff73c5d699c8db8ded1dd9b77a21653c3325b500b75eccebd39a9c DIST github.com%2Fneelance%2Fsourcemap%2F@v%2Fv0.0.0-20151028013722-8c68805598ab.mod 37 BLAKE2B 627af5df50cde39e7808cd6bb979e0b1d2ea9733dac6c36d7cb0475ee6b3a1e1e6c20d6c1a34a08e2e5f59c9b41d7a8488f56cf57fdfae110508a54ee8cd307f SHA512 a089301914088a4f0b1e6905a8cdd5748134d1834d0ba34b95c41bdb463dbace1b33901e727257f3b03cd8dadebce33c3301870f0b7ccf63483a71fc63a4d045 -DIST github.com%2Foklog%2Fulid%2F@v%2Fv1.3.1.mod 29 BLAKE2B f74d75a495f683f4e9047201721611229ecddc37ed01b5d4b5d81a06220a6385f06d0f99e514bf19cc2030fbdba6de3a08fd38b750e6651a822b10bf69c45327 SHA512 b426d975637bd2b4dddc10d7c88b70f8b946201f311859f22520d53ae0a2d9911ab358460c089771f7900d7a8740bbc0c6d3814ab8f955108fc31b7b602ab5cf -DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.11.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba +DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.mod 206 BLAKE2B 67500c3221887c3dd9f65540736ad077a412eb394a302c2dca06abe3a9313ef8fa1d42a24f5df385bab8146a2e291728bd0fc4da0069af9e6919588c630abe5c SHA512 b8aff850aff011830e02c0ad21b0c4bd70bcd09dae13d720262691299a180fa1039365a6695bf0329ad1a9dfdbd71ddf28ce51a7d3289248eef51cf472cb3a00 +DIST github.com%2Fnxadm%2Ftail%2F@v%2Fv1.4.4.zip 25231 BLAKE2B 507e1c3dcd006ed29aba002827bad1ad129a97f58fd1e5847d0cc41022716965401c5c3d4027900bdd3197caa4c0e797805a146b841bed1a80b3779fd74e3e24 SHA512 64e6ba58de56e5b305c7ce64285cef1375360e87a7fc506be637ea347b63a2a89a1b56b8db3687d16b0dd631f8faf9c107c2b473b630e450aec92cfed1040695 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.mod 168 BLAKE2B 5c8f6f90e14aef57fb8fa7dee546f60a73a2b1c16f7d5688d6a0b40a3d04ce308a8622f64242d60c1a014e3aa9264c3069404cf764026016d746fa7de031e236 SHA512 c73c807f01657cfadb139db3684cf680e40ebadd4db38cdff690407741675556e534aee37c96e4f54be64283937c81114856225f3d3f64999cecf5df11cce2a0 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.0.zip 247496 BLAKE2B d869b0e31f60dbee0cb306ec60f7f77d75dc44214be54f295a525692ab2153d979d139f16b87b071b7382b4f9299a59c4795fd78bc1f541ed98bc3b869a63f8e SHA512 c1a57fcbe01ab401f55b4e6ffce452fe578c5af100ae5e3c2234e5066cd7ebb0da98b7033bed9b28f7ee2c33457b450c0869355fe05c4cc86bba0210eb2d56ca +DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.mod 166 BLAKE2B 8fad24303bf57553db631ffbce484b05ac3e7db117503b7ce555c55053a0550770ba6d7c6b831e3daea69a9733d98592e98f90b2e9f5b5f3020024b55c3d5cb2 SHA512 06e7e8754384929043159942b2d873ea872b974d9fae1971465592e44eeb26b072539de290adbd79402bad2a2c7fa38556a7597f5e8157e82d7576cad6b49692 +DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.12.1.zip 248478 BLAKE2B 9d49c8ed01d4785f19d292861727337cb75603854b65a5996f59b2933e55e6c6bcb6cf6c71b9cfbb1c20e8ef7d1171eda17c9e3982efe48b5ff8d984aef313d4 SHA512 45696a0287921a819eb38ebb5d29a8fc8f174ad03f85c9768928fc94185c2ec275a10a9e7fe8bd2e5a12d8b378d01ddba9e8b96c30e5fdcf4357945ddd005276 +DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.mod 254 BLAKE2B 30062eca1c156d706683b2d2b88c70dee8e38da4d4bb8785c3894d7d496838f0628095fdbd020961bc619c8a653216f0efacbcceaf0909820f01d070fc1f9d9b SHA512 8a7b93a80585453b3795e1c536fa232511c6eb797125f3600ab8b1f613d9334559692425855a2ba95e329595bfdd38e8eb3588aad58aee8464f71aadc56f4fd9 +DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.14.0.zip 258725 BLAKE2B f40083a2965a442ea70d613f2fad5b4541cec4816b2ba6a28b92e6ac679d8e68a7f17a7c990b2db50583017668f355b1b242fd7019e26afc5160cd64dee96458 SHA512 42884272a9d723ca5d78c4fb5adfcba500eb4c6fc8fa22d11a2104fa36bbd4ce3c751b4a99f850c01efcacf3462fb855607bd26ece1f6182e1ddd68b29a734c4 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba -DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.7.0.zip 240603 BLAKE2B 7e8d8e71006ac015e66ccd29200ddd7a280029ef27516777a678bdd7f6b17e46d993e2f6e3e4e5b0d57e3ffa7e90622e199c3e60fbc49bf7338c64f009c0e57e SHA512 a7a5115d9cafa45cf44279dafc5e4e9a5922fea05e6e5cc3ca673130cc79fa711cb806d7c3994e81c37fe6c38c051c21939a5bfd83d7c9e6c7c5a6e25ee517c8 DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod 30 BLAKE2B 54980427295e87f99bc189c9ec00c2167e9aa771cd8777d61cec8127a3eb19f718843e2e736a6d4c08877d23528bc6da810da0c61a1dc07620422fb1b5434684 SHA512 1b8b7ce4a8f0092f0b2a2395fbcafa8cfd6830183bc36fdd58e740dc9ec4fc5201f5eec2daa6e2effeb59f9e1c0ce986ceef838d16876c9fbf0fffad4b7660ba DIST github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.zip 241037 BLAKE2B 6496c984a58729c6d0f0099f22d1dbd9c160639f3eb15e473a3ac62df5c6bb3dd6ec3a70da85c75596e28c04d0ecbef7a2e3ca858e4fba0247e85fb81e15fce4 SHA512 90cdcf9e8aa063711cee273792a94fdf4929c0dac94255e28f5c51894d91deb71284acc94d733c11d38c503c5f1a4770180582eca570a0530d215418eed9fd97 +DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.mod 245 BLAKE2B 8ef01845f54a49336d1d911ec510a912ca5960eab195d6e193a4dd052d1e4158d2dc90a1c89749ab719e3d017decccb02a6af9e6d761016d871ea6498845f936 SHA512 2d89b68a9f4c3e3bf9d46d23d5b9f906d05a3c6ffdca50e83d2e07eb2f280707393828f8f12110cb64c28e96673b76fbc0235a6108d8ebe0064aa6fdf4d33f83 +DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.10.1.zip 167538 BLAKE2B b6ab81d8dafa47bf212bd61697aadb4f969fe78b5c0022aafa855f864db4989e4a06ac2966e4cc27a6b595eca7f09c4a171a30f8c31787f9366e278e596fd3bb SHA512 028f09b7234ad1a7a2788c4d9741e140fd4ecfeb6a9650b941577c5605512336848c86a17b011ca2bb48ebd5d34e6164ef568da4e3ca92227d39cd489025d430 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.mod 555 BLAKE2B b182f5a37e6169f7e40ea33bdda2790e7e1b01c1e61cc9d109ca6b8803ce9161cc0c2e2ee857ef5af582b1b9317c58734683ac3e8a8d11c620865b3b12c6baf6 SHA512 a7ef7e84c93e09b01b83de08580bec055f0164d3272a3e2571707d0b33f4b4616a379d440ab3835d455d8d573e357a6df1163fa8415684d5d55af8e22c68f7d8 -DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.4.3.zip 150535 BLAKE2B b9a2b9e5653d4e67b05242ea629d586206224c916e1a2a0e575d42645216e0b7d00da1288d75fadbd50cf49a65f5fcdb2ec98132710c1bb3b925356ac92a0ad0 SHA512 389a8ead0603ab417d1c471d773ab0ddb1668a7b952f990e7fcf26f9bdadf7937b8408a2976f74da10568a2726ab2ea15cd14ee4319f99c5c45b9ec4a1e5ee6e DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod 555 BLAKE2B b182f5a37e6169f7e40ea33bdda2790e7e1b01c1e61cc9d109ca6b8803ce9161cc0c2e2ee857ef5af582b1b9317c58734683ac3e8a8d11c620865b3b12c6baf6 SHA512 a7ef7e84c93e09b01b83de08580bec055f0164d3272a3e2571707d0b33f4b4616a379d440ab3835d455d8d573e357a6df1163fa8415684d5d55af8e22c68f7d8 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.zip 154143 BLAKE2B 077779c5b91e3263fd0c30d65b0fc62f8c49d0ec6e8b3be13faf1e4536cf93d4c725f34bca7cd285e3ca1256599ac81ba61ad9d171bbc1d80dde7b5335b6e90e SHA512 446d3314c4f8c26ed361b682e49a6ecfe012106fd177fbe420b5bcc6780d382ee0f426276443e0d66a47fc72dc2cd8768157fdc3bd769641c17abadef8217101 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.7.1.mod 556 BLAKE2B 8e36edf565660234a9c939b93e99acfd61c30620cf45619158d5a87c102492333387de1bda35aa226695f913358a4385d1b8b768527d8a63d056ab8f13cdae61 SHA512 3c48b6f2cd9bc71efc218b11ae432776164936d4474df73510a785819c417fc894ca71f5783da77f323754ece56b681f8f1e9dacd5bf309f189997ba0b317dfb -DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.8.1.mod 613 BLAKE2B 5c582ba17d40173653cf739137d0bd6cb866c34fa1f76bf8f0b96c1d05304c5ea52247ef99d6d31d5c6f41bbebdf5ad9e0fb21e275b2cb888098e0ca3ac8f30e SHA512 1a7624cfc159a3444be19238a2aacd003e1b0c6f586d3f6862adec175578e0bf40fca303049a15ae3cd96a1c61395dfded8427f867e1aed4dcca180417fd80f5 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.mod 613 BLAKE2B 5c582ba17d40173653cf739137d0bd6cb866c34fa1f76bf8f0b96c1d05304c5ea52247ef99d6d31d5c6f41bbebdf5ad9e0fb21e275b2cb888098e0ca3ac8f30e SHA512 1a7624cfc159a3444be19238a2aacd003e1b0c6f586d3f6862adec175578e0bf40fca303049a15ae3cd96a1c61395dfded8427f867e1aed4dcca180417fd80f5 DIST github.com%2Fonsi%2Fgomega%2F@v%2Fv1.9.0.zip 162928 BLAKE2B 57b8631946af88b368834e7fb04f0f0dfb9c2c8f0edf2f53d6578cf569f395a3534289d1401d2b76e818949ab695f8716874feb84f3e7d16a7045fb326eb8b90 SHA512 c5e494b291ea08f880b0ad557bc712059b94dbc9514d3261651305f97979ac66f2244cfc9bfae4393ef6311f3438c30433f30ee0f64c05d52248dc3ee40277a7 DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.mod 45 BLAKE2B 7a7820ed255877b390c76ffd281258a8e70dbb2812b7d2d0bf63bb431e8e4f52faad48d4e6801b301ce35cd6dcd49ceac6ab94b32e35befe2e6df56e1a1e8eec SHA512 13b356ebfd062cecffa1e323aa7768d933c6915c2963eff50b1f743712d48cb24f137ba839a7df211e6e02979a4d1c9d32eec8194227edd995c3d35849edeb54 -DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.0.2.zip 34113 BLAKE2B 29aea1a410735b812d7a0df30523e7632929f836ba18cf7329e0c1bae5b918ea898c8b10e59b9407b6862d28236c8877492a16e48fce256c0a5dc2ed6e798cab SHA512 5f35c076ac542650bc8d43fa4937f8f3e2de363d61909928d165a7673718f5fae0b0ca4d5276b31e044aff3f725982f4b56eed908312959dab24b344aeb5b88f DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.mod 45 BLAKE2B 7a7820ed255877b390c76ffd281258a8e70dbb2812b7d2d0bf63bb431e8e4f52faad48d4e6801b301ce35cd6dcd49ceac6ab94b32e35befe2e6df56e1a1e8eec SHA512 13b356ebfd062cecffa1e323aa7768d933c6915c2963eff50b1f743712d48cb24f137ba839a7df211e6e02979a4d1c9d32eec8194227edd995c3d35849edeb54 DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.1.0.zip 44929 BLAKE2B cbb592f6d60d1e5906d0bb0b89431713851582a17f092a7bdb7a508469013b99567a6d6f44807fdd79bbc6e470b01c6605d74b79dd62215111d2d4d5469a5fdc SHA512 a813adce63d0ef8b5a2d95c86099967bf5fdce2c7e71e1bc72d760e1235dfc430e650bb6dbbf1d42987586f496b1a5bfa6af8d20bd1fb1fffca786319cddfb22 +DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.mod 98 BLAKE2B c02a87e814d1c714464668cb563452e38abdf990ce032deeb5f7d5a7aa4975a6836943318cf7ec829d26c702811ec7fcee6c6c27ac3056722926dacc5b12e19f SHA512 00dbc2834d06b7c97a79f10cc59c588f37bf8f59658a2fcb16fc773507077d09426563028c247eff9bf2b5b849af8b0d12af45f9cae0b400263e9b49b868b56b +DIST github.com%2Fopentracing%2Fopentracing-go%2F@v%2Fv1.2.0.zip 49529 BLAKE2B 2d53d01d52d4e08323b8d59b8425a5ea43e47d44fb2872c69da6473b33b39f7303d464cfe100e9d441b1767185f875d8c6d3dd183c5f9b0523192efce6a81bd7 SHA512 37bccafecc500372653d1dfd7b03448242399cbce9cf21ef0b34831672332b2272b143ade48346b7d1914d017ce94957ccf53b96daf9a110a3f05a5929e0ad73 DIST github.com%2Fopenzipkin%2Fzipkin-go%2F@v%2Fv0.1.1.mod 39 BLAKE2B f2a29cf2ce5b2862bfb3d894f36035e27c8cbb4ac1a1fe78cb4a0bacb1e3fc20e82d38b9b6c5d8793229cdf5d5a21975c936de50e6e3d395296d7e116a346d23 SHA512 b4a425d5f19203f3808000050e56a197965f4f26b8828ffc5837b7ee2fec2813f7c38dc242614a7a2d97b5fbfe63986c0115bce38b5a02eec6c60ec7a4568114 DIST github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod 36 BLAKE2B a388b7d0db7c8b9a589164ac639887f1e54d3f5d59ed9bfdbb427b88d381d95455cec1f3474d6dadf847925b7b0e9944a3713656f4870db4fadaa1774595c3f1 SHA512 b74e16c113ace53ce6b7a4df1fc73f21a5acdcf3d2343a4c4f1ad7a2cd8d2282ef7ede98de8c1c46f7d35feae28c9f49ba4a2dff1071357cb4e88e93f25b521d -DIST github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.zip 75347 BLAKE2B a6f74be69c8d42d3cc84e957dacd59f5f96fc49d48972c04ff26b623dbfcd3b5c2de13ae3e561e9a491a32cd52cb83d26e171f624191ceb4d659e5b0a3bc7623 SHA512 5dedfbc126ef5a3d146b2f3df2e4efa21cd4f1132bdb9f71801e55bc8583959777e57ee2664a85f3a222d656b910e1017b9b855378c93f65e2f623b568ef12ab DIST github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod 29 BLAKE2B 7fb53b19bd1be0e783039647b42ecbe2070f51af102e473ec6d3544eea0ffa5863f1874ca1615348d5f8abbaa39c841b4fe18d43a8a615fa648cf22f35955e38 SHA512 0c156e21d35c45a89c1a1b69ff1976b4f7511b3870bf96126121f5a5effa3723eb45bf080e840d5c8b96898c65207dba83eb3e1a23668dd8a5e20ee6be775cc0 DIST github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.mod 29 BLAKE2B 7fb53b19bd1be0e783039647b42ecbe2070f51af102e473ec6d3544eea0ffa5863f1874ca1615348d5f8abbaa39c841b4fe18d43a8a615fa648cf22f35955e38 SHA512 0c156e21d35c45a89c1a1b69ff1976b4f7511b3870bf96126121f5a5effa3723eb45bf080e840d5c8b96898c65207dba83eb3e1a23668dd8a5e20ee6be775cc0 DIST github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.1.zip 14339 BLAKE2B 9332d9cac7dd3aa2f4d756f0d92c911cd0fb8e00232db3bb013a0ef12addae0aea2388ce3adf79407a81e13cfe9cd4b45aeb2bc9f8b84b4e3c5dfa63b59d46a1 SHA512 f97471d54c5e73b3f59326847cdd4dbbb142a9ae790df83493f11a851d716fb407e01a857152812caf731b8f3e0f37ae151ee83300feaa73152173f6cb5b8515 @@ -1158,50 +1061,39 @@ DIST github.com%2Fpkg%2Ferrors%2F@v%2Fv0.9.1.zip 17866 BLAKE2B bb8d50b9e736f5f1e DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod 37 BLAKE2B 94636062c94f8ff68cdcab7593a3acae7b9ffff616cad7b1d5c9cd147a4a1042d33666cbeed6fd816d6793113abfb595183097dcc46de7a3dfadc1423ed43e79 SHA512 c3d5c48cdb8ba6af7071a07cfede06e0ab67e3726d9de592a952fad40167dcbdd9621dc2c4df1bd3c28eb99d70b1b6d8d812441237c35bf492e5b7f07bd33902 DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip 12433 BLAKE2B 0c911c9d173080abd8edbbab1f47222343801d8eeae36b4add24773e3282fc2a39283fdf519a3d4483e39cdb7d9509b8570d151f46841ac1a616f312dc4cb0ba SHA512 3b85697185ba85cdef6202444ab6cabeabfad8a03d66b3839a852586b1f91ddae7897a57c8c138d5647022aa44906c7ef3c5339d520f90eeea0742a935da8cf2 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 -DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190221155625-df39d6c2d992.zip 161438 BLAKE2B e332c1288ec5e87a816c47a2c95a6ee8a36bcea740fcab4ffd90d61eea758c1550c538f4834659138e64b8bba189e1dcc79805800363cfa3d762d727e9121cc6 SHA512 dfcd0f87389c47581092ac4a5b0d444218294de3790449ee30c0260b1c9efdb0bd290132985ecbaaa2effe95476e89e223b44511707f20e64fdb6fe7fa4dbf4e DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190408063855-01bf1e26dd14.zip 161442 BLAKE2B 1fdcc668e2555596391ca7b2c1275628d5e7f7324f3008f50d336e6ac770c826664a0a584f397f176b44c3667852592daf7d9cc302cfc4126e54ab078ad74557 SHA512 203e53bd20d07b562137a76b7cb12a3646ee0cf17032e510c2d21ef3833c7285c3c1705dc299552710c808317f2fcbca0b8f238b4e78a0d02dfcd9a4b95ae2d3 +DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190807091052-3d65705ee9f1.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 +DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.mod 33 BLAKE2B 256a9a9458b7ae5c74d742e08c96e912ac6c0b67cb6d9dc17aa5926d1073e112e113053264807eebe81b9f96082c70b5590213b1676c4a5ddab7fa3c11757785 SHA512 fc4984200134640570889d9606b48bb88fc1d93c982c060a0a733a2b70e147d2fe2d17bbec2d11bb18e877722512da4a350c6317f9d7d1a166699cefc2a412f4 +DIST github.com%2Fpolydawn%2Frefmt%2F@v%2Fv0.0.0-20190809202753-05966cbd336a.zip 162643 BLAKE2B 9703d73eccebc6f5de93ff2e0d86b530456aa4e4185e42a6cb39927504b6c5c4a8ffbee1bfd27d67acaa7f6e91f0f7927262e0bca3d1836a0135aabc4452ca92 SHA512 b985a88ed9c655cee21f5a858567f0241cb3636b92ebc25130148f24dbe2e7b35244adfc4077fe204dbd7247dabe47a3233a8a582a76fc5fa7442c2a41c40719 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.8.0.mod 43 BLAKE2B 2bfedb841a10d8d6a861189203de74eb9bc6bc37bb10cdfc2404b1e972b7672568ed27d235e143d831cf2f840943c039398296cb78f1309f00d1ad9e0ce21056 SHA512 191cf6496c41b2b82c9a8f2ab2aeab63ede47807160f7cf746c548b3e92e367fc8f80ff8c6efbb7e91ca5903d5672b235c1ab9f14d3f9f988e8ff1c821d3b8bf DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod 43 BLAKE2B 2bfedb841a10d8d6a861189203de74eb9bc6bc37bb10cdfc2404b1e972b7672568ed27d235e143d831cf2f840943c039398296cb78f1309f00d1ad9e0ce21056 SHA512 191cf6496c41b2b82c9a8f2ab2aeab63ede47807160f7cf746c548b3e92e367fc8f80ff8c6efbb7e91ca5903d5672b235c1ab9f14d3f9f988e8ff1c821d3b8bf DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod 540 BLAKE2B 4d43a0901fa46da74e62fa22f61dfebdf6468f2766bd43dfd487d7a5434f961d181ecf26015ff9134e8d3f9c2dc03da6abbcd0030348facda3a499af9a04665d SHA512 9add81238044589ae2cf38042b963953d507e40945118fd62ac1cbf41bde1b001a69423c50b7045b721488b3d53489b4ce3c544b68f6c4e31e340d2581f7c8a6 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.zip 193855 BLAKE2B 992f1dd35201c2f388e3fb03bc51a592a4b36db69a27b52d9e840a95d920cfdffcb2dce6fe2b8fc30a718d87b07383df2ce8e97a4a2a40d4f2f0ceec35c1d4a7 SHA512 79cebb06e6a958cded21781e651e1afd406c7502a945f2c97c9b910d0621a46a7a84f8fc8fbe7c21547146ec407a8f475eb0e711f37273e28f2fa5b3062ad19d -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3.mod 379 BLAKE2B 6a6db2bee0b69257e5c4d37b1d5395693ba6a88bce129a580b8c0ac986a7702729ebfaec726caa3b6c4d2537bd62a7d728705dd0cc6f6d8b6c9a4460c9bb33e2 SHA512 fe6b74b26571ed4afb49f8f2c6745644cb7db7b5fe95138761c78effdd05d9948c09aded96218ca0cf9d8da6372705901048c14290a4faca56b1d05ca3d74130 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3.zip 200189 BLAKE2B 24e41bedec6cddfe974d388ea7be6b0072a7e4dceab0b0d50cc0c1942f37f18a16ab7f690333f7f921e8a3f425ffc10472b40117bf80a5f8f1bcae3a39faea84 SHA512 567f4d656b23eabc175cca4517c3e357182ca92fda27ff1825ad81b8ac93c8e65e11ea3c5f5a6928350f344abb282dd5b8122465d897f2c1183b75474c4d5167 DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.0.0.mod 535 BLAKE2B a8d3fb22b519e88dcb6b6f305a80c94e8b40fba8bdc96941230b354cc6bd8ec4bfd121b8e5ee57e9883e0b01b6224ff22a55fa8434bee1623133cf59489e64d0 SHA512 1d3646f93821b2ff1a4d80074f773eca22ff3675caca9d267762a31c1ec719ab464ba7ade7c8e2aa79b16a4f35f5a64f779fd909060a0c3056f09af77cebd655 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.5.1.mod 612 BLAKE2B e77946b5137a632121f113e6d7b390d25891d1fdf214b7c07ee0307aa4e78f5d19e96d1f4bf01aa1d62a2b0918727db1e128fdca6b6f1daeb08632b940a3084e SHA512 46eb82a74b845f5eda8cd01e8ae182e5dec7867306b31a40cb5c6bb9df2045c3259070b57388cc7826f54ee7b9fddaf980436f74ed500ab88748a13f12b30ff8 -DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.5.1.zip 213040 BLAKE2B f249bee112f34f59d075157c194ec5d08682e43049539fcb64ae8c195bf25b2b8e04732be7e4aba9425e3d430fd8ccce0e4a69b20a5deb9300a23926fd1565c7 SHA512 ac41ce53a3f71ed5e83ebd06cb013e7b1328a152453bde6d82ecd9eb48e5d5a5cddd19f1e3e131cbb009fa1c686a7bcffad18c84e4c20eb93605405d37519e75 +DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.mod 569 BLAKE2B 0c975c1c48f40792b02fd8756be3b6bc044ca05725ae179445a858baed4861011ba76051aa25fb10be23c6cf14738cb9cab928418be49d8ad85211d398089ec8 SHA512 6fe81bf3c591058f2ff968b3c6656766d9d3fd74c8577b3e7cfac17e463392eed3268248237d252c98751b2f97bc7c48a8db15bfc3fbcd4afbbaca0e2970819b +DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv1.7.1.zip 226158 BLAKE2B 899457f410f559d70cac7131e9c6057bfd749964b8b133943635b0ee78a12485d933718569d085f51dd34f831114c2f74986818536cf21ad642dac793b00390a SHA512 5c4d5e70be8984c9eea4211e06e1f9478fea4ee4cc227167b9a99d87fa773e060e42aa4866eaed39e58a251821840643d5117b12006a6809902daa08cca14b2b DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod 42 BLAKE2B 5519896b44b7bc3089a8965dc61aae63745c64ba1a390d3fff1202be7f8dd34f59862c04b49e377d6616a93a0341662becce65d431d445703a160ba49eda208b SHA512 c84dfe43954b19c1e4ac5ff8738e79db469f3bc1dc55e69b12503d0a5cf125cc74f4797ddbfe64b2a1bd1e2940575c32678671d51f67161c4f5b53b2a85ac46a -DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.zip 68325 BLAKE2B 9b783cb98fd4f1ceb158d8a72ffdc7d0c232a8a9740de221b4321b2c7e240d98bb5f2bfca74222c6a7796368d48b1d3e315229a9d2c0436d5590bc200be31817 SHA512 25290d540c185fa2010b06596a70b6d06d4ae14fd92b4e5596b48074e4e5ef5ec6b990c8d0bc39cb44f0c2a83a0a1ac4415f86ea4e3fb69970bb2496f148d0c9 DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod 164 BLAKE2B ed42e8dec25021e488793be8e008c34ab5bdd6b5b884762d69f40d6c8968bb539041920ac7108e685ae56f2ef71b7174245772d96cc8f20463eba71580afae29 SHA512 4e0e6941b43c17cdce0205e9ba3d9fb18937f426ea2ac9a9e53396c906101d6ec2eb501cd8a791ee3ba9a32185f86495e9189134b8a9858134c73238d98ce0f6 DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.zip 69217 BLAKE2B 738c4f5d28aff0b5e5eaa04f50e9a4e4671bb0a06dafb2174720cc0e6fa79ee87123f55776cdc051124434a3889232d512b32d08b1db1d2cb7f54e251b617e94 SHA512 6cf7daa3b86c574afbf5d91d3d4f372fb31c06ff93d59aa128d8ef025b5c22fcbca5a148b21637ed97127e5e2150305e48c241be1ee4c1b23ae32a09f19ffaa0 +DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190812154241-14fe0d1b01d4.mod 164 BLAKE2B ed42e8dec25021e488793be8e008c34ab5bdd6b5b884762d69f40d6c8968bb539041920ac7108e685ae56f2ef71b7174245772d96cc8f20463eba71580afae29 SHA512 4e0e6941b43c17cdce0205e9ba3d9fb18937f426ea2ac9a9e53396c906101d6ec2eb501cd8a791ee3ba9a32185f86495e9189134b8a9858134c73238d98ce0f6 DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.mod 164 BLAKE2B ed42e8dec25021e488793be8e008c34ab5bdd6b5b884762d69f40d6c8968bb539041920ac7108e685ae56f2ef71b7174245772d96cc8f20463eba71580afae29 SHA512 4e0e6941b43c17cdce0205e9ba3d9fb18937f426ea2ac9a9e53396c906101d6ec2eb501cd8a791ee3ba9a32185f86495e9189134b8a9858134c73238d98ce0f6 DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.2.0.zip 13785 BLAKE2B 2cd44410ea7af88683792807b0f2c31b0943d8664a4be050f2e422095ef3674e6d42f4b9b6a76083e13bc9f44be1578cb06a7389b4a4b201b5a88e756b40193c SHA512 db2396362357b6d5e99b21bd4aa8d8dc193dd2676a8f437c62eafae849a56a53875bce7411d58ad78e4fe36445b72ee1a34360b174a23ca84de911f5df189354 DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20180801064454-c7de2306084e.mod 36 BLAKE2B 39120b6af83d45857c990115ff52d8828278a9ce158b01621d8dcc517c23ff139532a2c2e53ec97616f0c65a2e0db3ede7c5fe59eb33be277e2c60650362b232 SHA512 1b262da0100655c3a56c0e551866491b81d2b88fd5fed9cc43a57bce3634c88c82c798ed1a823237011f6be68b5f0e1fe8284526cd68204851de30a44fc34fbf -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181113130724-41aa239b4cce.mod 36 BLAKE2B 39120b6af83d45857c990115ff52d8828278a9ce158b01621d8dcc517c23ff139532a2c2e53ec97616f0c65a2e0db3ede7c5fe59eb33be277e2c60650362b232 SHA512 1b262da0100655c3a56c0e551866491b81d2b88fd5fed9cc43a57bce3634c88c82c798ed1a823237011f6be68b5f0e1fe8284526cd68204851de30a44fc34fbf DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.mod 36 BLAKE2B 39120b6af83d45857c990115ff52d8828278a9ce158b01621d8dcc517c23ff139532a2c2e53ec97616f0c65a2e0db3ede7c5fe59eb33be277e2c60650362b232 SHA512 1b262da0100655c3a56c0e551866491b81d2b88fd5fed9cc43a57bce3634c88c82c798ed1a823237011f6be68b5f0e1fe8284526cd68204851de30a44fc34fbf -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.zip 132691 BLAKE2B 9bfe80a4f61a6b7a2e0dbd235e1a05ca032982ef14a9989c415ad143c84c42cdcace926a5683f2273b84c5babe8c0e5b95c680805324217a7afa18b3c82b0bec SHA512 4459c32fb8b90650c6fca37477e2ec49c5e3eb68a8151c88099017fd2c9c13d2a066bef75061a47ed27398e96aa40a6cbe2524146ad1f315d94d7359d0a7ba74 -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.0.mod 1223 BLAKE2B 969e069f2e210c2863b54504d62dec9ca606c485612ab1c42249e623a4bbde4e4ad0b41da30f83594b7efb4d4a44e0a68a5faa8c115263d73738773c35a98dab SHA512 02db8fa79cd8368060c72ba3925624c779bcc9e39817b6ed86ba143024959496db2c23c1aefe93a5d9f22b48e742072382e2ccaab430c1c9eae6254184e2358f -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.0.zip 151345 BLAKE2B 9d387efcfa29f1f3c5337a601bad568aa33e0b673edb4d862ac113425b8d7563cdcfadaa5dc7c1ed83253bcb240586b2b5c7059e094c02974b8cc7b5a8cfd64d SHA512 45cad5ca810917c0d1fcd63926c999f7019225a8434794b40860d4fb1d07549bdec160278587baecefe380b988f306d334f3dceb416d010a6a13416c236b419f +DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.mod 817 BLAKE2B b4cabfb93633359c6ac6dcd400484e6162bc6b609bf0edfc4a82a2cc0137edef114d0d3e9c55bc47d1abd906d9ac00f9d84f07ee7072452c570ba9f98118f4b2 SHA512 7e1b17c424c8ec889d0efb0f5a171043ac0fffb48725144836d8ac635c036e877e65f34f75055359747142051afd00374cec9e39911175adddca2c50fde4c893 +DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.10.0.zip 163523 BLAKE2B 6d31ee2f8495605c967a41b12da3e854dadf4666641fa8a324f9926d1e965cb2693e390065f34892876c2eae5c1909b5bae8c11e484dd948b7c80983c8adb551 SHA512 74273a10b05fc2e0ea263ba57a52783c147e1f0ee6a1156879c387d0823f90d2c0072b5eea4325116fa621de0af1d5c2ba19e5dc188315c60ecdf74ff8ddcc99 DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.1.mod 1223 BLAKE2B 969e069f2e210c2863b54504d62dec9ca606c485612ab1c42249e623a4bbde4e4ad0b41da30f83594b7efb4d4a44e0a68a5faa8c115263d73738773c35a98dab SHA512 02db8fa79cd8368060c72ba3925624c779bcc9e39817b6ed86ba143024959496db2c23c1aefe93a5d9f22b48e742072382e2ccaab430c1c9eae6254184e2358f -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.9.1.mod 829 BLAKE2B 14a7c9b3754cce16715135e33ee294058d999f343d74281b9fd111a9c0a5632b90b6594d1ed220165b58614a695b2b2aae27b2ed9aa35ba1acc768ad12e46ea3 SHA512 4cb3dba50a3b47b9db735de9df4bd7b35d02464065919502bb1e17236c2f6b1bf1e74f312a8d0127d2d570344c30d58063d62031d3439f52a6dd8f47b29b9996 -DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.9.1.zip 161521 BLAKE2B a412eaeb17bb3e932cb53393de6eeab563068918c9ff384ce32d2caf958b3e3e472f554c70b518b472663f42e2060a97062029e55b694a6c93a67af4eec2d626 SHA512 692c2ceadacddee42e9415892d7eaec95cbf5319db3cfd6b5406b39c99df942b4dec7095003ffb8a36a82424b9ebb312f8bf28913ff902320cad2253337e899e DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20180725123919-05ee40e3a273.mod 36 BLAKE2B 3c6acbd1022261065a321c6f3cfa2946b58011f45fae9b98761397eb7e5e0984dae4ea34c4f837f798ab29ca8e26ed3f07771be10e500a99ce7e5e9f4c401b5c SHA512 05f032eba0c264b186936c2b9831624a01999972d4f1bba6aa15c452407eb10d402f1ac674eb41e2d24fa66e85ae2e56efd2326fc4ecc741169b9908d7935335 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod 36 BLAKE2B 3c6acbd1022261065a321c6f3cfa2946b58011f45fae9b98761397eb7e5e0984dae4ea34c4f837f798ab29ca8e26ed3f07771be10e500a99ce7e5e9f4c401b5c SHA512 05f032eba0c264b186936c2b9831624a01999972d4f1bba6aa15c452407eb10d402f1ac674eb41e2d24fa66e85ae2e56efd2326fc4ecc741169b9908d7935335 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod 36 BLAKE2B 3c6acbd1022261065a321c6f3cfa2946b58011f45fae9b98761397eb7e5e0984dae4ea34c4f837f798ab29ca8e26ed3f07771be10e500a99ce7e5e9f4c401b5c SHA512 05f032eba0c264b186936c2b9831624a01999972d4f1bba6aa15c452407eb10d402f1ac674eb41e2d24fa66e85ae2e56efd2326fc4ecc741169b9908d7935335 -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.zip 103337 BLAKE2B 0bbcc8096a261b4697bf5cb23b3141a885a5d987db3187d776860206ee796c41e78210e5e36942fdee76862033d629f2e2fbe72522a50c846aef973c22ff6d74 SHA512 132a26cbef951377102cff398932b442920500d12e80ad50bbe05ced623d1618e0d56d95ec5fa36354f4295ef9757e4750fe91a25add4f2175d12e6245269425 -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190507164030-5867b95ac084.mod 98 BLAKE2B 23576c142554e5a22a11d704cbff1bbaf1029518ceec7f04e22aa849763a7aa5e26ad1405a8cbc0d87097264a5fa7cfa3d655cad18148f5de6209a06580722d3 SHA512 0897ba1b7b4a32f206763327e138d3b460194097d19bedb8ee1bb6889b9d188afae9439178d1c2151fbe17b7d18545cd6cfebd050bade93cd39b435b35b6acdb -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190519111021-9935e8e0588d.mod 98 BLAKE2B 23576c142554e5a22a11d704cbff1bbaf1029518ceec7f04e22aa849763a7aa5e26ad1405a8cbc0d87097264a5fa7cfa3d655cad18148f5de6209a06580722d3 SHA512 0897ba1b7b4a32f206763327e138d3b460194097d19bedb8ee1bb6889b9d188afae9439178d1c2151fbe17b7d18545cd6cfebd050bade93cd39b435b35b6acdb -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190519111021-9935e8e0588d.zip 132281 BLAKE2B d6bf2227479084b32b593783b85752df057618d94536513e9e790121c32d32fd9a45d9bbe875233ba91d951236e525e353005d7b02e5c1afc861742188be2839 SHA512 f70835dc6bb16b26ec98e99aa4e3bcba847a50140bc6df04036d0bd55edaa41888981496beb9ea3a78b2f064ca1d71528b11504e44c9b11e0726d360067535a7 DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.2.mod 98 BLAKE2B 23576c142554e5a22a11d704cbff1bbaf1029518ceec7f04e22aa849763a7aa5e26ad1405a8cbc0d87097264a5fa7cfa3d655cad18148f5de6209a06580722d3 SHA512 0897ba1b7b4a32f206763327e138d3b460194097d19bedb8ee1bb6889b9d188afae9439178d1c2151fbe17b7d18545cd6cfebd050bade93cd39b435b35b6acdb -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.mod 145 BLAKE2B 8c6ed8a28b2f2fa7e97cfcb545ff7604eeb5802bf301ecfd574c1bd5bbd59172479a55c9f42f42a13a85daeb77e730dcf5cdb78aa9b7c499f3ded0584163d75b SHA512 0d285b677b209f7973ddf036b2f2463aacd060e58db9a0721e85d40d513f8befe3605677dca1040fe9dce006e3d5d3246d876224f05c45757505696122a3153c -DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.8.zip 210499 BLAKE2B c21ca6fdd64535b648cacfb74fa2d23d05d493703cb7b775ec014a9efcf3e07557e0276901db2c309174f12800c6e2f438fadc5054f0ca233c65d3523937bebb SHA512 f9f9fe1e114a4e2fe4d27a836d3989b838b1bad72cbc1652570d26ac9253cc26aab01ca28c949b2c4441a7cb17e87c1689d21588093836873350d7342e8d543b -DIST github.com%2Fprometheus%2Ftsdb%2F@v%2Fv0.7.1.mod 1346 BLAKE2B a46e52b7acf7ff0783cc3c18a1320f66e02ab9c6879434dccc9fe182b4c7fe4594a0be504c45ee5958e1a42c781870ae754648f5bb5ef4cd45c42d78ba189ca7 SHA512 7463ee6ed6735cf101502b6c0128c75960c55d6f9e42f37531e65afc02fb35b62d882a72f95c2fd76f3d0e253e9e70a9a2df2ddf782f53c4138135b370b69d0a +DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.mod 198 BLAKE2B 9b5c175c915db6a1fdf18f440acf348e395fd2059e1f44fb1fd556e7c2c6821cfa397f88d2123f681b41fe5c5689ebc58c7c75865ef63f7f1c61fd8d323d8117 SHA512 7a54bddb87350ba24423842fcf1cd8b031be427e9f689467503d8d6a876691b209a5d2ac33d848a977d2c3890284d816fe4f2fa9391642010c96c3c0d691efcb +DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.1.3.zip 262428 BLAKE2B 6334337329e564dfddb576464864b53d4da3cd7c0988cb6b0eeefd3ea9141f36429f09c1f75d11560dc12e23751fe5c52a4c7d46cec0ed3454fd3684562bad72 SHA512 8dc2a0f05fea67aa9a64d2e91807cd9fc111be3ad4fcde2b8f53757ed38a478467f5edf68f990d124e1019cdcfef133cbd0278600df8abdc1c0971808d729956 DIST github.com%2Frogpeppe%2Fgo-internal%2F@v%2Fv1.3.0.mod 73 BLAKE2B 21e3545a4518c64daac1cf36e47a2c8e1fc8ab7402372f2e871052d0dd9d83fc2aa44babb2f8751180cb66dcd2af82ed202afbf5ad3a219c4562da23ae8ce185 SHA512 4fd07ae7c00bcc135cc10a0b34ab102a893ed8ea4708f9d38da52f98b09fb66144f970ffd8795476fd6625b25c9e48390a5b1c5c99bd0c8d536a94201dc96613 -DIST github.com%2Frs%2Fcors%2F@v%2Fv1.6.0.mod 26 BLAKE2B 8b06c3629b4e4371ae833fd22ee446fb963e300c42e4a92fb215f10500a826df54285a3d9718546fceef0e47f949034d0de0bf8aa9ca49150cd2d58e8272b1e0 SHA512 306c53774adbaefecb2283f1d90c11b088d9a45a29215ea7c627ec6d97027192bf5fe99a3cb473415ab47764802859ce9878e83ef38fdc4a87b4c7b0c5226a71 -DIST github.com%2Frs%2Fcors%2F@v%2Fv1.6.0.zip 19638 BLAKE2B 6a9cb5fa5a8e14b49ca680b43f0a8fa6cbbf2297c734c051b42d0ff0fd7e61e2f3631a406646a928b4d4b55e0492d22720d955ba497dfe1ebba0b8b81c4a1bc0 SHA512 3baaca27d8d3490ed9258d019f3b818f99a1cc081a8e2b92cc55448eb35560cf23214d02f823ed6c15cdabaac8d6ca9104368f2b0ab93ad1c88550861329148c DIST github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.mod 26 BLAKE2B 8b06c3629b4e4371ae833fd22ee446fb963e300c42e4a92fb215f10500a826df54285a3d9718546fceef0e47f949034d0de0bf8aa9ca49150cd2d58e8272b1e0 SHA512 306c53774adbaefecb2283f1d90c11b088d9a45a29215ea7c627ec6d97027192bf5fe99a3cb473415ab47764802859ce9878e83ef38fdc4a87b4c7b0c5226a71 DIST github.com%2Frs%2Fcors%2F@v%2Fv1.7.0.zip 19727 BLAKE2B 013a8f40bcdf2d1ca9cef088fd6cc2ffbdd9bd452d3514fbfe80f4cd5f7ef2e27f08ac9ccc575ac567649060137ee1d97af33fa5962cb79d53094439948f931e SHA512 533e6e55dbd95f9f79d794ac847b1db90c0b4515e9fd1d8d3d003a991ce8315012c3f8eb8a943f8772434b1e20b34562ef02630e472d31d8485e7c8125a47fb4 DIST github.com%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod 39 BLAKE2B 6d577028361a97eeb7070517fb59bc801499e5b93cb97da563e41b91ab1443583510a259283bd01777ebd435934f27212c15ed32cb5422d6d711697a7c714579 SHA512 d9e6796c9e0a1b870a32c313e22555a090e85919007d50ed4dcbcd3ccbfb90a3ab98e9f3e2d41bd32196e3d5fd57c62e6d47aa65e79efd3d05b7d73ae9bfda7a +DIST github.com%2Frwcarlsen%2Fgoexif%2F@v%2Fv0.0.0-20190401172101-9e8deecbddbd.mod 35 BLAKE2B 7251cfadfa22c0c57f7a488965d5107c55aeec8daa23dc37d845248b4c2659f6dde54ad64873a38f2bd6ae32324bfd01d5734591160c8dd2faeab2cc4f12a72a SHA512 631314183e232ea80b4cd52fe6b2b8116af4960427e7cf71b1a7c6a5884063f39ab649ff8178897d2a7ef14057e1aea53bb2e6f85a84be90b89c17866987f878 DIST github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod 32 BLAKE2B 9c0be7f17fe7a9156f124f7f67c3e15e14719d0b271f36d5d41ccfa5ff6c1b7887e0051df6eb3b29f29b40357d8e438598088b3c4f4df28fb81f030c8efa7ff3 SHA512 8b8b8958405a188b93adcdda0634aaa2961b5b8e0d3b3e1f768fb9c49c02b73cf3bb39027431e0c1d209abea6cb72a651c5776bf26391e81f4dc18c7bafa692c DIST github.com%2Fshurcoo!l%2Fcomponent%2F@v%2Fv0.0.0-20170202220835-f88ec8f54cc4.mod 37 BLAKE2B b725084a49db41d4011b5eeb41b04efed95731edb148e25aae8ffb93d2442f094c033c5090594a607fd7b292ce7aba297faac83a908dcce6edb38518edb3d93b SHA512 6c421a36f72cd46edc731ffd184180e7d1843df9f18d9d009d0555489672ce0182021c3b71ec4cb604b788745c7a5cb0066f5d53dddf129e0119ca62009b63f4 DIST github.com%2Fshurcoo!l%2Fevents%2F@v%2Fv0.0.0-20181021180414-410e4ca65f48.mod 34 BLAKE2B 01ee764606aacbfed1d971205eade7257d4a1d34e93bf0e90748210bf06b4530c08ce0cb700d87cddffb1b16484a4d40501ca3f5323f6df5288927702c4f6169 SHA512 f9bc01067de82a71b0056851e1c1e982c0447de0a00063aee820366943deb29b12674778e3497f787e848299b7b3109c525ea183688c471300743015f41a6574 @@ -1226,42 +1118,33 @@ DIST github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv0.0.0-20170918181015 DIST github.com%2Fshurcoo!l%2Fusers%2F@v%2Fv0.0.0-20180125191416-49c67e49c537.mod 33 BLAKE2B 011f9ee0544bb2bf4bbd2898fc134dae781fbbeb151ff36f1b830771a2969a2858db389e674afb16b8550a8ee5b893f1c3bd9eef7d04874cd37be9ab4e04be3b SHA512 1ec0e16e10817526a95b2c35ac44770696d74651311f4b0308208d0109dd7be10265d22f124d88837dd5ba9a45e51e4013a43244b60b956249837cee431fd483 DIST github.com%2Fshurcoo!l%2Fwebdavfs%2F@v%2Fv0.0.0-20170829043945-18c3829fa133.mod 36 BLAKE2B 9763cc748e6e6881be55c29f5454b49a5b1d87987456024636f5b0c9fdca4e80f5152fad35f8f15a757e97ca5fbcfefaeb59ed4772acf1c0f98bfcf2e0e4718d SHA512 db55dabf219a7b17fdff45db51fd93801df17516e6ca093af97475cd0bc731d108dcc5945695581b035bf410a95da1edf481dfe9b945935ec8c9bf19e081ac18 DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod 393 BLAKE2B b9d712acd24d7a0605c74920733902a8eb1f9151fe0b0c575f01e2f821705ca7323f854c5b88d5bc534ccc9155571c083d4f53c6f6892879c829146bd95729f3 SHA512 c1621afd4618d1027b2d89a8e9653d18dabe098a7004b376ca2be63955ab783879540a890ab1324c2560dae9e6f3198dacc32d5fb0afd4b5a779d29a8c28f035 -DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.zip 52967 BLAKE2B ffc9e503771f88257408708b3e0bf6f1d0c9a36dfb10d6f4f6377fa7e97599b1993f6198a8dc013d29ef17929a83562eac4f5eba1e8f51148b189a94128a4314 SHA512 d30efcc17654904bafaa3cbac0c2aae4b44f83dd347c8ae4ea77f5b637ef4371e08e6d8483ccb8a73273ff9fc91dcad43e8c536ebf5de9b69bac66cdfbf6efe8 DIST github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod 337 BLAKE2B 94ce7d2e23281061ee0ac0b1be2f8c3439c86e62c56ecf556a81123d57d819b1e0e95ec3b7c6425f13abaaa1683942b7a3d0bb8ad489577284b2a6063c777b37 SHA512 38a79599dbd09661614d54fc92149fe581575b7833e89dd73a3f754fafa4bc549c6c9078753ab8e2a85ce2be3ab81e528e29b6d19e7c329e0cb0f74896d2e418 DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.mod 43 BLAKE2B ea265a40bcaaba6e4401504643cb9bc2f775a23792b1802d6c1b665121c49db7d4d850ba03c31087fbd6f344b08349ce00a106e430c8690b8016c95318cf3973 SHA512 222b0edcf745e14eb775eac28668dfa0c52051cbf302ec441b58d75846fc2570a0fc2e616cbec68f6312a1648fd7e6997b6597b160b1a7f84c1c500a42e93e6d -DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv0.0.0-20180927180507-b2de0cb4f26d.zip 81760 BLAKE2B a5767557b0e96fa3bbbace46e08d6a2167be2c203a44ffaadcf14079a23e906ee9197c8028fb29bdfc596d4f39e7bdd29993a1a520c36c8b08c5c5b6bd6bd2cc SHA512 e204307d5a06550292a4fb6e44912260aa5a7f9fcce0883d8abb324a53673512218982b1893e7d563eb7d6313ac98a8638072aaf7b5d66d359e82832f2a8bb2f DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.mod 52 BLAKE2B 3986b09ee44d8abc94fc0348107b410db374fccd11d77b9b0b7790b376a0f79b53bb3c70537d8d68b336ec007774fdb248237b6867b1a5c1802216073592fb0c SHA512 ae6455f8889d8aeea4b555e5c34c9583ffc5990e1772e75e5f6376d9e4d7d9e5f540ed0b04bcf142523347dfc21ae20a57d6de089718877d7db4387d9dc62319 DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.0.zip 120718 BLAKE2B 4caa06b2d4c8c61d2688000ea73b7203e52a9f4318d4ce03be8c524389b719870db5fe61ef431131372d1ae1752d5f14b20f4c62faef5ccc630f92f66e746790 SHA512 60eb1355065dfa54084b5c59b88c98f872a94c75541cff15cdaec5cec915f280156d398823abf578853cb54360c3f20e98c090f6e109d1a94f018e88bf7d139b +DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.mod 52 BLAKE2B 3986b09ee44d8abc94fc0348107b410db374fccd11d77b9b0b7790b376a0f79b53bb3c70537d8d68b336ec007774fdb248237b6867b1a5c1802216073592fb0c SHA512 ae6455f8889d8aeea4b555e5c34c9583ffc5990e1772e75e5f6376d9e4d7d9e5f540ed0b04bcf142523347dfc21ae20a57d6de089718877d7db4387d9dc62319 +DIST github.com%2Fsmartystreets%2Fassertions%2F@v%2Fv1.0.1.zip 121005 BLAKE2B 96eaf62f63fba6a88b185762f0940b41b0775ac5e5e76f9268b796b8dc1aadbd9fd9827ccc82c65c5a54de4f9df6e24a58be4d09ac17365d67fd7c985a17028e SHA512 5f38713c2b92ac95a93d592c37f3ed0315ff9e563379944008fdf465b353bdf1f688a9e949ad4e0f67a2268af50d86e6e0da2785492cf3671408f3a5b638fd3b DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.mod 246 BLAKE2B 1f831472c97f821af45c0fde298f22ac4ecc8332a2273bb3bcb6b94ba578b97703292baede7838d341f5c3df46e4cfe8d1dd10444056e8ac8f92af8f571c199a SHA512 85ef875e586f0fb710078b39c6e2ab28ee7b2c894c5d0031a1c4e1b62c39106ba54c70d3a9e21698003ec4aec9b3702301229d9d8de2957d958cff58e221fed3 -DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190222223459-a17d461953aa.zip 1527746 BLAKE2B 2f3aeee121d75c7549b19240f06b85b249cdc913f3ca3311105963394c7c1f8a3d2797260022e1c2c05ad178b80dcc0486a3add7e5bc2839f3a56a24bec39463 SHA512 97e9744c21b7372e5a2fbd2039a215cf146969e80be855b99d27bbf7d7b7212e72d25acfc03b05bc52117a77c8459cc6fce275c3745dda929a78037e3161588b DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.mod 302 BLAKE2B 69fd290c3e72f4ee0597f480bae8647d80ab5c4acab21ac3ea19e847e3af4ac91a767876fac04c94c2db8bc782a24577d3478d3d0653f673609f2d57d6cc3427 SHA512 24806ff2cbf2719f50bb37cc5ffadeca1b64c7b089a1647695b45d647ddac16332504c7026813b4ab9316e53e755ad0ebbf6db9ca88179d0526ca2634e27e25f DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190330032615-68dc04aab96a.zip 1529663 BLAKE2B f5bac351e33600e56b635602a487b592e9d54623bffdccdf9c6d9ca8eff7f358c8a1de307c2ed6dcdad5c94b9d569ed7efc3eda22044a2ef8aedfba985d7578a SHA512 e3504b80d856f46158f6997bce909f8fd6345d5177b556ca63b63be5d74a7b108e1dd621483478f20ff03932551132a1a80578f3561819072952fafe81c23993 -DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190710185942-9d28bd7c0945.mod 302 BLAKE2B 69fd290c3e72f4ee0597f480bae8647d80ab5c4acab21ac3ea19e847e3af4ac91a767876fac04c94c2db8bc782a24577d3478d3d0653f673609f2d57d6cc3427 SHA512 24806ff2cbf2719f50bb37cc5ffadeca1b64c7b089a1647695b45d647ddac16332504c7026813b4ab9316e53e755ad0ebbf6db9ca88179d0526ca2634e27e25f -DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190710185942-9d28bd7c0945.zip 1529661 BLAKE2B 20cf6cb82ac7cd4f02d0bf40f1de46d4a9ddf6d02b43bca65392a83cb09b21eb00bbfe3e732ce481d7435c03c2067f587ebb845f60e72d24a1b575068b56f5cf SHA512 e0beacb83a569a436d2441496181a78d1de36950053fc227b0c757aed7ac5428daec4c3f660910ddc6c5d8bcfb352d00c2998a422f127de915428de0b1e15fef +DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190731233626-505e41936337.mod 302 BLAKE2B 69fd290c3e72f4ee0597f480bae8647d80ab5c4acab21ac3ea19e847e3af4ac91a767876fac04c94c2db8bc782a24577d3478d3d0653f673609f2d57d6cc3427 SHA512 24806ff2cbf2719f50bb37cc5ffadeca1b64c7b089a1647695b45d647ddac16332504c7026813b4ab9316e53e755ad0ebbf6db9ca88179d0526ca2634e27e25f +DIST github.com%2Fsmartystreets%2Fgoconvey%2F@v%2Fv0.0.0-20190731233626-505e41936337.zip 1529654 BLAKE2B 721d8f9b3337b148496a2489cd0b5be2b9eaebafadab6037ac4b4e097222d2ebed6aa3328c7406d01bcf8776051bb22e93a659e0d652ee11560209611837444c SHA512 3fcff7e19707df4b5c92519b4b3dfe0bb0ae656234b83e668645cafeaa2b998df73b04ddb5a175b2547c3ae1a39655f5335356fd2237152fde33fa9782eb4bfd DIST github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.mod 952 BLAKE2B 6495bf3040018dea516fea1d786940d0b87c1ef689e7c73ea893448eb9a79b2a327919c2f0552096cf23d28e2d8a2558fec70a0de1bed88a6cbcb99433916bbb SHA512 b79f489974939012a6f9d2acc193da9b03a7dde46068c39f8fa906e841e193d9c91bde2c565b3691e3a5284b02b094fe579d91787c573ab58b921bda8ca7f041 DIST github.com%2Fsmola%2Fgocompat%2F@v%2Fv0.2.0.zip 26261 BLAKE2B 2952b45702ff76f163cad4543c884ae3542a76cd3388ebfbd69fd459e225f2685ab90e81d1aa016be50375cecb9b75dea5fbefffe45f9ee1264bc8ebcc4f0064 SHA512 c3af71069eea51129e665d34df95da84ea9f0919fe08b45e9dc546343bde7dd5023e17f2ccdf98c88ee4de31f7fd2f055439591da204b8ad2c3c502fc4c060c6 DIST github.com%2Fsourcegraph%2Fannotate%2F@v%2Fv0.0.0-20160123013949-f4cad6c6324d.mod 39 BLAKE2B 0bf074876e4db2c76b675966ce28a4a32e7ac8a50c44f1f3c7f1cc929c682fd00d1fbdc5dd72d9d6dee2405d59d6699f1a8da4ed69863260258dd2574b81e924 SHA512 a6e5d41a24eded17812fae0ac1815c4e41dd3d60ac3ee667475e1801c3c654416346077d2473193be24dbdccb5d4fe7ae44acddcd354420d6a312a03df9daaf9 DIST github.com%2Fsourcegraph%2Fsyntaxhighlight%2F@v%2Fv0.0.0-20170531221838-bd320f5d308e.mod 46 BLAKE2B 44bc49585092c685651bf48824262b655c9bf38fcb810ab934c0318324cbe62af85137efc6066eb30e5c132c8a2c52851741dec0d76b28024548b122621e1ee8 SHA512 183674d9c991b53d241664459b81ef54f1c2bd4c1b841af62ddb7bd72aae76ee21514a178a0d7e17267d6a958d3eb231300969bbf3db2aa266fe2a72cb265eee DIST github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.mod 118 BLAKE2B b0789ebc03c4f451786dfec3cff4383b88988888a1789af90028d7a56697fb34a4aa6d085ab63f247d56768d47ea68ea50e1882fabcf7d03642c87a9ac141c0c SHA512 aec3d6f9133868c462db999c321ff21982eca0d15962a80583c98b1f7713ecd919146289c865998ed5f4904c4dc6356b2b1b9b69638865453009dcef990f6708 -DIST github.com%2Fspacemonkeygo%2Fopenssl%2F@v%2Fv0.0.0-20181017203307-c2dcc5cca94a.zip 96680 BLAKE2B 3ee468209c087494ff7fcd046af46e314662050f0efc8ff7bed3c4827ab81f8fb7d457b5e5586d4296e61bb6aaafbf8f75a95d0ee6394e8486c91b6d88816e23 SHA512 27dd5edb86ea76957f33f07194af9fdac88a12213c6ab6aff0e480e23d6c6dcf8405376e0a3bfacf6d35e90b877818d7e5fb2e7fed244f15a6d19c4d0a2a85fa DIST github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.mod 41 BLAKE2B 363a0a8906e3e62d21a154260b99ac9e2137c0371d6bdb779353dca278ab1812a476298d071dc37e7ef6d0537ca43ba62f6affaa87a0f4b3205d2df79ba0cf47 SHA512 f5b26bef75d816d22bf097dc591a4ebeb3e421ad0718a12829658d38301a6acee7eacb50ad4964cdca779fffac4cda61f96b38091617c666cebd5f01264d6989 DIST github.com%2Fspacemonkeygo%2Fspacelog%2F@v%2Fv0.0.0-20180420211403-2296661a0572.zip 35401 BLAKE2B ade24275d896bd0196fdf08245b8d27f39c2130319d7a1fe3e32708ebbd189d5803f05459288ee023c094676d5351cbd394a235fc4fadf3f285343f398001287 SHA512 4a6618382e9b306ea7cd8dc1fc56165570cf68ffd91a67f9393ab9f63878c4e68bddbbbe7200ac3240714cfc9e7cf569c0f28f650b3c64ae42e4ebfd036335b7 DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod 36 BLAKE2B 1ba81fe6a6b84ed40868e0fff431dc8485b912700c192d90181c22588345e7250af63160673c297129add94a41281d7f0ddca5733c2b32e20f65ca7c27046306 SHA512 d14779867dcbbe24d451e82ac72c823f80551cec89758ecd39c9e72fd75560694a0b8261726020b738ad4f447ce1093f910c12797c58b8dede38f6bc737b9a25 -DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.zip 10334 BLAKE2B dc4e7a5b7ff1179feed6341345c4a811b5c4e14bde5af612b9db64902f810e788fbb6ca224b3678dfee03e894fb1cecb5c3269f13b36ea5d52fd4dd8b8a28fe0 SHA512 33a0601227477c0fb56907b633936ee96c46bf0f8c0a9140facfc61e839f62e167e90b76fad14d4b0124b6066376eed464d0f76e08f0d308634c33eb6fd171d4 DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.mod 36 BLAKE2B 1ba81fe6a6b84ed40868e0fff431dc8485b912700c192d90181c22588345e7250af63160673c297129add94a41281d7f0ddca5733c2b32e20f65ca7c27046306 SHA512 d14779867dcbbe24d451e82ac72c823f80551cec89758ecd39c9e72fd75560694a0b8261726020b738ad4f447ce1093f910c12797c58b8dede38f6bc737b9a25 DIST github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv1.1.0.zip 9830 BLAKE2B c5d27e8b447082c0a1756354c0a414079fc3b03d0649cee8353490827ff50882a9321b89fdae4e341da1a4718f6db4c4a4c27e937c9bf31111085a449f56f282 SHA512 aff4d1c9bab0fd619496fd6948f05bc88e4147af2fb171c4ce4e44d81c114257abd55f92fee27c4b6d96fde21c6756735c32257de7b00bdb0356509cb4b97374 DIST github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod 30 BLAKE2B 9bf213acd16f9456f4a010a7c300a1fb7bf1ab248d1ac9eed7883deae7f9a6f6d0c761127b7b2c84e8dc46e7b0da2eecac9b334fd5a94d2995d56858d345edb9 SHA512 3166c898d741be502c0b733653cdca0e8ac4999fa6a5d67460b3962799287c9176b7f0243f0c0da394a4b7737ed1d1a6a2ee4f84a8917cf7076c774ba9a2a648 -DIST github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.zip 67427 BLAKE2B a05dbd2305c67d453c5e8ad02b407be2fde660ca88ebbe2c4b4ec7e89666900248cf0170c19b82bd9679c542395e893d5efd833669738b4232d4a18949569f86 SHA512 aeb73f790a1b6804aa46a4031c4df4ff9bdfe809d225622da428119ecc83b02d3f45bf58f39fc9364540a0eb7c7f3ddb66e3f6949136b3d0d52786804728cead DIST github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod 175 BLAKE2B 9077c3a2c65f4025500a3215c440b1b3856e09f1543cad7ca6a37fe5b42d51af01c2032b905c72cce445807bb311ed461c4a5fd4fe680a81ac7a1c0d94759c67 SHA512 7a0a21f6a7564b3261bccc8b1e1cd39d5d1a95bd0dd3debea914b1d37b687fbacdaee5f1dd5f1f74e4da11664c12f7ee63b484d690cd79389423cb79ff38dee9 -DIST github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.zip 12738 BLAKE2B e7a649d1c85aa7b3aa0a80123c49d6e980d8db2bdbb7c49d5871cef8c35a4f632f4de0987ae1b41b3f9b472343e22228f7e75cc7c841d446ced4f33e859039f2 SHA512 4ee0de0cb44960bd75a18648a2c7e4428cd1df1b042e24588d3ed6adee05388e6211854db1878e6ad74dec95083e439d147975082422b8ae5f3c6c7896df4304 DIST github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.mod 310 BLAKE2B 851f2542f28849f4f5c33155e5d9562aa9aa2645f1fb57e6300e2c6e98c39e0728e01a5e26d4a514435245662fccc55b8eca4eb2633a21057a6c4a5d80d24fd4 SHA512 dfde1474aedc5f36508bed07a01fdfd433967d2a6c0acadc6d985ce862da5e1cbec7ced13d55073512afbc2d925e6ad3e3cdee9511ad17b14ea8a159d8adf8e0 -DIST github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.5.zip 151788 BLAKE2B 423089b53512bb0c6d09fa259a266d879e2fcc1db85939481475f71df2dd91db5794e4492ebdf61cc6f694501d94cfe8e761f986f857f62e328e596413403304 SHA512 cf0a047c617e014bfcd50dbdf466431efba7d32186027dcd714e0a63a483d4abbbba00716265309f10477f7739406fd3710fa137a4dd6fad4a9d3c4ff84c991e DIST github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod 42 BLAKE2B 1f0af0f4518708edd09c0f02aec6103960b023a6bc178181276c54cd86b653e8bd1ddd60c5d49fa75a85f1fa0d18f670a9c2ead381da7c4f2d5e611b24f51ca9 SHA512 748b5648bf8bec4d1efe13f4dc37608e7378acc2a7d954e9d3b649a4b170a1e2d1c61338f6bee8d9007ad75a5bde87487612b47a692d6f966bca56490dcb834d -DIST github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.zip 9350 BLAKE2B 04c151cdab19dc03754e44d0f6d158e3130b6f8d5556247c13e5ff28636ea611ee41251855431d722dd57a369463a32f14d1a46ae2f68417031acd00af0358aa SHA512 6010feab0201548f0a6e9423b39d0506da0923a2022558de88eb17428346c4eb130023b4eea8640d5e52ec68aef84eab5b4aa2ca5ab761d43cf649e86089f226 DIST github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod 30 BLAKE2B 18c9fb79a291aaf800991a296c8d7b1933cf45bf56082301a64ce17ea64dd15fd304094fd4b0561bd99c48ada545dfe7fa8cf47a15593cd3166eb66657a5e114 SHA512 d08b4540b799cee9c5f088c4e1fe002c9fda86f1634380409eec1404598b84376d3ca26b4c1cbcf58bc19234ab56531ab11db8a00c6dd2e15a53f3b4ae757efc -DIST github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.zip 74638 BLAKE2B 0e9d2a40aa6e68cae69ae24f76385e840e0b53b2a4afcf89ac5ea61ee144462c113dde938c5de728c8e54e7e46dc099786ce85020bdd60859e1ac04393556246 SHA512 c33aa1ac5cf2a8441bc849a49b65a614de6c9e0c5d37a77f0b6972bdd8f25a651752743b1172e0a83fdbb384aa7e8b0685af5c5dad1bc128310c60e13cc9b56d DIST github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.mod 986 BLAKE2B 4f2c5d920b08d5802df635316a6ca72ab3346dcd2b0ec76bc9657c265eebc68ef7c8036c1993595bcdb416ea9ef0e7ea338162a7c6854c98db3a16b035c310ca SHA512 2195ba8e28e21deb5d4f78a9319e568ea5e81fb7a257292ec12d0aeaba84d1898e8d0cb51355f87d7093c3c0501cfa1f93f2e520e40edc4995260d7977fe306f -DIST github.com%2Fspf13%2Fviper%2F@v%2Fv1.3.2.zip 41977 BLAKE2B d82c7ba2e7e273670d8a3d6b01fc541f0bc8ff5eb6c3da71c8cd5a671d7cf02125d31e4763e12dd7b5c3d1255ec60d89d00e36463cdaa51c83b68dd6dbdf533b SHA512 264db96581ac8562cf2a295f2981c5c4f7785df74f0f7f1be22ba8a336b7db1eb16d73abe86bd5e6846188a24deee7f752d71e5f917cd9347895c67823205d7c DIST github.com%2Fsrc-d%2Fenvconfig%2F@v%2Fv1.0.0.mod 34 BLAKE2B 5d913b427d78844e8bea5233e2d5b49e1f81b471b663a3f03ab1d2b45759294e014b452cd515bd4764c307d78ffc061884474e360bf8ae7e9df733a9596f3aec SHA512 a764549f5020a2a7552183ba9baad7089a9fce5abf529f761dd49f36194dbfdfb3043d6625338b62e3676265eeac83a0b541783bc43ed7dbc29a6c17c72bd0bc DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod 32 BLAKE2B d698910da1ef00a70a1673b8c74105de195020ccd95d1e70c5dd1e1615210886ff9acbc9cfd03f46e99f5223b60b04695b8d362b9e0edd4e485480f802bd229a SHA512 4e366e5a60559a8863cb2a50280deb307d8bf885ca5440cce1b49a084b4cc4583b3481240125f35f161226592a43f2c0a426152f117d79b68c92c72a93f751d5 DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod 32 BLAKE2B d698910da1ef00a70a1673b8c74105de195020ccd95d1e70c5dd1e1615210886ff9acbc9cfd03f46e99f5223b60b04695b8d362b9e0edd4e485480f802bd229a SHA512 4e366e5a60559a8863cb2a50280deb307d8bf885ca5440cce1b49a084b4cc4583b3481240125f35f161226592a43f2c0a426152f117d79b68c92c72a93f751d5 @@ -1272,6 +1155,8 @@ DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod 179 BLAKE2B 3bb7cee3118f0 DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip 90474 BLAKE2B 2f79f0cac2c15acaeae764aeb640534f58ec2ae86fe88a82533498e718cf37d67c563606090ad39b38e22ffca1e63a25cd881d6a472b862ddaf150c7d329b16a SHA512 a047ba8d5f529d459fb6ae8dd39367e6f6cd2e785e90f54a5f8759ff76e4cfff990f1b8c1e0cf49c67b97ca8de36ecf8fdeb3b8f16e579aeae2d563d38da69db DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.mod 188 BLAKE2B e47d78f037db3684a329905985b02b7ddf0a609ab4c69dd4346202ed0981712d54d0fa1b9c230b50d1857854edbbf77ee144d54b12c7c46833e6542d6034171e SHA512 70adf6a86dc6f934ee611f6aefa459f1287b7294297eb9221a747427d031b10c3e606696a656be4c2746a25480c322106099ea2bb360cbe782f4d03c85cd9fcb DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.5.1.zip 91883 BLAKE2B 8bb8f10ba7a3c719844dbbcbdbb87773487921f493cf6f72d1a9fd1d553f7f7784b01b9795a5c26a352490ed6d75c29a542a0b3d7c18d8888c57e447d9d227eb SHA512 c539cd964718439715caee454b38fdb61eb5d4e20489e10f7f6a030b4b941b2ca52d33f950c0b04149962399f0c3cb5b6a90efa2d79acc0f57a7f49d508c67c7 +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.mod 216 BLAKE2B c597010cf6690e73cd265e800f0f0bbea331fb76217457b6326f5a19481eca044aa5426fa32519870b2f0f4b3bed95768a23d3138dbcc9739b7cf7e044f50668 SHA512 197e6ef15edb27ded67ccfb636c252fe522f0930ff012341a4b593f25b5dd8282e4f658970931cfdeb8f2c5ee0b4ebac6738fe7634bf00896d12270fcbf4b31b +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.6.1.zip 98541 BLAKE2B 369a625a7b05ee56619698e8067ee7b99a9d0508db655aefd23cf42f5ee1abb150a6b262be089fce6951f84fe9f1cc0fa46b75830b851888fd17f123852558e7 SHA512 073f44125d4bbce27d69b914385e05028c4d275585e275ff1ee2ffe299059646394163dde2b6b5c175ac9379d388fe34c1c874deda4138121541e2a639d7635f DIST github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.mod 207 BLAKE2B b3578856c4b568f9e23567c8da567675f81f1bbc2ce1ad2838a1b13e3af24c4fb934cb42a981e7b69c0258e64468a7e563804308b9e4e188761e3d51c3e396d0 SHA512 ab5490498bd7094429cd5ad92115675715f8d70493b8a322bd816a87952d922350c64d3d2703543fa7f36368c901a5ca6bcff5d79d023b518f134b2e21787631 DIST github.com%2Fsyndtr%2Fgoleveldb%2F@v%2Fv1.0.0.zip 194781 BLAKE2B 6d7bb4caa2e9f8019200327081d38c63977311e160697ff476ebd8642cbe00bc9633cad9a5da67c75aac08910bd6ddc50ab358af0bd98e002aad72c78fa457fb SHA512 97982b474b8804fcba6f5a4c7c1a41e5e3c3293ef669cd3b8e9ba8d2695582812ec1b2e1307da6b2c313a2e845922815ab22dab767c45de467fb1cc60603eb80 DIST github.com%2Ftarm%2Fserial%2F@v%2Fv0.0.0-20180830185346-98f6abe2eb07.mod 30 BLAKE2B cb0fc1336f2738d7d9c55f460d3983d043d78c13f79431b0f01530b780e27d3f44d7eaba3fc4170e60fb5c5a86b26a5a41f4e27fc3ba1c1cbb88ae23f5bce5df SHA512 729bbdce95d05166c0793f65ff5abe5178ffe5305a79d06ba2f447334ea9a13404ced5ccdf4d83b4782d88f46fb57b299750a14fd2cd16629696f5f7bc8a8baa @@ -1282,17 +1167,17 @@ DIST github.com%2Ftv42%2Fhttpunix%2F@v%2Fv0.0.0-20191220191345-2ba4b9c3382c.zip DIST github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod 35 BLAKE2B 159fcdee33f554db7f7bfc834a6478865e93a6258876dbb3ae755eb474786149f109ad8823484f1d72a8fe4012f24041c994e4d19ce7e684a84f85025803ffc1 SHA512 633ff61cb8fc7260fc5bd11d9bf59e9a758a3db457a9780701686b9b942b6aaabf102c7342f97d2beeeed247507f383253bc396b26581f7726538149ea4203c0 DIST github.com%2Fviant%2Fassertly%2F@v%2Fv0.4.8.mod 33 BLAKE2B 18c00dde36c8f43d69eb58d5bad8104b2280b5ad61eb2e3f7b74f410c5ec3c59dd629f4687274f8dec7f7ae90ebce5dc422ed80e0aaa747e4b6b8d4eb1d6660e SHA512 5f31873a3a87704b5ead7c17eaa3c0ad90e4a2f313ccb838581b5989edad895cf438b8540dee8edf373ecddc3bb70ee747cfebca300e9d8b724453421ca78d3a DIST github.com%2Fviant%2Ftoolbox%2F@v%2Fv0.24.0.mod 32 BLAKE2B da1ff9607ba3c4e6714dccf16e1080d4e62e4fa478ae4e9832248716f7ab751d180b8fe3529167097834e4f103b2446de6b7bff0d28aa220a204b34a253ff185 SHA512 800ca66deb2973a44b8443d5c8c7f762c637144b0a441697077e1396c06c66993c9d81e5a8856e3ba33f7d12b099bcf13b1349efc096009a8ef837da1fe96d51 -DIST github.com%2Fwangjia184%2Fsortedset%2F@v%2Fv0.0.0-20160527075905-f5d03557ba30.mod 39 BLAKE2B 2294b23592934abc3f2980317744c287e11f8409885c12667cd7cf52520e2475ad0624c9dedfc55936ffbd374a91cf900ee4a26c9786237f1bce2e0242ea15b6 SHA512 48dc4c7db3e05f5ff67f17a4e9e28baa901804205a27a6cb48edadf796a81f7a0d7094d513e87bc85bf724b5c02d1530f1cebc389742d91317b970b80a2dda39 DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa -DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20180510122957-5ad1f5abf436.zip 106719 BLAKE2B 0f277d295aec61570a6e88b7a4be28b2aedd354f635b22f183ace697e519480672a7a15fdd2f0b7a8b1a56bc72e320fc599927a6f9cae8203a71592520a1099f SHA512 f4602ea9c22eab673cd748c096dfe05c5afbebf7b006e03878dde7e7876ad4e221c6d6f91e9b0f180ab1c8ee5bcbb737f729d388addf9858d95c038c74558ab0 DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20190328234359-8b3e70f8e830.zip 133914 BLAKE2B 07d71b0a5a19a16c5991f876cadc3c2850055a5243aa3ce6d16f4726278bdb4d5b2fdf79fcf7b8b39a755203f91e24c6c07c7165037ebb18f878d50c36823f4c SHA512 0ba4a68b1d5ba1eb59f7c38b29456b033ba24121f5b61b622690f244868be27dba882c58b6c565a51584e43d6dc39ec1dfd5752810ff8dc9dfa130762e070414 +DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.mod 35 BLAKE2B 93145db80f6a2b30ae7b81d94b17c38a8a7dc1e56a45d99138c269c1fa4bc314d798eab6a55efa287650c0c07f9cc275cfbbf947e460adaa55574b2746c54ff7 SHA512 a5bf81af8bf2123aec3d1e16448f5ccbe2e8b40efcac12c97daede604549315963b59102f99c518cc2cfd00763ad92fcf45bce697d14853119ffbc81a04678fa +DIST github.com%2Fwarpfork%2Fgo-wish%2F@v%2Fv0.0.0-20200122115046-b9ea61034e4a.zip 134455 BLAKE2B f06caa3a9e9badc1e6c9feae64a955d80e6e03762ea2971af6fe85ee44571f22172b126d9393cec578f5eb88a0d36a197a31adc767a4902e7b5d6a7be7b4edda SHA512 83abce503d6e5016d5b52a9883851fa6745a5b98fa5d167a598b756c2085f8e838e463389f552f6fc18e68874f87b58bd8befae8c4752a799e378c5f671be44c DIST github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.mod 39 BLAKE2B 592a08d7d4d2433a33eb5eadf8f8f28d4176e532ca8ad34a1115596d7a2a59f84a873c76004bee6175c312733e37a025adfcf7977da47656d05471a308a0939f SHA512 69322eafd25490c1041e7555bdb5f83055aead988ad8c34a37c053c7850c63e70f319167a40eacc1503517c6781f6ae0f56e2bd88054021a298217650abcfa4e DIST github.com%2Fwhyrusleeping%2Fbase32%2F@v%2Fv0.0.0-20170828182744-c30ac30633cc.zip 9582 BLAKE2B a640f31282c54476b84b62f126a57091e07966bb4b984cfe3cc842843c60837ddc8666b82c67e442ce0b37525be89bb3cd0c5ad54b16688f3114212991666584 SHA512 60b7fb1406d2646facd62cb8af075323f8ad96398701298d137fc7f5a9c6965bc72da4fd93e3004de604a306218c62101758c4c5b2c6581d93648710f7b0a2bc -DIST github.com%2Fwhyrusleeping%2Fcbor%2F@v%2Fv0.0.0-20171005072247-63513f603b11.mod 37 BLAKE2B 7264a991ae918622dfc6ff6907b927babbc0a52a7cffa05fe058cf32c224679d2cca1b8d20379b563cf3deb4a0426cc96dd54e5fce321334fb8618d000632552 SHA512 1f511b17bda3679df1a531813a07552a91455e821e0797397d3c964708dbd381b159290099de80cf82563a5e720742a7f7f244e3882f3790a354b1efd1c844f9 -DIST github.com%2Fwhyrusleeping%2Fcbor%2F@v%2Fv0.0.0-20171005072247-63513f603b11.zip 17726 BLAKE2B 35816e58f6e1f5636ce403cbf182bf8558270a7d764fd40885f2c80ac3f39b0c7ae2085e65f25214eca673245cc28e89ddc82a35d251513107eeebc833a92551 SHA512 a7af61e3a0bc3e867e2d3e9e70b09f6d6c233ac47dbe55a64cc3b94acb4d0f0d0dd256f0e07180b242068f829bcbca93465ba427c11b00deae35dcd5dfb6c80a DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.mod 184 BLAKE2B 4b582fb070ebc2e0ff91eb5e9ca5e018cda5089612862c53a39310ba169ce3fa89ded4c28484502dcf9a4e822d250faad1f6547878fb70e55525b7a7addf83a8 SHA512 081a51357b175ac03f790e15f6b6aa100da276a5491ecb703f582af4a4eecfc52e78a7e6a4aceb846049c3ec29ef0ea558a9c64d25960dc7e82ce5790781df4a DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200123233031-1cdf64d27158.zip 16804 BLAKE2B 17016f71017bafc8a9238aed15d3e1a494b99995b1756171cd0cf0d1327568ce07dd020ad35d4e2f3097a378d2a77de0c01114358077b1d7db1475388738abec SHA512 c0dbed2230c72a3c606eefd3e579bd0e4880d163a96d8ffeb56c7267a240c81840a534e9d77fd9521704e84a995878448c012d285c45b47ed692e62ec76c8bc2 +DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200402171437-3d27c146c105.mod 184 BLAKE2B 4b582fb070ebc2e0ff91eb5e9ca5e018cda5089612862c53a39310ba169ce3fa89ded4c28484502dcf9a4e822d250faad1f6547878fb70e55525b7a7addf83a8 SHA512 081a51357b175ac03f790e15f6b6aa100da276a5491ecb703f582af4a4eecfc52e78a7e6a4aceb846049c3ec29ef0ea558a9c64d25960dc7e82ce5790781df4a +DIST github.com%2Fwhyrusleeping%2Fcbor-gen%2F@v%2Fv0.0.0-20200402171437-3d27c146c105.zip 17967 BLAKE2B 1b296f7d4a305dc3c8a786f8226f827c6a1d866dc1813f8486109c9ab415aef535760316e7ed3c57ec82cb66e2b95e8c960ba015359bde11921a153dc6de4d95 SHA512 e773b4caeecc79d14d38bc2a9f0d192f0f3c2a17b0c591f84f198b57b49e1298ee6cb1ec852192f46972b94b15817e44afdb69c451a848927e770b6c61fa85ee DIST github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.mod 40 BLAKE2B 76c7f5e75dffd0bfaaad89b05e8145fd9a99efc6181f6affe3d818d2af7d7fe15c598d2605da386f055d303668b3c64aae8d794ccb63dbaa49d97840bf555de8 SHA512 46fc7096c5a933da10bb6d54f6a741a05461a4e3758a3a07d6e8aca82618e164671a8111f811818c739eb3f5d73d5574e00ab34f97e68d396d5f52d547a890f9 DIST github.com%2Fwhyrusleeping%2Fchunker%2F@v%2Fv0.0.0-20181014151217-fe64bd25879f.zip 15872 BLAKE2B a484685778e095d3e2851c882b20cb4c5c19d97746d8155e0017b4713820cbe7bc62d29760f71459abf791dd435a9641708ff4a7ef3c4f9da94dd29b2dfef21f SHA512 29a62aa2e149fa7bdf5ef010c8bf7ba2cc009986108377095cde97a850c0ae6d5e167cc8d382eea4e224cb2f096d29b5783ae693212f93f51768939dad312a41 DIST github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.mod 44 BLAKE2B 5205c42551daa4051729774a8de8c696a5392454b5c2bf1a28eb61342b2e9432873f6c78fc249434bd1b35a60b347462e70bfec64f2d2894eea576e54f390064 SHA512 7c7e68af421a25d9b27e46ed1c210fd4a9816a615409b338659693ecbfe7ce9598b87774585f466f9ff792ca8bc2d07548bd996491b0809e3e7986d571d46e2f @@ -1304,19 +1189,14 @@ DIST github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.1.zip 42645 BLAKE2B cbd DIST github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.mod 44 BLAKE2B 3f258e70113d8588b852ba34df136477029e8937924344571ce553c26a2061d991f2238342fb516697cba616ab8dcc280affe9b26bd2cd7aec88d94a3fc77046 SHA512 c0458611ac7d80a58d92b9768c45b6b8f32a727b647af6bd7d07ddc545cf623de4a248ddee7b9adfcac6d69547c2708f3a9219a03919d5090a313b794ce612bd DIST github.com%2Fwhyrusleeping%2Fgo-notifier%2F@v%2Fv0.0.0-20170827234753-097c5d47330f.zip 5305 BLAKE2B d7c76c6df53e38080331371e4e09a79e9808d6f63c2f433d2634ea03596e59b5877fce7be87ddb70d749228479e6f264834243138c4567bc60552f9596ee7736 SHA512 fe82fc86c6d0ec991f05fd48a877a0093533cfaa1c799c5c68ecc0262de97da7a2773c53e84c8dbfe4eb7fe10be7e4fc0e2b7c3507744b593a9374475e0ff97e DIST github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.mod 50 BLAKE2B 68c589b71bd83301e6108250827431c1e445f5d77c620877868f8bd2ddbf7ed8268d747c4029994ea240b5b3a7d4fa8d1bb046ec53e79a7b5a13e7ec479ec083 SHA512 42753b8ff707832138fd659d2cacc44b466a8baedaf050ca29c59140eb6963918c5d7b0dfef9016ef67fc9a152a4669a79da8b89e65563e8544e8e018181d06b -DIST github.com%2Fwhyrusleeping%2Fgo-smux-multiplex%2F@v%2Fv3.0.16+incompatible.zip 4120 BLAKE2B 339cef6886d910e5707cc23fd88a54864450199db54f56bd4bb7f31ecc40a4236255cad8d7bd6ed66024d5da20a2e4d14d74fcea0895c43d6cfe0215b8c2d703 SHA512 e441e68e32e507eabbe1141cee85246ae7b96f1dfadd977e40a56b7c184288abd93f68204108813fcad5924ed80ed3048a017b15905836076110ca43749fb270 DIST github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.mod 52 BLAKE2B 0c8035daf27c33b1c2245e85fd38a1978cdbcb096d1a19413865ca0e1732db98d2278a5de17278a884712339307ee4a11c125787b0257cd7b6456023ee0741ee SHA512 f816ec3ddc7f652731a310c90d9f50de124ed9d499da1a8d067717e840ba834036a72798d6ad7e19d9f9d12f451c1edb062256ffc42238d8f7bd418511a8b9d9 -DIST github.com%2Fwhyrusleeping%2Fgo-smux-multistream%2F@v%2Fv2.0.2+incompatible.zip 3967 BLAKE2B 63348152648cbead5cfc395936dea33b006c97d6a013b9f9acc135807b13e7a51a084a8f76253476ce4afb797be8b261a82739bbd18c7c0478f82ea6754d52a6 SHA512 37f86cca38906393ccaa94363351ca60f62b45647bc122914835130cc5a6b74b9dbe6d725be6c20b22bfdab658f1d9c4c10e993ffc90e82d8f2ba498f93a90fc DIST github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.mod 46 BLAKE2B f071dc75aaf846d5c9f98e2a490ed0054da4be84afdaf27a157f687de9aa51297a240e4b840ec73dc92e70cfddefc1b28491a76983c5adebbaaac4f90090f72f SHA512 07b3d924699bd8272cb6382bfdbe0c655f2ecf410aaa7d6df92efe238452d3ee51469596020bfedbb736ffdd6e3e8de3406585c5b3de13718f58b6555a269580 -DIST github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.8+incompatible.zip 4427 BLAKE2B edcb584983437b870256433400b9153c3813766c843a49342d1272bd718bad45442ef97e4a0d2aeb49025f54620a69dde2225e2965edf4a02aed9abd58b1dd3f SHA512 dbb551b778b9e35bbbd111df814b74d6c6135f0b327d9263efc0ea90a53bb6c7ec4a86b89253eb2c61f1b8461baf6f0477b514c133933021f75a8690eba9f82e DIST github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.mod 46 BLAKE2B f071dc75aaf846d5c9f98e2a490ed0054da4be84afdaf27a157f687de9aa51297a240e4b840ec73dc92e70cfddefc1b28491a76983c5adebbaaac4f90090f72f SHA512 07b3d924699bd8272cb6382bfdbe0c655f2ecf410aaa7d6df92efe238452d3ee51469596020bfedbb736ffdd6e3e8de3406585c5b3de13718f58b6555a269580 -DIST github.com%2Fwhyrusleeping%2Fgo-smux-yamux%2F@v%2Fv2.0.9+incompatible.zip 4428 BLAKE2B 8ec7b57ff2d6d6734afaee88c52e2e7bb2cce5af935a8791ab22ef088c3245daf9938bc39d127e8dcfa134460d325017824af6cdeb672027c87c9e36b7301748 SHA512 da6628c0c113c3e2bb88740371bf09477a69ab675e8dde8c24fdc1c9ecb02c167d7d864b589b8a62f51cd83e00a926347a7d17ed5faaa01d751fc9cf96e78341 DIST github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.mod 43 BLAKE2B 4427965d1613885418c7b1840064b2afb6b25f8d2548ba0fcc2ca2b3c1c93be857cb41a1ac5c3f34ae2e0fe9169e6af5f1af2b125c9ff5df080ea00a9ac5a97a SHA512 44aa456980844bae90b7302032e9f98c760c4b83e648b56a008c6c706f5e8d76650b4606e7a882fbd81fdf12a1ee7b37378f0430befdf59d7ff3187df3e98703 DIST github.com%2Fwhyrusleeping%2Fgo-sysinfo%2F@v%2Fv0.0.0-20190219211824-4a357d4b90b1.zip 4171 BLAKE2B 70cec05a0b109dd8e7940e56967afdd0c0a7dd71dd69fca6123314e209eef84c8b8fced287d5b3f999f3ec9ee27bf90726d27502ab9bb0f27b2dff6b7c4f2bf3 SHA512 4892abb92413d6a57e11ec9c68dbedfc22b30a318c9cf7acb651acd7d34aa21d68fe330973e60131336420e6fd32e279fd11b1140859fbb5376a25e8cfc03cd7 DIST github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.mod 38 BLAKE2B 25a834ee4f8f0cafb4875f5425ce94867c135ea2ffd0804e1da2836225d6acb7e13794268245e7a09f8893de58840c68c8971dbcba6d30d034fcf4904ebecdf8 SHA512 898b1270401caefe114a1c95dad985d18bb3f68485ec0bf00b1dba075cebd850c9f142554376d3868305e436475ad1dd95c5e6b7674d244e7e5c0b4ba65bfd5a DIST github.com%2Fwhyrusleeping%2Fmafmt%2F@v%2Fv1.2.8.zip 4358 BLAKE2B ec3161d98201b1814d492fd77dc014d1ae2dcdd82c79665e06ce4f021bab62af5518e5342950f631ae50122517ef7b4b70f0d33e75d5239c030e12551118fc8a SHA512 d9e8cfdd3ad5645e2c174e4c6ff90d7290f0516bb47cdd113600d1446b6a9d2eae6413557b27de4931cb86e94f3381b33e4454d9d266b62476908bb45f3cb29c DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.mod 37 BLAKE2B 2e503a60b828387de4ec2979cffa8178cbc3f8cf8c6fda7267740d4ed7b458f693813b9c6b6a7f345155691885abf17d65592083beb7913c78a568c45cf2f95c SHA512 f8c2325c44a3fe4e20e86f2c8ff0776c85254cafdaa3a7411356b01ae4a0917c6e33484743438f3d9820eddae206136a024021f1c3a64c35ffcdc49b12cd48f7 -DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20180901202407-ef14215e6b30.zip 15088 BLAKE2B d635f0a744ba4a20f3712602f5e9984eb83484414eeac95f871366c02e82925de0d7cebe1dd4280bb60f9c3f95b42f122e1ca2132327bf7a7eb05e7cb81b3312 SHA512 7a38e6ed6518d34caebd25c3b4576a96aaad5c47fb33e24d998ab4be74047fa409effec87e281d89844a129327a868e878f3d452c1bfc42b4f628489d07980b9 DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.mod 37 BLAKE2B 2e503a60b828387de4ec2979cffa8178cbc3f8cf8c6fda7267740d4ed7b458f693813b9c6b6a7f345155691885abf17d65592083beb7913c78a568c45cf2f95c SHA512 f8c2325c44a3fe4e20e86f2c8ff0776c85254cafdaa3a7411356b01ae4a0917c6e33484743438f3d9820eddae206136a024021f1c3a64c35ffcdc49b12cd48f7 DIST github.com%2Fwhyrusleeping%2Fmdns%2F@v%2Fv0.0.0-20190826153040-b9b60ed33aa9.zip 15133 BLAKE2B ca6d9b5f0b139dfc138afd327d88c4c2d5a23b21ab3511b6bab3e6a2e07f63814861b680bda7768561afde5958d8971c6f87aebfda67369ccae93a25975b8120 SHA512 5faa02be71c2bf170f45fcd1e76cdb8b4f38593d04826e8931a1a29b81af41e7df5da226d7c937cb56950a95ea4888df584361b072c7972931305269e12e8e52 DIST github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod 49 BLAKE2B 2182f1e71111a9903588e6ead7b525b24628b73fab93e272db86f5a2040d66351202380dbff144a54d593f60e8f96edad9e81ffcc167638960ff86b8e2097d78 SHA512 c857a20a88d06d2695bf15467e27aca89d1df76b1d6521139d0506fe77f306e1fddf21f47cf3daf461ab9af3459bd0d17f8cce495ea3e69dc846848f81c8953b @@ -1326,14 +1206,12 @@ DIST github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba DIST github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.mod 42 BLAKE2B dc7c21a0120a7ef307200408167c085b8d2de188e6734fd4e71a1024d7e246872a0f4876c9c185a75dcf1b52d43ecff640a7d88de883fee7edfc05020a9b017b SHA512 80a0b7bf1c99e43eb8ced124dc93d58f91124474f78b3570982bf90cf68529dc58d59210ce8d16eae4ac8e55a97dd9d4ddb7a5e426eda37d6a0966dfe654886f DIST github.com%2Fwhyrusleeping%2Ftimecache%2F@v%2Fv0.0.0-20160911033111-cfcb2f1abfee.zip 3263 BLAKE2B cbee2850bfa95d4924cf4205abc701731a3501acec452a8e61daa5d858a5d26ec851455aae9496dd0cb6ae936fc1d4ed8db4944ec622d56ced23a108bed6c523 SHA512 e2c2760184d5e7e482f83835958b4fc8bf280a34aeebc9291293be4ec0f030206a8f499e219277d6bfb2b0c14998bf9375645ed990852ea05a9ed79ff0d778a8 DIST github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.mod 38 BLAKE2B 1daa08435f8c7ec0418899d686c860591f7cce8d5cacac9fcb2eedef8326d6ab9557218df27ac761222185328feff53cce8de3a06b3b97f3381bf9c93bcf031f SHA512 2e31d149b358aad683e05cfcc72527039f8399c1866c0d3689071d33863c32171b900c6abac563cd13ac103bc405e7ab3f5a887f6811864ad888735d4c2231b4 -DIST github.com%2Fwhyrusleeping%2Fyamux%2F@v%2Fv1.1.5.zip 30751 BLAKE2B ef1f1c8f32bd986aa8bab451e7212bfb845d2cf8aa729d3c8c0d4a029adfe60b9cfc4951389cca73d23a93dc2cf666fade70c62316d9eb3d9081bf722bd72c14 SHA512 04bab6c378289e58435d3ea2dbf63ed3ab0d95843287212959fe164b3b80440e948c6369c25c6c494a156770f0492baa25002d62199439d3a27e46f1b6eb75cb DIST github.com%2Fx-cray%2Flogrus-prefixed-formatter%2F@v%2Fv0.5.2.mod 51 BLAKE2B 7534a111176a6c08207d0229dc8709e1fed08bebaa2e0f462ab190a2e1be3eaf7a47df9b27a75b6bf5952dddf751980c966ce38ff46509cc663c48213becf365 SHA512 7a7c4f4015880f15e35a156ee33d868b087806b6dd34a848efff19df73daf3a9546bfa1b93c73f4ebccf7eb31e10b7ca4ca84a54b8021694a7750919b08c4841 DIST github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod 40 BLAKE2B 844d63d9c10c55eb74504d88d5e6e85641f2c4bdbbc9b4f6728cd6b1e750d1eb333e91b6eadac635a80abf328c9423fa106b18337e89dc592876cd3f04a803e2 SHA512 daffe8f4148becee3a32c90ad21454cd48255409f3edff8681ea2074623c8aa02cbb4620b7ba52aabe4ac3c24a5f256b56fd71de1da45dcd7e4e8376699a422a -DIST go-ipfs-0.4.23.tar.gz 9415138 BLAKE2B 20f9aa246e2170fd8438fbb98ee92a4b1657f1d3e059530cc8e0a1d98a84ea7bdf5de97980f7b345110bcdbd7ed999a5d814c12eaa051aecc28d2d0a47f88272 SHA512 d87513392336fc537bf9c8578d34d650482001c37c1636d64f68fe5d5291c21990c72286c26f43cb6bc2c9c9df14bae69996b60ad6744f335276d52b0cb6978e -DIST go-ipfs-0.5.1.tar.gz 1674989 BLAKE2B 3e5c7e255853040cb5d6c40d5a18f871cdbecbbc44a7cd72d3c11b54feec4e4f2ad2e3f52b73b1c7f2f930b947ae65efb29601b71cc8de518f3547f970d6102d SHA512 e36d1e3d5c19ac8a9fe65b83215df8a7007df8f58f96fba09cc4aed698869163813234767df19b07fe58a2159ed36d117d6c64ae0e49d20049a5fb04bb475b7c +DIST github.com%2Fyuin%2Fgoldmark%2F@v%2Fv1.1.27.mod 41 BLAKE2B 44917ea3a6fc533933ccd76d1594e19246c682d96311e030eeeeaeac3c126f6cd2c2de67ca410c89738918c5ab0594f1e9b2c2202c48f462c368ad31fb5feff6 SHA512 b7d81f5cbf1b55ebebcbb86ae89899ffec6fcd730144f1719947a76080f587d298d0e37a073a8768d7768ef64fc47b1673104335203a32a557f31e42a4e5a950 +DIST go-ipfs-0.7.0.tar.gz 1809980 BLAKE2B df6ce13348563c8362735a06adb715fec1f467359bd2be7fda4ad1d54e3bab6fa7e03573eff96245bd0e5ae470c8f9fa137b8bdf39a58fc1d896a512f336d794 SHA512 68c104609765ab90dabff8ea6af44b0a04fdbb9240febc5fafe3d092ec51a6e0fd9e0e9b3e8308b908e4aa912b4ad910ab2b495a23321891a93e5d284c9c0b3f DIST go.opencensus.io%2F@v%2Fv0.18.0.mod 1118 BLAKE2B 55892f4e07819a81da5ad96866ff71d2195b51051b5786e11d1e7badca1804f8e7dc3231dc17f99c9d4d00df45e7825ea389a30be8fd0f0670e9620b551efb97 SHA512 6992b5459b8f831b93b69588300374d1ee59e27056887687dd52baf61bb18c41e2ca75079cb17acc339a9d94da79bb697aa96e68af966abd73408a724ab70d2e DIST go.opencensus.io%2F@v%2Fv0.21.0.mod 305 BLAKE2B 73735106ac582b2e9d5f0d739412c3396e0df8627a6adbe810ac560998e4cf2eda12e449b6e336dd6b433eaf57c885b4a927359d0bc1bd6eba9432bb0793c35d SHA512 448e90223b8d67e4d5e4b150055ac83eacf9ef48aa34036c2e59559f21443f796e721df3c0395a829bf5d10d229cdc7beb956c8f90273e50f0989e45a82aace8 -DIST go.opencensus.io%2F@v%2Fv0.21.0.zip 289912 BLAKE2B bc8e41070dd253fa0015be310194b9e63af6d8d3edd82ed436f62726b0a5d29efc0089468a87bdcd781eb81456948389b124a4ca6f246b6f52e2a31045ab697d SHA512 2a836a1d130a6c312b055754895bee0c75fcc744aae13026ca5a301f1f31a57cfe1f8e27c7c0c20e6115426e4654bcc4a8f4adf1a9b4a18c54581671cc6676be DIST go.opencensus.io%2F@v%2Fv0.22.0.mod 408 BLAKE2B c96dc637d392594cdf710b9542b90504fb090392662ab45208d45abe2cbaac5b64e55f2f62d1afe5542d2747abef1eedfcff97cfc48d6e0649c23b9b8293f7e5 SHA512 823e1ca3a9adedb1a98f5ac900e190bd51480686872bd901cc20a394cf03be6c8fd69cfe7343e42cb6f9d3500282a8097b6c32376aeb3e92bf0b1ce3e75872d1 DIST go.opencensus.io%2F@v%2Fv0.22.1.mod 442 BLAKE2B ad5fefb1dceb9f4d1abeb0fd286f84078e266df6a832b0d13bd637d786eddda77541ee7aaf6bb461394f6eaa20dd0e9b9e6b064e6005c578e39adfca92cb190c SHA512 35fdebdd1414cf21ada15988edecbd5b9b3ed45119610063723639b0474c4eddf394765045d65f0dba192250df497510d74ea13c4be0a3c0cf84188d7c1aab01 DIST go.opencensus.io%2F@v%2Fv0.22.1.zip 292348 BLAKE2B ea956ee6b5362cbc9e980a1c2a59da2c98ee9de47813badafbe1648da63456ba6ab3e137e5a20b4c4b03e2911cea3bce55b58e48f5f4176a2704cc20df281e2f SHA512 036d96c1f69a0e930d222f3410ec2d28aaa85cb049bcb20ccfb926af98606f7ccfd800c2a93d293bd7b89d702fd8f0117db7ab7945324255ae2c9fef75501dea @@ -1341,20 +1219,18 @@ DIST go.opencensus.io%2F@v%2Fv0.22.2.mod 478 BLAKE2B 534d5c63341897b7213d30ae225 DIST go.opencensus.io%2F@v%2Fv0.22.2.zip 296264 BLAKE2B 0b0e20eb2f10b81748d55b843f8489ffb8147a8b17c063cb21fe505fcdb46feb9cc0830f3b3a91ea7034b1e7ba78df27b0b235b8500b8c1ade19f6837366aaa1 SHA512 c98a43e1bfc9f4bd1e54847dfd6b07e9af14efdbcd8d61b70c9f9701541ee2405f800b1e33cf115615a43030accb735a1235e2b7d81f54efd127e2fe5c992326 DIST go.opencensus.io%2F@v%2Fv0.22.3.mod 478 BLAKE2B 534d5c63341897b7213d30ae225708b5465b0bc5efd7b42ecfdd7fd67fe6e8fb5ec7a20345b734d07fc2793b41a115dde74a1f80510f3970aaee8f6d4effd7b8 SHA512 62820051cdf582849bd310ca77bba4b2caef82c9e6bb27e7c2de6c3bb1be0af90443770971e893d0eb466832857190a9908633d069880cb1980120c14ef391c0 DIST go.opencensus.io%2F@v%2Fv0.22.3.zip 299798 BLAKE2B 6adc76c28569e177bf40cd2d4c7de912e92bb679c29ce669bda7e001d33f8e758d3f2a413857b2b74efc676d4d0cf239e9c7acefd2cb7cc502121f07b31d640a SHA512 99fe389fbe5fed1db31068ce5c4ebf597ac5b39203e3c5f13b0f92c3e66ed0b1ee9f6f3ec0d953a7f5d02d2db46969b8d3cb642703acf43cc0df5cda61c3e355 +DIST go.opencensus.io%2F@v%2Fv0.22.4.mod 478 BLAKE2B 534d5c63341897b7213d30ae225708b5465b0bc5efd7b42ecfdd7fd67fe6e8fb5ec7a20345b734d07fc2793b41a115dde74a1f80510f3970aaee8f6d4effd7b8 SHA512 62820051cdf582849bd310ca77bba4b2caef82c9e6bb27e7c2de6c3bb1be0af90443770971e893d0eb466832857190a9908633d069880cb1980120c14ef391c0 +DIST go.opencensus.io%2F@v%2Fv0.22.4.zip 303399 BLAKE2B 86c43ff5f92434a5f549a1d7e1a4e9a64075cc5ba35a3b2bee58bdd3e264ea53c6bf5372e597e01f6ed8b2179b40c9aeba691cd165b7e26464e4f58b7f304759 SHA512 33a8ca783794ac23e1300971bd6d4fe5b41b8a444c6ed5a83669134d523565c5e58289ee2cb5938a87c1e9d257b3f756f17949d1010107e769fae6961bd521f0 DIST go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod 26 BLAKE2B 00521092f85fc8940d69a5885423e84d8e6987a29749d886be3f40c230e563b55d96779ccd2efb99e939167c93067e8d37117750cf2567fc49e70bce9e847d07 SHA512 4c66fd56c35d6d25a3091f83a2d3872ba395092c10519e052aaccf3edca281fb874a46e86e7a7294b4f42a5d5a51d3cc0f066081e5ab945288a48ac223bc19e6 DIST go.uber.org%2Fatomic%2F@v%2Fv1.4.0.zip 17248 BLAKE2B da92637915783bd89117a7b763271151c72f3494eeebdc23d4a0197f5ed394d4ceb3b105e1eb5f0892ac61e0fe617050c1d741b17ea37ff8eff42758329ca68f SHA512 ad71851217d27e72d13db4d8aa1accc069f5ad5ef3fb9ab922c79cc0e6f0ee10025d499478d99e2f46418b36b4410c5bbdf8ea421919d6f60ec95f08c904b267 DIST go.uber.org%2Fatomic%2F@v%2Fv1.5.0.mod 252 BLAKE2B d5019d6264ec35aa5c7c85d6c42130027213590c6dca568099f9c3b7c02fea9abdc969dccdc2d8d3f8abd0ce4c95727ec3f6f8dfbd2d4c1c75d4462e356181ac SHA512 15aae0e0950c9812700ba4bab0a19050c30398511df8e29fcfe496927fae3aa228761a796f150dd766377e5768beed842f06ece285e8b0e094a59288e1b86e23 DIST go.uber.org%2Fatomic%2F@v%2Fv1.5.0.zip 18762 BLAKE2B a472638d7d9fa9cf5fa1ad2bf968c1eef4b2b3e8bb6fb53066a85a7139fc8621954ff21ae09aae6887803621dabfbf00069deccb9c208e39776052d13a9f0a6c SHA512 73bff83189e7a98b144cc407d4cb267277e68f00827f86d24d9b5586fff66691b6566ad2fce11525b11a5bc3b8f0ade753ea996c7468ea5bfbae682aabb2db95 DIST go.uber.org%2Fatomic%2F@v%2Fv1.6.0.mod 252 BLAKE2B d5019d6264ec35aa5c7c85d6c42130027213590c6dca568099f9c3b7c02fea9abdc969dccdc2d8d3f8abd0ce4c95727ec3f6f8dfbd2d4c1c75d4462e356181ac SHA512 15aae0e0950c9812700ba4bab0a19050c30398511df8e29fcfe496927fae3aa228761a796f150dd766377e5768beed842f06ece285e8b0e094a59288e1b86e23 DIST go.uber.org%2Fatomic%2F@v%2Fv1.6.0.zip 19110 BLAKE2B 749dab9cbf012066f0d8eb694b6592fd4d1819dd3b27052a76940502d65900b39820091e683c1c8561f4b65262dade55db6be331b1ba8517c22ef7aa39ade990 SHA512 21b8036b73a07887db6ffb620557794241c085e01be44e45c93ffdb2aa6b47783151f37fc4023bf847e091e1150466e84a67394070d945cc4a35a771d278f61f -DIST go.uber.org%2Fdig%2F@v%2Fv1.7.0.mod 23 BLAKE2B 59fe6be686f37abe00427490370a874672cf3c342128be54727b48f45926152a07d8c4b40b004b2d7f58467d3271bf1a6e1532fa6f381f855856e34fc66693b2 SHA512 44894347454a73439ad89c544960d6e54271e7a07d32875c707e3d78d592fb9dc22a3c6ff64c955d171b7d9a46bbc6d39dc429d34e122d5e67f3a1a754e8d5b0 -DIST go.uber.org%2Fdig%2F@v%2Fv1.7.0.zip 87441 BLAKE2B e43455e40565a0059a0112629f51c7c25e5d412fe37f2314d0e5abf6d9f16880f8ac6175c0c517ab150daa20bcf69c1292aae98661ed97811a520d0d1a33bd27 SHA512 2e81ce83773175f02d94f75a04b171a1ffec5f7fef800c8bbaca2f37442fa623476b5cef452eacbef8d7c64a0dd0de4d40abc9a61d82548b041660dad167ff64 -DIST go.uber.org%2Fdig%2F@v%2Fv1.9.0.mod 202 BLAKE2B fe07962afcbe21701aacde26366721a54a871f93c0313b4ea11717b4dec60c6a182065060c7c46ef57c63663e5567701e07254ba7ea787c4477f33f31a5004cf SHA512 1ccbae01f57503a0d215e26f856df8951d7b63f53f1986cf80e98810b88107ddc856e18f9655af9494ce35ce98431da978270ed66f311894f228d3ac1dc87975 -DIST go.uber.org%2Fdig%2F@v%2Fv1.9.0.zip 96327 BLAKE2B b5246651023f3ec17cbb5514a349843a9c3770538d46335b291bd9e33c1a7db865819ade2b6e2c8e6144f45c143015911b53422f92fda37455da09b2b1ebee04 SHA512 ebf67d32434d573f8ef9abe5407877a7452cea306277717b16660bb380e93dd1f0644150538211bf79b6cd54125e282427a7b869d28acd5d8aabb34d47537543 -DIST go.uber.org%2Ffx%2F@v%2Fv1.12.0.mod 282 BLAKE2B 40e3e33cd2cf36e2ebd7df14b232440d271201035ff977db688dc0e7daadbe0169ba81b0000ee15b7a1467e15dad06b98ecb2e6ca2665e6c002816a889f9d369 SHA512 f2b9e81ce763632ebe7a8cb3651f636a00eef059065fa92969417c20efa14c365afc519304cc86a073632590919a28dcafeedf616b347eca66938b7a49a7cb8b -DIST go.uber.org%2Ffx%2F@v%2Fv1.12.0.zip 84745 BLAKE2B 0ad11a079e9a2ede84871117f9900daf2c81e8869fa86057fbc4509eb3d012f5f83230abf82c9938a9c16fb9c4f85e8d43cea45683ca87d69057a289767af2a4 SHA512 1fef5f5edfd0f1017dd341d6ba808767ac3cea3c55f0e1f0b4e4872228acab2395a3a78efff240555ba72c4f50fb103aeb727c26dbee70ba1cb3581e4bd7cea2 -DIST go.uber.org%2Ffx%2F@v%2Fv1.9.0.mod 22 BLAKE2B 54b6c629f61e285ae3da894407c1b5ecba946c52b73ad835b3feb81e395577ab418c2df13f10665b4cb35d9b7132c44349a295a3374f7e5d06d85ea5023db783 SHA512 0e63de0040adb39af22b559b5a9aeb683b3c5449680a29f6efa0b9843c9291be130897a650a55fa34174312632ee1220521d1b0342cfd9346df41de06ff77f95 -DIST go.uber.org%2Ffx%2F@v%2Fv1.9.0.zip 70104 BLAKE2B 76e650ebbbc5e9e9e1d3a173977b1f49154e7082f8d669e0c60941eeba7bfad871bd3b3d760de07722586f5f29f205119547dda86e73faef0888095de21fb0dd SHA512 6b0a7557a7aaa112adffb5de41e32890edfa5f180ec59806f1ae49852fbc71f581059078771e479ba95d18a3ef3abafc1ceb8546767d42f4b73c6fc4d82ade6a +DIST go.uber.org%2Fdig%2F@v%2Fv1.10.0.mod 202 BLAKE2B fe07962afcbe21701aacde26366721a54a871f93c0313b4ea11717b4dec60c6a182065060c7c46ef57c63663e5567701e07254ba7ea787c4477f33f31a5004cf SHA512 1ccbae01f57503a0d215e26f856df8951d7b63f53f1986cf80e98810b88107ddc856e18f9655af9494ce35ce98431da978270ed66f311894f228d3ac1dc87975 +DIST go.uber.org%2Fdig%2F@v%2Fv1.10.0.zip 97120 BLAKE2B 0a6820e91989a769927e30f7869c460ecde8899edf182254220583c0eb1102f5415103c0ac18a25030dd75e6b7f3d2c31e09885eb497061d70048b7f05f24a3e SHA512 74c5b818f867e22c1cb6fdf42553c76c6b8099239389dc5400e91b7642c66846590da9e43bfedc500bafa1534e4bd1f1efe21e935a130aa15fccb4c1eae0d47b +DIST go.uber.org%2Ffx%2F@v%2Fv1.13.1.mod 283 BLAKE2B 39decf1f0c077a91b1e1d0eec80d2657c7eab2d1240ed27537c1c78ea1e5fc7557264602a5bb2f50c0345c3b8c89cc959f6a3066c5a9a731bff476906b9e4209 SHA512 ef5dc2a339c5caea21bb39b3f34dd8338dfbf95b1aec57dc71b3d1edb3a8bd559a6fc930a12e57224b05174bb2e5a23031fe96d8f5f5bf42c5de666f9e8a96f2 +DIST go.uber.org%2Ffx%2F@v%2Fv1.13.1.zip 85580 BLAKE2B 99bbd6b3e14e1d96b6ef5005a97cf47fda5cdb10c15b81775e1f632cf4f5bcd10b4443674b228dd72a5bcaf6361dec757143bb6340e5d89af3308b3ce11305d7 SHA512 efb4a540d5bb19ab44cb5e8bde2230f1798e66e9890bdb164373ce699fa9b18c1db35cde83650ade214382b8838872ace97cd853bfdfda93466488519b5a0a42 DIST go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.mod 26 BLAKE2B fab0da84b238a586768d6a17570b79be5d12b4c2853a3f56d38a5795f971fc5d9c3aa67a69deee511a17bd1ff380a6e91c49ac0e1f74ae88f1a4f21e6e8d958d SHA512 3486b791eda341ef0be103eef291246079ccf8799b50277bdabc75a7a57d0ac196b452e28fa72493e500055b49a4f7651a634f741b7c66ba61640b196b8f7bf4 DIST go.uber.org%2Fgoleak%2F@v%2Fv0.10.0.zip 17218 BLAKE2B db837e552443d3018a594ad6fd2e80f53037361527c182aac10fa80bf486f288bd2d87985ac3e3bf0c145e713142bbf3912e1c91bfe2df02b7ded0aff569d860 SHA512 fa32c61b9572926ad39c6325fd63ce54c9550ee4e26947671c75b0c0140662d779e093d670ec741706bde6832c675991b5f0a8ca14d59e2310b1729485546ca1 DIST go.uber.org%2Fgoleak%2F@v%2Fv1.0.0.mod 312 BLAKE2B 16bf4900b2afadc331814e16a34fa8cae0cfdc78c7ea9704312f121e166c93b7811db3604f6c167fc526faefdd1eb0ffca1dd09581094bfea4847fe0f62ecd91 SHA512 8814a6b8138027c366f3ebeea9033a71019990faf1cb613d75a25498a3a74d61fa2ba662302254150370a49a2a6f56da5c54889d4465117cf8afed4ec6cd9f63 @@ -1371,13 +1247,11 @@ DIST go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod 23 BLAKE2B c60cbd3c1e15e71a99909c113b1 DIST go.uber.org%2Fzap%2F@v%2Fv1.10.0.zip 224175 BLAKE2B 839e4b40c818d9ed889cb4f00b3b4c1e1a21add9e4732da956da63d77e5b8c2211443c9c2528f3c7a6886455d94d0818932e19876cf5576318426451d10eebb5 SHA512 deff970d323e0023cb39fd3aa38c419ccafef4c10af4edc8e9b70671e5892d60229e47f176495bdc4602b1cc4f344e8724e06eb740dd7858fde006bf121d5c1e DIST go.uber.org%2Fzap%2F@v%2Fv1.14.1.mod 257 BLAKE2B 2e5fab0b1a188fb7fffa1c9ca0799fa286f74732ceb0f45a904a3620f636af45d8b30d199cbb54ca46114aaffeeaf66bfa04715abe02711d6af46bbdba9bd6dd SHA512 4922fb6e20d2f5d2fa00888b8d644c51e1b558edb69b9f7d70a883314c3e971b6f8fc707b072aa0602d4c451ca0f20983796b65edcb737e5090dda1ffed0c757 DIST go.uber.org%2Fzap%2F@v%2Fv1.14.1.zip 223907 BLAKE2B 753367cf4cb824f280cdadb38d53e80fe64909f167e443941d573ea57791f9608a47bcf0cc9d4f24cf83fd78d9ba9ddd1ae99ea3074950e29de260998d01484c SHA512 94a725d0169b78ce842b6a9f69e178fc651ce8d10a3eb54e905ce13131420cf1d6af79e32ecbcefda166ea7a50ce51fe02c929ed8c008fc33c04b1088759f7d2 +DIST go.uber.org%2Fzap%2F@v%2Fv1.15.0.mod 257 BLAKE2B 2e5fab0b1a188fb7fffa1c9ca0799fa286f74732ceb0f45a904a3620f636af45d8b30d199cbb54ca46114aaffeeaf66bfa04715abe02711d6af46bbdba9bd6dd SHA512 4922fb6e20d2f5d2fa00888b8d644c51e1b558edb69b9f7d70a883314c3e971b6f8fc707b072aa0602d4c451ca0f20983796b65edcb737e5090dda1ffed0c757 +DIST go.uber.org%2Fzap%2F@v%2Fv1.15.0.zip 226617 BLAKE2B 8f21641500327ea1bed28c3820f7103773d8955367dde6eee133b92e18631c5b5adb09a3d9f3c441f32e0ed8dd45acdccd211417a51be3be87e3b874f90897af SHA512 3fa001713fe2b81add9e841bac8ea606373d3c7d58941cfcff3f6535f252fdf608a573d614aa19981a2241fc4b7393427c1ba3c37ba4c617aa409b71ed9aa8e6 DIST go4.org%2F@v%2Fv0.0.0-20180809161055-417644f6feb5.mod 15 BLAKE2B 00f2fbcebe2e9f068ba7e7dc4da2bf2e66f09203415957a1dcf8d5ca6aee422579cbaf2efdb4383985742c6e71d41029a8c68c20a074819666d2db732cf1ed13 SHA512 5bccd8605a1e1d8381adc2f52e27c600732590e7dfe261521b149fb6519693e1124e471c61bb7e6bad8f683d684c7a652f5f11ecc766c84286a51e3837cea6af -DIST go4.org%2F@v%2Fv0.0.0-20190218023631-ce4c26f7be8e.mod 15 BLAKE2B 00f2fbcebe2e9f068ba7e7dc4da2bf2e66f09203415957a1dcf8d5ca6aee422579cbaf2efdb4383985742c6e71d41029a8c68c20a074819666d2db732cf1ed13 SHA512 5bccd8605a1e1d8381adc2f52e27c600732590e7dfe261521b149fb6519693e1124e471c61bb7e6bad8f683d684c7a652f5f11ecc766c84286a51e3837cea6af -DIST go4.org%2F@v%2Fv0.0.0-20190218023631-ce4c26f7be8e.zip 204353 BLAKE2B d597e28604dc3a8db22eae4f6282c840578e3e8d3ead8437d7211131e856cff810a65ba14b5e538c2eb7a1b12d4dbd977c2fe71d76e0e2ddee3e2aaa88198af2 SHA512 495f31ea06d3cba1602f02815ca200adaac0fb14c72380bacf68fbdb17bcd470a9d80b1d2a8511cabc8caa4c8098aafeceeb043b896d055dbded22782da9cd39 -DIST go4.org%2F@v%2Fv0.0.0-20190313082347-94abd6928b1d.mod 15 BLAKE2B 00f2fbcebe2e9f068ba7e7dc4da2bf2e66f09203415957a1dcf8d5ca6aee422579cbaf2efdb4383985742c6e71d41029a8c68c20a074819666d2db732cf1ed13 SHA512 5bccd8605a1e1d8381adc2f52e27c600732590e7dfe261521b149fb6519693e1124e471c61bb7e6bad8f683d684c7a652f5f11ecc766c84286a51e3837cea6af -DIST go4.org%2F@v%2Fv0.0.0-20190313082347-94abd6928b1d.zip 204354 BLAKE2B 5a0157a6c9b50c9023561ab979f846b2209aef2abdbcb5d0419e053588144f6640532b513854d7a57229fc36dea3cca14146abc479e4379469da0f9608a0744b SHA512 4214efef9265393ae549d274c841139a212dde16c36fc2a71321db5f975a59ccbfa3fe6cff530c72a591fee6a77294a3cb92c3954332e104c720e90c2efbf706 -DIST go4.org%2F@v%2Fv0.0.0-20200104003542-c7e774b10ea0.mod 15 BLAKE2B 00f2fbcebe2e9f068ba7e7dc4da2bf2e66f09203415957a1dcf8d5ca6aee422579cbaf2efdb4383985742c6e71d41029a8c68c20a074819666d2db732cf1ed13 SHA512 5bccd8605a1e1d8381adc2f52e27c600732590e7dfe261521b149fb6519693e1124e471c61bb7e6bad8f683d684c7a652f5f11ecc766c84286a51e3837cea6af -DIST go4.org%2F@v%2Fv0.0.0-20200104003542-c7e774b10ea0.zip 205251 BLAKE2B 8d429a3c46ba77fb65d5945051f0d55944189df13c59d737c485f284f15e5fab04422d1053a33faa1cd2a39cde505c932ef980b088dd58dfae8d24113f8868c2 SHA512 5ef1846c199589d59183ad9860c726d5c5cdfbd60d01a758b79b2770d33822fa39212f421a8aaa89fbbbd2f422eb05f78e81742d2c2b39b5fb4daa6bc0f4f275 +DIST go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.mod 359 BLAKE2B 14270eca5aea654a78b7d57482d207f8d0fd8318c0e6238edcf88a4f2701620ffa8ebb01e5c359cf6ba60b7fbda37b849e30a8e769e1bbb427770985a805a1ce SHA512 68ffa09ea935e7a98a7e8d1986c0bdcd2b157949ef288c7c7c27804700db139c4959c5f68ac5bf1108bc30e4b47e42ef75e3a3922bb74a937f1be08386138724 +DIST go4.org%2F@v%2Fv0.0.0-20200411211856-f5505b9728dd.zip 215180 BLAKE2B 5bfe47160e59c2470e605da29f1e1042303e253edcfac69720525a2f596c56366bcc5027ad0bed4c1c75ccc0042380f621d3fa6518afd3e531e14976978ce8b1 SHA512 602ea6b4caf08fd892dfad710d6831997ec019312e374348c52a0c141e2a288ab127f8af1301c9a444712208dd14199b655ef5272a2ebc4149b80bf920683e51 DIST golang.org%2Fx%2Fbuild%2F@v%2Fv0.0.0-20190111050920-041ab4dc3f9d.mod 4407 BLAKE2B 01f20c6ca234f03f65fb5bca568f3f86c4fe49308030dbd045434025ceebeb168508b7d104143fa38c8476c4a926cba29bdbdabcc7d8a1f8bbb1fa7d4bcadda3 SHA512 a207bc1fff631a38a2ce1e1c041548860885b201919aa2d729af31b9538f7616b61f695c3cbed18146ce5bb79c72823425914050b5b75115f9889fc94d29d1c6 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20170930174604-9419663f5a44.mod 27 BLAKE2B f91145aab2cee00c3567772e97f6162b9681d6cbcbe67a1b5b2f59b8f912572f705a0d1280fdced086d92efd10c50ecede26d1cfa3d5419217e5eef95097b4b1 SHA512 a88da5b983ff482a4e8b512761eeee466a8b0664b42da54ec9772c2eb3cb1bc5b7545045e283bac82552336802d8bc8efe137ba16f3530228b529366744a33e6 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod 27 BLAKE2B f91145aab2cee00c3567772e97f6162b9681d6cbcbe67a1b5b2f59b8f912572f705a0d1280fdced086d92efd10c50ecede26d1cfa3d5419217e5eef95097b4b1 SHA512 a88da5b983ff482a4e8b512761eeee466a8b0664b42da54ec9772c2eb3cb1bc5b7545045e283bac82552336802d8bc8efe137ba16f3530228b529366744a33e6 @@ -1386,39 +1260,58 @@ DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod 27 BL DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190211182817-74369b46fc67.mod 27 BLAKE2B f91145aab2cee00c3567772e97f6162b9681d6cbcbe67a1b5b2f59b8f912572f705a0d1280fdced086d92efd10c50ecede26d1cfa3d5419217e5eef95097b4b1 SHA512 a88da5b983ff482a4e8b512761eeee466a8b0664b42da54ec9772c2eb3cb1bc5b7545045e283bac82552336802d8bc8efe137ba16f3530228b529366744a33e6 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190225124518-7f87c0fbb88b.mod 27 BLAKE2B f91145aab2cee00c3567772e97f6162b9681d6cbcbe67a1b5b2f59b8f912572f705a0d1280fdced086d92efd10c50ecede26d1cfa3d5419217e5eef95097b4b1 SHA512 a88da5b983ff482a4e8b512761eeee466a8b0664b42da54ec9772c2eb3cb1bc5b7545045e283bac82552336802d8bc8efe137ba16f3530228b529366744a33e6 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.mod 88 BLAKE2B aec7d0eea1278eb3d1568d5bfb4041267501ad14457ebfcbdbc5fe21473170b8616ca4028f52af2edbfd85922cbe04540b4b0df7f69f63197698143cc5557a7a SHA512 2df49895053b36fed7ea905aa73f86568fbafd79ff0a7976679d8c77cf15025129435d9dbfd89367b611b1aadbea4f4bd1835eb4efa9ea702466e443638d379e -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190228161510-8dd112bcdc25.zip 1774389 BLAKE2B 18d80982f030cc028466a45707bc739079d0d4b9263b6a07235701fefaa8c16a73350a7817995b38acc035a5726cfb0ce8b8edce3f40714dac40c95b9ff6560d SHA512 b30cc12ec34821f5cc1b815f9258ee873ae44d63254451f4787963dba05b2aaadf5744b48515f005d692854ba9d6011733f577522a324fcf867b56a724733399 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod 88 BLAKE2B aec7d0eea1278eb3d1568d5bfb4041267501ad14457ebfcbdbc5fe21473170b8616ca4028f52af2edbfd85922cbe04540b4b0df7f69f63197698143cc5557a7a SHA512 2df49895053b36fed7ea905aa73f86568fbafd79ff0a7976679d8c77cf15025129435d9dbfd89367b611b1aadbea4f4bd1835eb4efa9ea702466e443638d379e -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.zip 1776515 BLAKE2B 5833fc2a16dec541a1362c9df7c02abe04a54e92e04eaafd5767c1a923e3a9cf90bc8d8ae0ee3c60b9745f5f0e3234350be1cafd984052353594d6e6b9fba041 SHA512 a1418dbc50d1e41495fd68ccba2ac84fed5edfd3e613c68850068afcce1136c3456e99d226674908a77c9648f16d7861edacb70afebcf3a7e73ea3dcdf8edbe7 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190313024323-a1f597ede03a.mod 88 BLAKE2B aec7d0eea1278eb3d1568d5bfb4041267501ad14457ebfcbdbc5fe21473170b8616ca4028f52af2edbfd85922cbe04540b4b0df7f69f63197698143cc5557a7a SHA512 2df49895053b36fed7ea905aa73f86568fbafd79ff0a7976679d8c77cf15025129435d9dbfd89367b611b1aadbea4f4bd1835eb4efa9ea702466e443638d379e DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190426145343-a29dc8fdc734.zip 1806150 BLAKE2B 55682fbe3693b848335acdd64fe896a8a61bb63423192160926bf89ac20435d96b3743f1409fdf423a93352fead9ada4be631f5d319c730d0067f6af6acbe12d SHA512 4e3dc4ab13b622a0941b1417c47b572b7850fc225ef8614d287e2f2532d03e8da4b6f13ef1d002323ccf1b14e1b3af206efea7a5550c0a64dbbc29705120972f DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190510104115-cbcb75029529.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190513172903-22d7a77e9e5f.zip 1812457 BLAKE2B 301ccd6d9c4644e1c0ec83af208d89f6c7e4922442c0fa4af8c9897fd2a7442bd5370b929bba223190825ec2dffa799b472c9dbda4c151c0c8a851f6330146d2 SHA512 62c0407bb1a1952482b94ebf2f4810403d56d7466062dc65b33cc26c28282806247c63737de547657d1bf58cdb45fe3b59566c4e93b5b759122a3b3d93ebdbf5 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190530122614-20be4c3c3ed5.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190605123033-f99c8df09eb5.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190611184440-5c40567a22f8.zip 1820987 BLAKE2B f9ed24af7f0f588ececbe2fcdaacb9396260a9940e06dec53826f28505770bc4536359edb0dc9c4901f47346edee26865bfca52436e57161dc67ff2d2f160304 SHA512 e60736e9052e986753acbbe012372565cd70d806a92f7daafa2af441d41bb5166d6f7c8ed4d88752f319d639d1ee5119d4b4660ec45a0d9563ba7f752e37b27b DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190618222545-ea8f1a30c443.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190701094942-4def268fd1a4.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod 146 BLAKE2B 6fe18cbe4eb6c3f6c26a4d2f9f309c48eb9ea59017125179cbfd61bb1e62395515c8cb286e1139fbcf54d37dcb2baa1a2f98dcfbcb6178b7f7df3b51929ff5c5 SHA512 f40c7b620b28b5bdc6ce92d43768af71b5869e7f0eb7872dd0f2751eed2bd15a17f7af26bf2dc5c6f7e6b816a174d010bfd22b3f8f5dd72f22dc4e4357dea842 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.zip 1844911 BLAKE2B 512a7175e03c2aac9c4f3a454a5f428e2567e2d862e362480835722c4f80b8aeeab1880510658da9b219741dc161492096ac2124ae763163103ac22255e52f78 SHA512 fc5402097646068a495867d50f55b00c2a774ddb99df373dc860c175383f8f1ab5c802bbefa55e013e45201a3077cb04f5dc8831f3ff320422623167d8c38568 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 -DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200115085410-6d4e4cb37c7d.zip 1857372 BLAKE2B a37bcb97f34eb5ee4fc7059fbf00543f27040b035d2d775b696e8512826c57b5e7b2ab33025a1630557dbc6f51a2e131079080c1d7a1572d77d3ac0f4f6497b7 SHA512 7b230e17687b29e7c6a5bc1a56cf7082097af9b673dc5c4608f0040a02e1b2b4725768f25b93b865357811782c45474967d5d279fab20c5bc88b842ac7da06a8 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200117160349-530e935923ad.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200221231518-2aa609cf4a9d.zip 1870169 BLAKE2B d77b65d467395373431c09d1318cd73d2dded32c6c7bbcaee6e59aaeed4b8ce1c183e32747f8da207762d82aa07c186af4b9c06dca9d4b5cfcaeef3bd07b3e16 SHA512 abd93a766353b4c36ff9527df785cf9789317755de2fd1d951a1847c4a9b43de197f6d7cb41ec6f17fd3b50617cfbf8e1d8c93f59f671be578a0152da0754ff3 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200423211502-4bdfaf469ed5.zip 1874180 BLAKE2B 20899757b255a90730b8f62f656f6edd1f41539f3e6b5ff1034d274b0f47ca81b862072b9a619120befd2a3260e8b7f84aeb80b51aeb126d5f2ff5f3bb843ecb SHA512 e04eeee38e8ab6ce597d4a342c71823940cc227ce5eab7c245b7035c194ac1bcd33472f1f07ffd125dd3fed59e878fb95857ff93ce90dcd49d26bcbe77d22a64 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.zip 1871909 BLAKE2B fa2d419a5bdff43385f70e3c6e61f8c1b3528b6c4e21c3105f66dc358515b6336673188ff68b27a792be9ae69d77cd26c82b7e30605b974e4435634f961c7583 SHA512 de179d887c4ed6ebba0a1cdcfa67b8312b8b2dcd9bd04589d581c872f6fa7a8606ad1376dc6933dec41938781218a91f31fa27331d80cbda30542b8cd14c5af1 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod 155 BLAKE2B 8bba3353db8ceb3b9fe40b8fd59aacde169776a4a553a069a04836bbf15e5a9a8d7a2d39feed98dac6cb890198180fda39f26b528ff95f24c5b2bbf6601b45c3 SHA512 7c5a755a03063d47d259fda0a6c2faa63c2f30b98dbac583e106aaa817d6cde3e07551e0b5e08f3a25db4c4ca45a23cebe993ae6f3d39c88deeaf2c7d8086a06 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.zip 1874261 BLAKE2B d31130353795828e794c9a0fbadafb9d745947d03c7e826fe7cc70f14002f60fb6f2f2699a875fb49b37ac3419b22b484bf95b86522b936b8136d4c627b24c2b SHA512 cdb474720f4b2b0357ac218297be03b967ccf068b05c11bc8eff60cf5383ff8738b0ebb87459a64643f3f8aac2f73967dbf616a51685ba48ecaeb15898851cea DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod 24 BLAKE2B 9615629f1bf7d58419f5b73842e19f6be3a8c8cefb217364917f1aaf68aec00de41d96700378b048d6cc385e154ed6d3db59256b4a00e9165bac7951cd0bcbab SHA512 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190306152737-a1d7652674e8.mod 24 BLAKE2B 9615629f1bf7d58419f5b73842e19f6be3a8c8cefb217364917f1aaf68aec00de41d96700378b048d6cc385e154ed6d3db59256b4a00e9165bac7951cd0bcbab SHA512 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190510132918-efd6b22b2522.mod 327 BLAKE2B 209bd1491b6099491fca7ccfd2fabb500b56112557b4b359819b5f9d18e1587b8b1551acab53ac6c222b66b825c4058ecd6adb1d886f1868b7b96ebbd5865eea SHA512 e16919da8b2302c45f8fab5f0d200f41c2c978ad31eab2b4db18310bfbe09079d738f682920ef6530f1d5f53359ddc3d4bf33fe5cefbcefd440212b31e72ef28 +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20190829153037-c13cbed26979.mod 352 BLAKE2B 5e146ef1d6b71ec65511cb06d8392eddb9a126b6194213f3b2ac6b675977dcdc77cbb3e46fc936189269583df4d0d80d2e393523c3ba4c55f1e8f9294e0dcaa1 SHA512 8ea874c371c0a582410e682cf475628b4fe6a0c0f57b05566a03343999da063250dcb987d9a863b96a8e1ee913612f323de296b4ddbcfecb166884bee06a8af9 +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191030013958-a1ab85dbe136.mod 475 BLAKE2B 3be94804cb1c692471ca7f2af890586ef57ed45a306a50fd6d6eaec9c7a161e2e4945ed11640ed30ab6f0e48ca644ec06b6b12e232b0990d4e9a08347c27491a SHA512 4b495d303e08e9bb4b43ff0c82665107a6e0a9cdd33a6d14aea491e634901fedb6341fe9e47c45fca1f89688ea3548f57ac8d62b79ef4ccb596ef4eb2e809241 +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191129062945-2f5052295587.mod 485 BLAKE2B 84e7d8f764e53841999e798d24dcbffea37708b68eb430f91e3e09f77cca2a2d36d9bfd115f0fdc9eb87e967d6ffeb0ff6f6990afd722e86b40046995f22600e SHA512 2c7217344b34e4870f799968403146268e8e6f85680aac25702f22e69bc4954d35a70a0743646ee8aa36f268c252a9c647e88b1dce8c47db302a1d3eca638aec +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod 485 BLAKE2B 84e7d8f764e53841999e798d24dcbffea37708b68eb430f91e3e09f77cca2a2d36d9bfd115f0fdc9eb87e967d6ffeb0ff6f6990afd722e86b40046995f22600e SHA512 2c7217344b34e4870f799968403146268e8e6f85680aac25702f22e69bc4954d35a70a0743646ee8aa36f268c252a9c647e88b1dce8c47db302a1d3eca638aec +DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod 515 BLAKE2B b37d0d779f058e58ca3e350248cceaac958c4e406d70872fc3682f49b862391dc75d0a17a9ecac8a5dde4339552a222ce2f36b99d8daa3ad01fa5d8632351b3e SHA512 c5f79afe4531059fbc6acf58b7ec7f1e9558df83c4936c830dcb138cbfd7dbc4bab6c0acce6e0c588cc742ec3984d4116ad3e03be815c4f64af32f7ea5024053 +DIST golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190227222117-0694c2d4d067.mod 60 BLAKE2B 1c8445e3c9313293a0551c8a2acc31a1738724b96886bdf165c74de6cf2d25b784baefa2c41997a64ff189333a8c59756fac7ac41b0ae1d4f167c38574905351 SHA512 c466f8b348acdc26208bcb782cf330a979d9af086a95f307a785884492430f11fe45d1ddc3abdc1b092654b3880a5e7a456740293935b1912a1d39b658de80e8 +DIST golang.org%2Fx%2Fimage%2F@v%2Fv0.0.0-20190802002840-cff245a6509b.mod 69 BLAKE2B f2318e92793bd626374b94e2917ea05ec2b41285c169f1461365edfa00412a798775a8ce137221e1c280983a62d03bf1cc97eadaf8668661ed4387ef5823963b SHA512 d463167481b44386a011b867d6e26eaf2fe81c750325ea89f631af7b065c5152249084c45e7195a662d9b9ddde0e81a5273d8110f73a18c4d841c155c67ea0f6 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20180702182130-06c8688daad7.mod 25 BLAKE2B 8942ceba0f85f2e950663feb634e602815315834dea89d18f7319100c19a27f15746a11b50157d682756fc922138660512cd6c8e75a2458b0cd512aba19760da SHA512 3ba23f3472e0ae7904b4250e2e3a1b04c719c4bb66c59ccfaf96fae2fb25ae0abf19f542f03c7179a312a008521acaf4ff389517b11dba8b6f581a9dded44883 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod 25 BLAKE2B 8942ceba0f85f2e950663feb634e602815315834dea89d18f7319100c19a27f15746a11b50157d682756fc922138660512cd6c8e75a2458b0cd512aba19760da SHA512 3ba23f3472e0ae7904b4250e2e3a1b04c719c4bb66c59ccfaf96fae2fb25ae0abf19f542f03c7179a312a008521acaf4ff389517b11dba8b6f581a9dded44883 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190227174305-5b3e6a55c961.mod 88 BLAKE2B ce393846b227c374753f46fc076385826a6288b0c85095e097c041b844f46b87120774c68924492c4f33c33729103a2d916d2335e24953022630314b63f606d0 SHA512 0097db2957ab98a21a73960d2a37c526e5cabcd5ba4825e44f0ec4851ef83743ae171c8dc4b6c09ea4d931c15879c247e362ca53ef8dc762b484f1ddcc483d04 +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190301231843-5614ed5bae6f.mod 25 BLAKE2B 8942ceba0f85f2e950663feb634e602815315834dea89d18f7319100c19a27f15746a11b50157d682756fc922138660512cd6c8e75a2458b0cd512aba19760da SHA512 3ba23f3472e0ae7904b4250e2e3a1b04c719c4bb66c59ccfaf96fae2fb25ae0abf19f542f03c7179a312a008521acaf4ff389517b11dba8b6f581a9dded44883 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod 88 BLAKE2B 04ec98f76d6779784920b4f746fccafdba5ee6f365edc58985219675791d417746575165985de6d866ee891b6c768d317360a4229e61f19a1f05e4f0bafdb111 SHA512 5e787e9d2c16c87238995214eab353f87d009acf8ef78889295d11dfabef73cea4e8cabfc2999f9ef0c936efb84c22963e0aa2bce4b3678680a389cbe23df961 +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190409202823-959b441ac422.mod 88 BLAKE2B 04ec98f76d6779784920b4f746fccafdba5ee6f365edc58985219675791d417746575165985de6d866ee891b6c768d317360a4229e61f19a1f05e4f0bafdb111 SHA512 5e787e9d2c16c87238995214eab353f87d009acf8ef78889295d11dfabef73cea4e8cabfc2999f9ef0c936efb84c22963e0aa2bce4b3678680a389cbe23df961 +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190909230951-414d861bb4ac.mod 88 BLAKE2B 04ec98f76d6779784920b4f746fccafdba5ee6f365edc58985219675791d417746575165985de6d866ee891b6c768d317360a4229e61f19a1f05e4f0bafdb111 SHA512 5e787e9d2c16c87238995214eab353f87d009acf8ef78889295d11dfabef73cea4e8cabfc2999f9ef0c936efb84c22963e0aa2bce4b3678680a389cbe23df961 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.mod 88 BLAKE2B 04ec98f76d6779784920b4f746fccafdba5ee6f365edc58985219675791d417746575165985de6d866ee891b6c768d317360a4229e61f19a1f05e4f0bafdb111 SHA512 5e787e9d2c16c87238995214eab353f87d009acf8ef78889295d11dfabef73cea4e8cabfc2999f9ef0c936efb84c22963e0aa2bce4b3678680a389cbe23df961 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190930215403-16217165b5de.zip 45710 BLAKE2B 7349ff19c5695071b04342199b7694af51d7a63b2a9940c72abdc8e2a03da41260da0ae09b039f1cf2c3752c7f2256164a3f0f4ce00410adcd5389cdc07e5cb9 SHA512 00ae7262d6a4f5839915a648e09a51fd939300b9f0404f2c13c062412d059b8278e3c40b2db2a927bffe74a940295834c18b77fb7dc58e88401e0b7606c13aeb DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.mod 97 BLAKE2B ec2dbdd2dad833a979dc53c8d170b4d0f5d336f4c52f36e3116cba2f3549e42fc3191fa56b81d3b9378a52322b86cf5eb0e947e6002dc1d1bee12f7a6bc2eb36 SHA512 23082eb3c6f3e4330e88178c7511b83a06288b678e517cf8ad5062943d0a0fdcea16973425a8dc01cfeacc32ec05b2dba8edb1adfba2e0bcb2d81cb5060c6085 DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20191125180803-fdd1cda4f05f.zip 45839 BLAKE2B 7fa2da9301cd760ce923164ca73b1e5c528f41421aeab0c9b90915b72ebf70f350766db083800d7f552c9253452dbac8c5dd48f8701dafb206513d46389b5638 SHA512 979b197fbfc92f81d4d376c4fcb0845a9e86a7a9350841d88ae2f3059c5192e2309df2e19edb76ef96e1e33bd957a83f95fe5c439d72731bd05fa29dda589e23 +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200130185559-910be7a94367.mod 97 BLAKE2B 6bf1c22438e1c18af0d845f52a62fc4c96b6752486228e0201a794540a44aca52a045366ef1beee95fb7780c9d0a37aa53fea0b669241d45a0529731bd91c2c4 SHA512 5e1e301c678b32fcb56cd538fb907900e5e60162a44c285e04f0fc8db49f1b31f346e736055872ae9a69fe63798823466d7f159d2ffffb4880bb39b17d4ba5fe +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.mod 97 BLAKE2B 6bf1c22438e1c18af0d845f52a62fc4c96b6752486228e0201a794540a44aca52a045366ef1beee95fb7780c9d0a37aa53fea0b669241d45a0529731bd91c2c4 SHA512 5e1e301c678b32fcb56cd538fb907900e5e60162a44c285e04f0fc8db49f1b31f346e736055872ae9a69fe63798823466d7f159d2ffffb4880bb39b17d4ba5fe +DIST golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20200302205851-738671d3881b.zip 46076 BLAKE2B a3611608a1963ae2e1e326da29671c30a1d44c7afd2698f85081aed84ae5699c16362af284e299bd4ed721d20052801a79886f0b1305f91b17a2bc5a091a3f27 SHA512 b35cfd6b7640a526780db3c3bc62a89ec731793e350a49894c1de278b8033c4105b5534b09c1ffbfedc8e020fce2f42757808550e98e0ef5d493891f971bf247 +DIST golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190312151609-d3739f865fa6.mod 27 BLAKE2B 9bc664bbb78cd778f132bf3504160bf8f6d9950342fa73c461db815f07c0ce2ae5bb2a0ac099457d022e1edf2d07e536566fea043a77aa8b21054254ae854c46 SHA512 a105eb088532321694d3adb5da0b3cdceb7781670a2d4a8a757799e3c8fde02784b981747714cfa8770ed29eb1a0228e0945ad3c363220c39108a7432fc29a32 +DIST golang.org%2Fx%2Fmobile%2F@v%2Fv0.0.0-20190719004257-d2bd2a29d028.mod 222 BLAKE2B 5f1962cf1df6a0e8d748eacc5616c3bf0b8de117d29e57da32017cfe26eafc879d33427deeb888b283eeab56d48b3c72ef1ad0aa3706a1dcaed208026eeb0054 SHA512 6689d7c55fea7d8cfb8d2b1a934ca45793dc8d4cf4fc5b001bafe676367a93b8a8c4964d8131ba145e5e41c4da50a238d6df01dd3fc336eeb18be61b49e62416 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.0.0-20190513183733-4bf6d317e70e.mod 97 BLAKE2B f6c97d5de5c229ab22e047250a7030c201829f8237b63c0b272c0453dd8ea91360f4a73f9d2b56212103c76c36c01699231d9dd31d48ba8624554b5b36499190 SHA512 15deca99c6d866dcffdd51b1334fbe7f33ce88e1fd82badec64f5155782681887e7fd959ec2686fb35adf70afbe08d743e36c6a891f43462074663357e5b309a +DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.1.0.mod 97 BLAKE2B 54b5bbd5b0908619326ca8bcebebf13f45b2838737d22008f20d3f40ae52fb4f8fdb8c73cbd98b57873aefc8b37c7328aab2bf02ad82a7d5f83e0d75a9283e81 SHA512 4e955424df3c1cce0b716fc518eed10196feb34ec718c1fe537350ce99efd0676276c2000feca6faaa6f3db8ce626e2d330f700fa43a10c73120dd13f5f1a764 DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod 159 BLAKE2B 7124b4e21f0b1ff142fe4cd5c57a22de7bc5b1c578e16e8661085d475d67573279c1ce3165e05a28c77a41eac43fe29b1d98854abdcc7b0b66167f82db652dd8 SHA512 5e225da646ef87b8bf435b745313187cecd1bd3e88660f8a90cd2a6fdcadbe8fc51f53edae4b3aa2357ad273a8e58034920bb61a1cd5898b95d3fe39f30ec648 +DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.mod 214 BLAKE2B 9a9c23e4a6fbf1e2168cc2559ab0eea14e2a1bbf32cab7eb95e276c3c1f2e06dadf6c58e39a4722211fb882e48f25a8de2969422590c62851292747f1da76b02 SHA512 16d72a943c436bf27c18ee65deb1e1a3b1283dcfcc76a49f01919df97f41ae6ef7c5fe7f95b5bb62cf6f6fee57eb9654ca27ec3bae448ebfe894f8d6d0101fa1 +DIST golang.org%2Fx%2Fmod%2F@v%2Fv0.2.0.zip 126236 BLAKE2B 48caec10f6bf4b8da7028b0358645ab0414b5526004479ceececbd68380586bfbc5b4cfb9d43f8c608565f30521a0dbfe005669db7d5e245a1b63ddc8171d3e3 SHA512 2735c124a735b4cba606e4e3de5bb39c889aae2516525f778764d987b58677dd263cb286604fee63bc45636662c11e3dcc2c9726dcaf85a26e072ccd56597b93 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180524181706-dfa909b99c79.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180724234803-3673e40ba225.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a @@ -1431,16 +1324,13 @@ DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.mod 24 BLAKE DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190108225652-1e06a53dbb7e.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190213061140-3a22650c66bd.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190227160552-c95aed5357e7.zip 1321065 BLAKE2B e8dc660327a35ccc2c6e178a0b74cbbce65a9f2da4edc1d88e790fe31e96941db47f1e2c899602fb8bfb048c236dc030feb904ec31f5e1f580ba69558a3ef416 SHA512 3c27b57945b86950d6f0f43e5942f7e1fb97e1fba3fb5a2522979a5621325c98935d453270f8086e5d1572c31a2579132ceecd37d8efecff5ca448a13af6c029 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190228165749-92fc7df08ae7.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.zip 1273340 BLAKE2B 7d42472afb905448b6ae6f66258dc805fa7c4b9c8dffb230ad6458b250fe5d564a3f6e2bf97b241ac9293c9f5885f28cc996ab7953a0ba9e97b8731911b982d5 SHA512 57852d3cd066a9eb279f909b464824041e138db1eb98c66ffbbc81259cb3f94da8ecd4d2b961646fbbe0c05156785ab2f44408b19d9f467001627d7b12fed4af DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190313220215-9f648a60d977.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190501004415-9ce7a6920f09.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522135303-fa69b94a3b58.mod 172 BLAKE2B 6c58510adee25cabb2e31dcbd88939145c6c0856ba2fd1f0b78f82ec6f2589fe0dcce736a192d145dbab8f4ba892bebb80cb6cea4ea89fbef72f7822d157c1a1 SHA512 5b9748f38f64301e4895d9d2bc106fc9bd05a29feff5cfb53e248d168af998fd1a501c1a3c27e23af663b283093d2a48393bb0798bea449256d89ae119b225eb -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522135303-fa69b94a3b58.zip 1416958 BLAKE2B b5a30c89cbbeafa44b9411d267c3f25bacba791ba37da8719c973b789672d690f85585168d0a0e629f3e0f53d8561d85abeeac93134ed31b0175e391999a515d SHA512 e4d4de60089dd3a6395b0db2d13221b55286e15b57e1009c07b909c53ca8ed521603e769c4d2f596d9827e0bfb9a4aabdf17a248faaf9943701a08f94900a6f0 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190503192946-f4e77d36d62c.mod 119 BLAKE2B e042b2716739483252c3340451b2c3c7b421fdf8d6b3e0333e979802fca66159596982ea63a24b6a64457b2757a0ad24cbb9ea032bab4c5377edf84a3ea18b97 SHA512 26b6c92eecd2208967336d4d23f8a71f77f9a73643ad1e5cd84dee36b2f626fffc806e4dd33acc284831a0961e2b363d898a747903235945fbfb665c5b4d5ef2 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod 172 BLAKE2B 6c58510adee25cabb2e31dcbd88939145c6c0856ba2fd1f0b78f82ec6f2589fe0dcce736a192d145dbab8f4ba892bebb80cb6cea4ea89fbef72f7822d157c1a1 SHA512 5b9748f38f64301e4895d9d2bc106fc9bd05a29feff5cfb53e248d168af998fd1a501c1a3c27e23af663b283093d2a48393bb0798bea449256d89ae119b225eb +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190603091049-60506f45cf65.mod 172 BLAKE2B 6c58510adee25cabb2e31dcbd88939145c6c0856ba2fd1f0b78f82ec6f2589fe0dcce736a192d145dbab8f4ba892bebb80cb6cea4ea89fbef72f7822d157c1a1 SHA512 5b9748f38f64301e4895d9d2bc106fc9bd05a29feff5cfb53e248d168af998fd1a501c1a3c27e23af663b283093d2a48393bb0798bea449256d89ae119b225eb DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190611141213-3f473d35a33a.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190613194153-d28f0bde5980.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 @@ -1449,28 +1339,35 @@ DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.mod 181 BLAK DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190724013045-ca1201d0de80.zip 1421740 BLAKE2B cd3c9ada6f26a62d6b74386e6ea23a2707a14b744da7ce34df3dbbda69971cfbc7d55ee57f3554b5a551950e999fa3a1b132656d16a8d919abc846d585893e4d SHA512 3702babc276d2ab50e806b863bce608f89552b42cbadfb1293e601667ccddf093f369b2eeda2bde9dc8205e22e31a452fd62a3ae482504d857ad91d0c6b92cc9 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.zip 1423356 BLAKE2B 412d4c362e9d11899790082861e26002ed0fe500b4d5d0b9caa1a00ee9363337d1e47cdc6a232d858d00ff10da2b581c000d20208539098a8fe1f83d012fb00e SHA512 dbd74ce99432faf080dc0980624adfea31cd74d53949a4b747e14d6464632c48e78c40a1b862305bb5650cfb1b202f2c024f44f9ffdcc104555e9f42b4eae30f -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200324143707-d3edc9973b7e.mod 181 BLAKE2B b45bdd8d5412dfa50e483e0e3431a133435aa68b1225e66fce0f2ef80f2e9d40a9f56a47d5f2faede1624fe05c80fe97c7cd56dd9a6b56ad91315cfbcf9638db SHA512 0c6baecc550358cbc908d994f81f786e62f619b197d4ba0ca5af19eb2ddf243d7f36c6174634b65e205fa5ed3b9c3393d1677c0a57c2b99ddcb252b935a2dc70 -DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200324143707-d3edc9973b7e.zip 1500508 BLAKE2B b4e20fbf80aff7d3649ee21073057d32e6363fa77565b3868a3b2a5a4c42006aed55f248520ceb34a056176f5a8e19a361baebfd218c3fb49cebb22c586a7608 SHA512 fb0d21d1b5ecab68b2daaa89cd1eff078ba77e2c7b8936f742cc7f283e5f3a1533fc8ff4cd889193dc7db4857596d929dfa3169f07383b0dd5a785ec61222d74 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20191209160850-c0dbc17a3553.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200202094626-16171245cfb2.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200222125558-5a598a2470a0.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200226121028-0de0cce0169b.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200520004742-59133d7f0dd7.mod 181 BLAKE2B b45bdd8d5412dfa50e483e0e3431a133435aa68b1225e66fce0f2ef80f2e9d40a9f56a47d5f2faede1624fe05c80fe97c7cd56dd9a6b56ad91315cfbcf9638db SHA512 0c6baecc550358cbc908d994f81f786e62f619b197d4ba0ca5af19eb2ddf243d7f36c6174634b65e205fa5ed3b9c3393d1677c0a57c2b99ddcb252b935a2dc70 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.mod 181 BLAKE2B 05d6754fa387bac4a6481ad34fb7b681064fc6443b3f70cba316fe2fd0896050e4a772fd8e1be655130a00bb5feaded4725ffea1c5dd6ba55ba55315aaae34d2 SHA512 54d242da2536da38e292b62a955b3961f7b0a9789fe36c5f7ae93577eeac734a6e5bac21a657cf71d488395278cd7683db538e16a9c853835277a800a9d43471 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200707034311-ab3426394381.zip 1503811 BLAKE2B c8cfe6b14a455a6ad71c42ce03235c650b7efe842131874cf99570716907e02c9fbe42df586e69332189518cbdcf6e2e417caebec84ce928e7ba959b66ab869c SHA512 bc3772a7ae7cd2b50f61ec8d07e7f7e1af9f24e0b737131da375a525be44dc993ee740ce0a11e0baaf0cbd81e819e3ecad889c0c7ece95086cb428e52b10a785 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod 27 BLAKE2B 078fc99b981406f4ee3f8da94c83954e80619e76ea63cf6323f27614bbcb870bb650eb5ffaac865a374f3ed0ef0619d97e11f05924c92e395e72cb73f28630e6 SHA512 53431e560b5d6a9b50f44997ef6755f71741ccca155767dd954da41f11f53a3e8d01d7e01a2bb9de1fdd551dd2e734cb65e5641cf5de5c9a8a6a25a4894336f5 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181017192945-9dcd33a902f4.mod 27 BLAKE2B 078fc99b981406f4ee3f8da94c83954e80619e76ea63cf6323f27614bbcb870bb650eb5ffaac865a374f3ed0ef0619d97e11f05924c92e395e72cb73f28630e6 SHA512 53431e560b5d6a9b50f44997ef6755f71741ccca155767dd954da41f11f53a3e8d01d7e01a2bb9de1fdd551dd2e734cb65e5641cf5de5c9a8a6a25a4894336f5 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20181203162652-d668ce993890.mod 27 BLAKE2B 078fc99b981406f4ee3f8da94c83954e80619e76ea63cf6323f27614bbcb870bb650eb5ffaac865a374f3ed0ef0619d97e11f05924c92e395e72cb73f28630e6 SHA512 53431e560b5d6a9b50f44997ef6755f71741ccca155767dd954da41f11f53a3e8d01d7e01a2bb9de1fdd551dd2e734cb65e5641cf5de5c9a8a6a25a4894336f5 DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190226205417-e64efc72b421.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b +DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20190604053449-0f29369cfe45.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b +DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20191202225959-858c2ad4c8b6.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b +DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20200107190931-bf48bf16ab8d.mod 233 BLAKE2B 5a1feba7e2d9703a864889f35f70eb18d30f9c0179a1425b0f4cddf17b03d2d187ba36346243a97820ae45e03a136ac26aedfefa09c0c7bf6cbd246eddf36c50 SHA512 9e91ec99aeb8b639d63fde3cc38f750d0a29d4a05864595beec0de0667ef9193007d89cb899b1d5ba44f0675121b2cff1e09b86bad4331378a66e15ef2f4e26b DIST golang.org%2Fx%2Fperf%2F@v%2Fv0.0.0-20180704124530-6e6d33e29852.mod 25 BLAKE2B 1f8cdb1bffe6a24b9ec7efc36b1f874d1949b34c1555db9cec96a5b0408931e9cb6629770bbf734a2348c5208ac055bc31034b6892b936ec6e60c47b1dbdbda2 SHA512 482a9cd9650c6ed60700e635b05ef1a9ba9d412adb3e6824015511dbc55aedfce3ad4636d195b76d393452b578c022df7bfe6ae868cceca5db1a8b9f08aa29cf DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 -DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.zip 24743 BLAKE2B 916fbb71a738b80833a6e9ab44ac53568d4bf6e9400b8a63197cfcc96488c60b43d602664366fd82fb686bc9b5ebf80d2d6fda3cb791a83042c03d965ab7efb4 SHA512 cbc53e045f3837deea920bc08867a45c5ef3e0afb99f7f5179653790d36a541f4e96e5f9e3e36560aff2b38ebde5a5004992c09a8e2722d44cfaf81d654de5b4 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 -DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190227155943-e225da77a7e6.zip 24987 BLAKE2B 5514571e2f35de919bf97d652901664298019c210e05e2f87c687e5ce8b83076ad2404f9aff704389f08ecb1a145f726f08a74c79a6c8b473545d79b426c589b SHA512 fe30b59f79b7819ecf634d22581da90684b2d76a1673a77e42f86dff9c418f85622b003982df7b066a3a8fd07f0dd8204c91c4733eeabb7fac4626ab43bd60b9 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip 25620 BLAKE2B 770b7dc9bdd8999123fb58cfd951dcbd5592172fd394f1a70abc918e3d7adee5273da1c757f95be15a0ede27f4fd00804564828251ab308d6fc4b116415ac144 SHA512 5a9db9d294b5f2121f3de994da38161f013a0512ad64aaf51f1c7a94b7cdb1ec4102f7c457d29f9bde209e8c254f6ad034c294af3649dbd10d5349c05874f74c DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190911185100-cd5d95a43a6e.zip 26635 BLAKE2B a464a4ad04b36e50cfe966e6e6dc299c0f8b45d0f4198ba64483bb70ab815d033cec5cde60753b76dd1fbb16fed087b41179100a2002b0a61cd4a08f9de779fc SHA512 ae6f29d5f7790b37d1722d65f31708670bf19f429c60b2f6633756ecd40e47c1fab40fc128e0d70b3b6ed0ba47ce5f970ce5f4e55b8f1fa407d2efee7444b646 +DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.mod 25 BLAKE2B 01f7f78a0324ca728efd4d662ea130d7e200ab25805125e472720ca01feaaf2625b15bf53f51837a6913e35e060a19018928a38851d7445f39e6e42e237dfda2 SHA512 a9dd073f69c5be1153aaab6e84dd3bb1610a0df8b9882ca4c486c6625d4b5201e5032f86e5014421358dff564d93c4e67f20e5fd1d21ed5e259ddfbc90af43c0 +DIST golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20200317015054-43a5402ce75a.zip 27020 BLAKE2B 0ba91b5129426896f009357980019a5e1c4cd5568108e615346a2d65421a6a595035069e6366d98af40260a020f90f6b55214e273a7dc92a80d3faee540bc0d0 SHA512 a9408e27c31248e5e6b24c0f255512c97e73e0a972a94e0bf0b0181eae42c1213e02e6988a71178abb05c2624da2e6b7beb12f2a494b630753a083dc3133b58d DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181029174526-d69651ed3497.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181107165924-66b7b1311ac8.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181205085412-a5c9d58dba9a.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c @@ -1478,43 +1375,49 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod 24 BLAKE DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190222072716-a9d3bda3a223.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190228124157-a34e9553db1e.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190302025703-b6889370fb10.zip 1590920 BLAKE2B 502a4872448dfc52cf45d886e617f607189a3a08ed9b7b259414ece16bddf994da66244480ffd4ede0bd3d6e2129814b56fadcc55c1eaac1472dba61e14cd864 SHA512 2b518b7d0ef99f47fbe8831664e55a35eae58e2cabfb6ccf790ff0f9c82b62a9d891d7e397009ff7825f66b1d641f0baf55eed43d3898331789c1a3d0615a360 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190312061237-fead79001313.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190316082340-a2f829d7f35f.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190405154228-4b34438f7a67.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190502145724-3ef323f4f1fd.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190522044717-8097e1b27ff5.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190522044717-8097e1b27ff5.zip 1778731 BLAKE2B dac071a90449533f9ed37eeb6747daedb0561d49fc3d852210209faf57f20d6ba58e87eb4150ea12d1d57f3a51288cc9b84483a5ea6a4d647fd971d87d999e8d SHA512 03538769554b6276f66dbe9024aaf28e2e4a6bcf357e94e3fac8d633be0da28a0f4a7347f7b7c28cf1850253bce604bc99158ec7766aec30396995a36357291b +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190507160741-ecd444e8653b.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524122548-abf6ff778158.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190524152521-dbbf3f1254d4.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190526052359-791d8a0f4d09.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190606165138-5da285871e9c.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190610200419-93c9922d18ae.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190624142023-c5567b49c5d0.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.zip 1810658 BLAKE2B d4e1a204bb36aba06bbc0277fb2ef503c3515d11e08d2c92945b13a87d891300484c6b49bf5604797b2860fc70ae43e2ef3930c0b6de2135e4d62b2a96f1592b SHA512 a2bd43bb6053854e546abf3af64944b19f54441301ecc477f2e5fddddbe65921826f1181971aca1c3660f462a1f3d7e15213d5643d7eee6a7088ea5d407abe67 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190726091711-fc99dfbffb4e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190904154756-749cb33beabd.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191005200804-aed5e4c7ecf9.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191120155948-bd437916bb0e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191204072324-ce4227a45e2e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191228213918-04cbcbbfeed8.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200106162015-b016eb3dc98e.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200122134326-e047566fdf82.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200202164722-d101bd2416d5.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200212091648-12a6c2dcc1e4.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.zip 1918660 BLAKE2B 015e9ad74f145cdd7cdeb55d7b2d8949d6e7baedaae36089fa53cb257b4fb49830aeb299ea3a1f782b2f033443a18d009cafcf0211d1709d4d37b4b97d5f3d08 SHA512 24a653028d079c52ba8128d9f43452d2ecabd374c8eba36d44704c3f70cac50761597c7b7bb6524ba50fcde696fbcded57c29f04f35e42c62e23a9790852bb56 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200420163511-1957bb5e6d1f.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab -DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200420163511-1957bb5e6d1f.zip 1471954 BLAKE2B 0ed87e29adaaf2e15dfa803fef857f82f73f5e45864a2d52a21e94a1436fd22773b5921c229472ccdb1e715c081f4865feffe618ddbf258a1ebdac5636386b84 SHA512 bf736828279ead6fabd59a1608870ed72ea610e32effb1c65015c925d214e81712f636ae60e39636dc7820e88a4e6a728f18b3f08b517d9c5877cb08f85bfa60 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200509044756-6aff5f38e54f.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200519105757-fe76b779f299.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200615200032-f1bc736245b1.zip 1478946 BLAKE2B 798d7aa002eaa8b42880345aa5c09b0577e29e4bcca817b184c0fccca25a1def1b50cd815df20b3368ab117f831d56e33177baefdebafa018da052454330728c SHA512 9a5a239ed5e708b41be86984343c66e8e8f11e8386bcd8db9ba91a110e7390206790fb8e6099bfd2b51ba59e49f81324eac9b870f884f67aae05015b20da1531 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.0.0-20170915032832-14c0d48ead0c.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d -DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.zip 6349244 BLAKE2B 0aa464ac7b7d17fa7ec0627b64cd2301ed4f2819f837807db7a55725950dacb40be899b5148b07ea31b51530818edcccc6444a9800755e1d369ba8f1bce949b0 SHA512 982d78f580a7eac99a0c51e6f1fd2b2c3b91f56cd5e2b96fe960510049f7daf5915264f73f55f05675eee232a52998f9667fa84a9ccba15ed7819e4c93f583a7 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20180807135948-17ff2d5776d2.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod 88 BLAKE2B f3dd520e0e4e9b57feab62ecabb9169f37f1ce49b2846b949f9266f807767d38f55e4aa8ea006229c6f81cfc1e2c9dc0d1e3c186235e416dfb90fe7e04751d07 SHA512 d9361afb453b10c9d02787568ec33ea4c97a115899c6b3d1a1246547a749244e9218475ae5ae9f741d9b355260d2d3c33852673e805fcdd5f26f3ca40f035884 DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip 7430601 BLAKE2B d2403817cb6b7e32462b90995412c4e63cfdeaf3710fc9386f4b708e0ae2be9593649e923f0d844dc4420b177e42e7abfa7657e03e27fa08be9e98d76da4cb9c SHA512 8d8dad296f1497f352e94c416711dbb1f468901a3fd2dfd0a9c67f2d59306ea611d77917289521d2845f6958f571f6c3fe2d3dab289524d8145489d5b386fbaa DIST golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20180412165947-fbb02b2291d2.mod 25 BLAKE2B ba9e31cf2a4ab0f78a5c67d78026c2ef9571bcff7c820ce212637c8360420af274bfc47cb14bbc3df24457a4d3acb5dee38448a848abbd4e82232bef05b6b2e9 SHA512 6e51811c33b84ddd4a7548013579204266e466bd2e87aa9b6e34892570aa09c607ffa806f8a420474e26ca0e277ab23c81bb07b0ebf2c3b6ed193014c1bc37a7 DIST golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20181108054448-85acf8d2951c.mod 25 BLAKE2B ba9e31cf2a4ab0f78a5c67d78026c2ef9571bcff7c820ce212637c8360420af274bfc47cb14bbc3df24457a4d3acb5dee38448a848abbd4e82232bef05b6b2e9 SHA512 6e51811c33b84ddd4a7548013579204266e466bd2e87aa9b6e34892570aa09c607ffa806f8a420474e26ca0e277ab23c81bb07b0ebf2c3b6ed193014c1bc37a7 +DIST golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod 25 BLAKE2B ba9e31cf2a4ab0f78a5c67d78026c2ef9571bcff7c820ce212637c8360420af274bfc47cb14bbc3df24457a4d3acb5dee38448a848abbd4e82232bef05b6b2e9 SHA512 6e51811c33b84ddd4a7548013579204266e466bd2e87aa9b6e34892570aa09c607ffa806f8a420474e26ca0e277ab23c81bb07b0ebf2c3b6ed193014c1bc37a7 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 -DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.zip 2585456 BLAKE2B cea45d54359b81dc553f826f3b6496fc1e4d7fb99dfb8397b2c21d62b7439836ad28821600ee6ffec67095bb35a2a281afe77db72cf208e9557f018fe8a1ac7c SHA512 f6d44993b03e54a30fe6562ff95491c807d851bf028ed5c713f019b8d5fa1985efa023e887cc91020137a4b4611a7fb12460be16488ac074b32b64eb20bba2b3 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180828015842-6cd1fcedba52.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181030000716-a0a13e073c7b.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 @@ -1523,22 +1426,39 @@ DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20181130052023-1c3d964395ce.mod 26 BLA DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190226205152-f727befe758c.mod 194 BLAKE2B 94f62204dd4fd9b865aca70366a7a7754e2e92ed27591beaf789b268ad272dfb34ca0906d888c608393b4c71bc5c9f975fc86c164528ed7d0390e41b66206ec4 SHA512 8b68acbca48744320e64a70a983a471e9e2fc2249562064b10256269033473fd50264b6544646227fb666f075c4f266df1835ca3f88ee679bb97d34bf62bd195 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod 87 BLAKE2B 32cb406deea05323b1121386bf61f344f8eda0b5370e95bb73828ce0bea50bee375ae3e9b076b9d683a4d89561709c5e97e45e6b08344fbdf6b03b3ce4398dcd SHA512 18ae9b2f54109b4ec5cdea433ee0e3b7006e4d5ea57022d6e8151d4d364735a6b55cf7b5eb2f43b602ec786b2b6819ad78dfc33151ee1a63a0b1199f54ce34a1 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312151545-0bb0c0a6e846.mod 87 BLAKE2B 32cb406deea05323b1121386bf61f344f8eda0b5370e95bb73828ce0bea50bee375ae3e9b076b9d683a4d89561709c5e97e45e6b08344fbdf6b03b3ce4398dcd SHA512 18ae9b2f54109b4ec5cdea433ee0e3b7006e4d5ea57022d6e8151d4d364735a6b55cf7b5eb2f43b602ec786b2b6819ad78dfc33151ee1a63a0b1199f54ce34a1 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190312170243-e65039ee4138.mod 87 BLAKE2B 32cb406deea05323b1121386bf61f344f8eda0b5370e95bb73828ce0bea50bee375ae3e9b076b9d683a4d89561709c5e97e45e6b08344fbdf6b03b3ce4398dcd SHA512 18ae9b2f54109b4ec5cdea433ee0e3b7006e4d5ea57022d6e8151d4d364735a6b55cf7b5eb2f43b602ec786b2b6819ad78dfc33151ee1a63a0b1199f54ce34a1 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.mod 87 BLAKE2B 32cb406deea05323b1121386bf61f344f8eda0b5370e95bb73828ce0bea50bee375ae3e9b076b9d683a4d89561709c5e97e45e6b08344fbdf6b03b3ce4398dcd SHA512 18ae9b2f54109b4ec5cdea433ee0e3b7006e4d5ea57022d6e8151d4d364735a6b55cf7b5eb2f43b602ec786b2b6819ad78dfc33151ee1a63a0b1199f54ce34a1 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190328211700-ab21143f2384.zip 2564153 BLAKE2B 17b70a9d5cff84d5b12dfe1165aca6f2abdb38e2d9f83daf8b715b9e4b16fc230f8f82612f9502a4118ed63104331a1d3eec4e324ef8a57b9c07bfce5b056f04 SHA512 2e381b4ddbbc3e31256170aff49d38475ce26d1510615793fe5d23d99cfbed1732e75cf6419375b491e740397af39aac664d03d72e2a93b2b5293d7fbd394cf4 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190425150028-36563e24a262.mod 146 BLAKE2B 78e7f7eaadf244c74a90edd8a3e8d092b255cc9246320ca921558467fa02e84ccc68bc6c4d1d5d4baf3c9cab7da37cf6515e4d4889d490d21f374fc4415f1733 SHA512 e9c7b67e28905435e1420333a531e6c0a8f025dc3023f22e5067d5395c8d081bd7993ceeb6ae08c4cd2d1f13aa0f46274a8788e1be085e4b12eaef785f3d7213 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190506145303-2d16b83fe98c.mod 146 BLAKE2B 78e7f7eaadf244c74a90edd8a3e8d092b255cc9246320ca921558467fa02e84ccc68bc6c4d1d5d4baf3c9cab7da37cf6515e4d4889d490d21f374fc4415f1733 SHA512 e9c7b67e28905435e1420333a531e6c0a8f025dc3023f22e5067d5395c8d081bd7993ceeb6ae08c4cd2d1f13aa0f46274a8788e1be085e4b12eaef785f3d7213 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190524140312-2c0ae7006135.mod 146 BLAKE2B 78e7f7eaadf244c74a90edd8a3e8d092b255cc9246320ca921558467fa02e84ccc68bc6c4d1d5d4baf3c9cab7da37cf6515e4d4889d490d21f374fc4415f1733 SHA512 e9c7b67e28905435e1420333a531e6c0a8f025dc3023f22e5067d5395c8d081bd7993ceeb6ae08c4cd2d1f13aa0f46274a8788e1be085e4b12eaef785f3d7213 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190606124116-d0a3d012864b.mod 155 BLAKE2B 538451f0cc08c6752c81241193caad56fcb8fb7a5cdc2ad6840ae44a1f5c3e1539067634352ded872712c84da7046b32053f9634da76c4888eec9046035a0935 SHA512 5823f6ea0fb08243f243a9577cd31397999bb387c8e29312304ca2dd0e73391cad60891a2a1181ac5fb665c1b01824933c295289a5d4cd580fc77f1bd828955b DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190621195816-6e04913cbbac.mod 155 BLAKE2B 538451f0cc08c6752c81241193caad56fcb8fb7a5cdc2ad6840ae44a1f5c3e1539067634352ded872712c84da7046b32053f9634da76c4888eec9046035a0935 SHA512 5823f6ea0fb08243f243a9577cd31397999bb387c8e29312304ca2dd0e73391cad60891a2a1181ac5fb665c1b01824933c295289a5d4cd580fc77f1bd828955b +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190628153133-6cdbf07be9d0.mod 155 BLAKE2B 538451f0cc08c6752c81241193caad56fcb8fb7a5cdc2ad6840ae44a1f5c3e1539067634352ded872712c84da7046b32053f9634da76c4888eec9046035a0935 SHA512 5823f6ea0fb08243f243a9577cd31397999bb387c8e29312304ca2dd0e73391cad60891a2a1181ac5fb665c1b01824933c295289a5d4cd580fc77f1bd828955b +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190816200558-6889da9d5479.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190911174233-4f2ddba30aff.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191012152004-8de300cfc20a.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029041327-9cc4af7d6b2c.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191029190741-b9c20aec41a5.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191030062658-86caa796c7ab.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191108193012-7d206e10da11.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191113191852-77e3bb0ad9e7.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191114200427-caa0b0f7d508.zip 2914364 BLAKE2B dbeb91ffa5a02b24e51298a85d7fa07d32b55c322a30e07618faa0c6745f0a2744bc90874365877ad160bf5ff2590be86a73251dd5ca490c2c159c5f3d7bb784 SHA512 d8549a653e26f88b46903a4be38e41991341f0c0452f12c91dbdac991209bfb0e260adc732f31cf4f7aeaa3ba02524a8061819b193140b0547d0f94190573839 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191115202509-3a792d9c32b2.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191119224855-298f0cb1881e.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.mod 212 BLAKE2B ab1d99a25eed3af5426d8a58d249b827e4d30a046302df72c7e0b59955e65b636f4645c5c436bb21ec54ec3745b9996bce92d29826ad93cbc9120a06dc19b49a SHA512 6a0316ac3b01aba3f186b5db540a368ab780a821252f7f0975f9e44afea9170c4b3e7027dc5f79a54ebc6af290cbb59b876d3b53bbf26fd05fc3a80a06fae109 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191125144606-a911d9008d1f.zip 2908295 BLAKE2B 2dd707c5fcea8b16c24aa85c6ed98c0cdd26440a04a3f4c61d55e315f1959e133af3644dd7b0480c007367806e56b64e2a80f0680551d77c57b84f8a810725e8 SHA512 4f1931e839f7ccbdefde629b5ace77a463104179b58818963eebe42548185b5c8597c0632735ec25a6d0eccf85d8294eabcededcfda12b29bd21c4fc7e84aad5 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.zip 2919721 BLAKE2B 16a17a96f828bea7eaf46111e42e6cc7cbf722e0580c5698637a325f083b31e7a132d4aceed0c9bede8bc3c7aa89a9d71321221f0fe5b0c829d0067d9c8cdca5 SHA512 087d2ac531dc56f4b72183ba20540140345cd7b5782d1934f1cab9d3c8d35d755bfaa6eb0ba520cc48cc77154d63154f42eec42f56e7ee1bec7501a7a48366fc -DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190513163551-3ee3066db522.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 -DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190513163551-3ee3066db522.zip 21758 BLAKE2B 6e3511d78ec520fce8a7553662f26f43adb0aef811e947632bc3b9c710da01bbe25bbf6710bc7c60ae07d7f1981872b053670d84a877980bf22b7cc6f560b320 SHA512 b1552ac8cc40703a0ae71c76988c7721ab944bf0aa14768700c658379f842cad4ea3bf67ff71d52993e1aac972421edb96da93fa66775f25b17f1dee7dd5a7c5 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216173652-a0e659d51361.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191227053925-7b8e75db28f4.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200130002326-2f3ba24bd6e7.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200207183749-b753a1ba74fa.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200212150539-ea181f53ac56.mod 267 BLAKE2B d21181b3e1491ef78b09fc3546ed8ffbfeb7a4578039aaa24e2f5cc2352885c1a4d7dbfaf2853c421daa2a06691ac47513b5f186d31893fb1ef476cf9d4bb9bc SHA512 91b0380c7073eac4442bfd1924d311fc7b50b098ec4c72ea72fcc831273012326a44245add9b05a90895be46d11052ddcc942ea6bb909bda51d782f95acddff8 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200522201501-cb1345f3a375.mod 271 BLAKE2B a7f35788b75abb2e24bcb7310d0584fa51045a86c35beb84ebc00cd6eaabb0e1ea2c81394a693ac528969222da686c64d064fd827f709b3d6695b80ae8e57e96 SHA512 8281ef87f633ddec7f1c4711773b09563e5695a44ef8140d062cdd9a14731a2edf24fde739c42e2a52038d6e100c3c5d7039db9adb62001e5e27a2e282faa057 +DIST golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20200522201501-cb1345f3a375.zip 3136793 BLAKE2B eaa4ebfadc3ee8e1faad5abdc83c9b6766dbae7fdb9ceb7fee5f0fcec1705e7ff873edc0c05b8430fc7b786db9c03fd268f22ac01250165dc5775b04f9d06ffc SHA512 0a2f478dcb70ce5e8b56f676324daf389a2cf548a601da6be4076b0b8f2d3380c72b84625446f26d1a562fe7227a28312cdca3954ce2e5a297f283fbd5144a07 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.zip 20009 BLAKE2B 60e04979e9fdcb37b8dac7d3a1703d9a8c3bf399eaab76a7bfb1041c1e974cfb83aaa97fdbb258758b17813f22a44ca6355972c4b54b503dc5b2a96ee24dde27 SHA512 aab0e6fa0e68bfa59aa0b217e4a0f5910190898f5d24e172de3726bb6d2e70102c114ae37060f797f9efe8702a935300726205328cd8ae2656b9031b68d9aa50 DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 @@ -1548,25 +1468,58 @@ DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip 2228 DIST google.golang.org%2Fapi%2F@v%2Fv0.0.0-20180910000450-7ca32eb868bf.mod 29 BLAKE2B 411ad882e1d61d9e7a02f83256abf55c6a9557a980b89d7fd1a8981cd44f81182c17659e2fec1f4a587163a16556076418f166e90118a04041a8c488f9bb69dd SHA512 f2367919f017863362525d492f3c7f9e36aa311a55f96533ad6a2db1dcbdc9628f516ca435a43cd63a09c677c3528c2fe386907fda1da7dcb69ac2f6c95bfdc1 DIST google.golang.org%2Fapi%2F@v%2Fv0.0.0-20181030000543-1d582fd0359e.mod 29 BLAKE2B 411ad882e1d61d9e7a02f83256abf55c6a9557a980b89d7fd1a8981cd44f81182c17659e2fec1f4a587163a16556076418f166e90118a04041a8c488f9bb69dd SHA512 f2367919f017863362525d492f3c7f9e36aa311a55f96533ad6a2db1dcbdc9628f516ca435a43cd63a09c677c3528c2fe386907fda1da7dcb69ac2f6c95bfdc1 DIST google.golang.org%2Fapi%2F@v%2Fv0.1.0.mod 342 BLAKE2B d29044f7528980834df69508a5a430885c808b2261128c98294db54509193fd9d938f9b00d5065d8747039fcfd2d1508ec3d1d28f45cace47746dceb88f2756b SHA512 f0f467b0cd37057b1c5c215a4554a85273ff29efbe22fc7476b4cb03e7d19701a18d1cc8db27d2988f63da66089cd79d82a53180c17e260fbde4100e070316ab +DIST google.golang.org%2Fapi%2F@v%2Fv0.13.0.mod 851 BLAKE2B 16f0842a8e0082a8532a7c8f5cf5092cd196a90197b3e05c6fe0275e10390e0b97477f60c07d26b422d0da9289fe3c8f2d8fb8fe2fec63af9e005adc26921724 SHA512 bd693c28b65c1b369f89a6b1926a127c91df98feb137ab5595bf141c1a67e3adcf25f79b4cbf3e4c44755d45b9f4876dacafbf18afa1e8c09fd89a8f9d0e9330 +DIST google.golang.org%2Fapi%2F@v%2Fv0.14.0.mod 851 BLAKE2B 16f0842a8e0082a8532a7c8f5cf5092cd196a90197b3e05c6fe0275e10390e0b97477f60c07d26b422d0da9289fe3c8f2d8fb8fe2fec63af9e005adc26921724 SHA512 bd693c28b65c1b369f89a6b1926a127c91df98feb137ab5595bf141c1a67e3adcf25f79b4cbf3e4c44755d45b9f4876dacafbf18afa1e8c09fd89a8f9d0e9330 +DIST google.golang.org%2Fapi%2F@v%2Fv0.15.0.mod 851 BLAKE2B 16f0842a8e0082a8532a7c8f5cf5092cd196a90197b3e05c6fe0275e10390e0b97477f60c07d26b422d0da9289fe3c8f2d8fb8fe2fec63af9e005adc26921724 SHA512 bd693c28b65c1b369f89a6b1926a127c91df98feb137ab5595bf141c1a67e3adcf25f79b4cbf3e4c44755d45b9f4876dacafbf18afa1e8c09fd89a8f9d0e9330 +DIST google.golang.org%2Fapi%2F@v%2Fv0.17.0.mod 804 BLAKE2B 5b2735ad23db8b4226ee4eaaf2f3cc4e905f0ddb30a401e48373cf1acbdb598927805554c4adc2d3b9749bde8304204fb118bb06a523390e47fa2d1cfeccf459 SHA512 0ed74ff1f7a8a6a315189890ec2609476f76b46316a672dfa8150066f3d9d6faf2089bc53d756bce2c0c546dd36c00b668d979e91e766a698ab1c6ad31a5436d +DIST google.golang.org%2Fapi%2F@v%2Fv0.4.0.mod 506 BLAKE2B 6933fe30be88a21cca041b800cb9d095b1daf787f3701c0311da2606287d03799df9b556451d9170d02be8028ce686aaf69eaf941d2a8bdb4769c319c50c9905 SHA512 9fa566a26f8345a101dc94986755468b4782d78689d5a163aa5b960b507d4a0e8e435a8ce84073e07187745a156e2c9f586136895db2f08cfc4cd3329fc1e23a +DIST google.golang.org%2Fapi%2F@v%2Fv0.7.0.mod 802 BLAKE2B 59277c0ab43500926ae727289dfd892ce524164f7acea3d6ede2f4efceb5e89e71e88c2c9fa3e4785da4d2a69c59e5c81c4d735887a6ab52c0b07a8b6baca88d SHA512 617883d94a4de6e07dfd82d046148ccfc5ab4eaf73840a76a9823e5cf03a60b0e0b4f1b62712620de28895d013f01bcd39477cb87bfb94524a634be8818c268c +DIST google.golang.org%2Fapi%2F@v%2Fv0.8.0.mod 850 BLAKE2B c338a815e2222182387fe11a60a2eb1e463851f38725da6e7884be1c2dbdea72473ecee4fca65bd50299c5f9095ac5e52848569b7979106da3876205e5cde41f SHA512 37c90eac881c258cb947f9507ae97466b355df015f64ef2d3ecbcbc154216623676340a000362e8229f3e842e68818a73ae64b5f63e3e1820cbff7b1e7b6d89e +DIST google.golang.org%2Fapi%2F@v%2Fv0.9.0.mod 850 BLAKE2B c338a815e2222182387fe11a60a2eb1e463851f38725da6e7884be1c2dbdea72473ecee4fca65bd50299c5f9095ac5e52848569b7979106da3876205e5cde41f SHA512 37c90eac881c258cb947f9507ae97466b355df015f64ef2d3ecbcbc154216623676340a000362e8229f3e842e68818a73ae64b5f63e3e1820cbff7b1e7b6d89e DIST google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod 35 BLAKE2B 24fb6ba95138448c45da7f1ecc4c87391485006b54b8e7ff96ec582c2659f9ea77574b4d5fef2442eff9e5564f3c3263ed8e6963c5d21cde8772a7143d82f3ed SHA512 6644c398d639794470e49cad4402d17765422934915b5a13e13e1f84d8890cc8fad9e6ea8c580d114aefea70d894242e05ce3a432ee596f772b98b6b73069fe2 DIST google.golang.org%2Fappengine%2F@v%2Fv1.2.0.mod 162 BLAKE2B 21c4d160665b6a87101d2aec39d2f7faef9a66f6be50f7293706686022f808b131c9ce7ddfcba6c2b6d27d15f9414101650436a2403f156a0368de2bce72e482 SHA512 60fb2454326103e4905f79f23a25320cb2c0035b7a0e3c228af845ed7dae23014efb81685f29805303edf277e8b1a2d9a7530b8f3a1a8e57caa1a85edeb52475 DIST google.golang.org%2Fappengine%2F@v%2Fv1.3.0.mod 162 BLAKE2B 21c4d160665b6a87101d2aec39d2f7faef9a66f6be50f7293706686022f808b131c9ce7ddfcba6c2b6d27d15f9414101650436a2403f156a0368de2bce72e482 SHA512 60fb2454326103e4905f79f23a25320cb2c0035b7a0e3c228af845ed7dae23014efb81685f29805303edf277e8b1a2d9a7530b8f3a1a8e57caa1a85edeb52475 DIST google.golang.org%2Fappengine%2F@v%2Fv1.4.0.mod 162 BLAKE2B 21c4d160665b6a87101d2aec39d2f7faef9a66f6be50f7293706686022f808b131c9ce7ddfcba6c2b6d27d15f9414101650436a2403f156a0368de2bce72e482 SHA512 60fb2454326103e4905f79f23a25320cb2c0035b7a0e3c228af845ed7dae23014efb81685f29805303edf277e8b1a2d9a7530b8f3a1a8e57caa1a85edeb52475 -DIST google.golang.org%2Fappengine%2F@v%2Fv1.4.0.zip 408151 BLAKE2B 9f815084675da034d639cf3e8648ee5dd2d1282d2bb6937ffc91956b5cfa46809499441a39636e4f0565c4307854977201ecc8cfaf38b46557c3e715cef0722e SHA512 1eeb760cf1057c306f2301ef4c7065cdd6dc18cdeefefd3a1cc8cc22efa312ee5ba7da6b79a4e7666bc09429d1ca73d7bc1db574f9cd33d271a72700a070a219 +DIST google.golang.org%2Fappengine%2F@v%2Fv1.5.0.mod 162 BLAKE2B 21c4d160665b6a87101d2aec39d2f7faef9a66f6be50f7293706686022f808b131c9ce7ddfcba6c2b6d27d15f9414101650436a2403f156a0368de2bce72e482 SHA512 60fb2454326103e4905f79f23a25320cb2c0035b7a0e3c228af845ed7dae23014efb81685f29805303edf277e8b1a2d9a7530b8f3a1a8e57caa1a85edeb52475 +DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.1.mod 362 BLAKE2B 2d6d24186c2748c4d8f559feb269b351d4260c9c0e0b9342377f23af9e5ecc02fc7f84f7be299aedb0da1b1a6d6d67c3271a826b776bb7cc034256550479a0f5 SHA512 e3c391dfcc5f14fdc5430d7a1d239d4ebec89399b17851e4d7643b8c0c70077aaec3a1bc1a8dd5e3320d8bc6e1562a26e3fe1121d75ce578f37f5d2e84a4ddf6 +DIST google.golang.org%2Fappengine%2F@v%2Fv1.6.5.mod 171 BLAKE2B 09b1ead1721eaa1dab7106f0206fd6f1c1509ddd07f70d7a23f73a1c047b9b33b41bae2519d2ba7e5c6ca632a9082483080dbffe0af3c371934f2ceab9ad334c SHA512 f99bba4e696291aae951ea3865a1cbaf0ba2df7cde4f86e942b2e5f5a4dfc6dfde95c74e52ff31ba69f2aa2a838d21843343b2203c732279eede5936b92d7c8c DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod 34 BLAKE2B cd6cb61b9f55a3c1e8b33588e98e62c9c27613ac20fb039cd70c9ecbe41c34d11d80246290ab73a9faf3ec809a15fc00267654b0eb00dbf23fe5c9758c705d9c SHA512 1c29af2b4f8b54234f09dfbfad120b4b11d4fe67e9578b0553412f1587cac2fa2bfe5537fbf15e6d52dcb04332413231c250c3c460b04e64326d2eaed3102464 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180831171423-11092d34479b.mod 34 BLAKE2B cd6cb61b9f55a3c1e8b33588e98e62c9c27613ac20fb039cd70c9ecbe41c34d11d80246290ab73a9faf3ec809a15fc00267654b0eb00dbf23fe5c9758c705d9c SHA512 1c29af2b4f8b54234f09dfbfad120b4b11d4fe67e9578b0553412f1587cac2fa2bfe5537fbf15e6d52dcb04332413231c250c3c460b04e64326d2eaed3102464 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181029155118-b69ba1387ce2.mod 34 BLAKE2B cd6cb61b9f55a3c1e8b33588e98e62c9c27613ac20fb039cd70c9ecbe41c34d11d80246290ab73a9faf3ec809a15fc00267654b0eb00dbf23fe5c9758c705d9c SHA512 1c29af2b4f8b54234f09dfbfad120b4b11d4fe67e9578b0553412f1587cac2fa2bfe5537fbf15e6d52dcb04332413231c250c3c460b04e64326d2eaed3102464 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20181202183823-bd91e49a0898.mod 167 BLAKE2B 986a022473dc24178c99e6f660397dbee93b9680a5bd2ee1de8ce1e6d7b3b71bd9a79a70230daefd5f579c65669511a0bf89289889db3d6234583bd0b03ecf45 SHA512 bf0f5825495820d6f0416598bba137d80131ff8fea005163afca3f2984f57bd24c9005fab4ba0408bd09dfcb2f9ab1cd845e1cc3d0d9dfed1bedf0507567f570 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190306203927-b5d61aea6440.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190307195333-5fe7a883aa19.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190418145605-e7d98fc518a7.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190425155659-357c62f0e4bb.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190502173448-54afdca5d873.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190801165951-fa694d86fc64.mod 331 BLAKE2B 63923e4fcfa896f163dc77009fbdee8ce8c2e31a4694b6ccddf3397cad5c89a3be5796dbc65b77cf059f1601729d976f9afd2969bd426c0cd8781b106ffe0be8 SHA512 9f22a11a1d639cc7a465b6e826c2bc3915fe0ac847159a38c470f0b1631d6f6b2e0ae0548344f7a8e97161d4c6b80113062c04062b7ab887d7d615c39cbfc2dd +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190819201941-24fa4b261c55.mod 331 BLAKE2B 63923e4fcfa896f163dc77009fbdee8ce8c2e31a4694b6ccddf3397cad5c89a3be5796dbc65b77cf059f1601729d976f9afd2969bd426c0cd8781b106ffe0be8 SHA512 9f22a11a1d639cc7a465b6e826c2bc3915fe0ac847159a38c470f0b1631d6f6b2e0ae0548344f7a8e97161d4c6b80113062c04062b7ab887d7d615c39cbfc2dd +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20190911173649-1774047e7e51.mod 339 BLAKE2B 06dd6c875e6235007ea4f4a8350a7f80b3285e21f8ef599ea1e955a6185c5e11658040d073937a4110910c3d21d923487427c0dc626e342e10fef8efbfa95b2b SHA512 8d2fe5cf81319645c17ff8be71f966294976889b7aff74a5b234913dc34a1c7ac03548bcc9ed29120ef651705e7dc6da0c2aff892c9262d67d0044fec5685ac3 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191108220845-16a3f7862a1a.mod 340 BLAKE2B bb2207855662037de3179be2e667a9cd8798e2d3c1b1eeb939f76095b9c32cca6dacd47439429b5705ad1d5c5597cb4170f17e49bcfa310c0733f1e68ffc1610 SHA512 1095755ae781f0370bb3dd72fca348c5d6640a4f89b6eddfcdd349f320ae117a4da47e48707f66743fc8dc4067285750d816d178b484dee0d21de0b2d1b129b2 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191115194625-c23dd37a84c9.mod 340 BLAKE2B bb2207855662037de3179be2e667a9cd8798e2d3c1b1eeb939f76095b9c32cca6dacd47439429b5705ad1d5c5597cb4170f17e49bcfa310c0733f1e68ffc1610 SHA512 1095755ae781f0370bb3dd72fca348c5d6640a4f89b6eddfcdd349f320ae117a4da47e48707f66743fc8dc4067285750d816d178b484dee0d21de0b2d1b129b2 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191216164720-4f79533eabd1.mod 340 BLAKE2B bb2207855662037de3179be2e667a9cd8798e2d3c1b1eeb939f76095b9c32cca6dacd47439429b5705ad1d5c5597cb4170f17e49bcfa310c0733f1e68ffc1610 SHA512 1095755ae781f0370bb3dd72fca348c5d6640a4f89b6eddfcdd349f320ae117a4da47e48707f66743fc8dc4067285750d816d178b484dee0d21de0b2d1b129b2 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20191230161307-f3c370f40bfb.mod 340 BLAKE2B bb2207855662037de3179be2e667a9cd8798e2d3c1b1eeb939f76095b9c32cca6dacd47439429b5705ad1d5c5597cb4170f17e49bcfa310c0733f1e68ffc1610 SHA512 1095755ae781f0370bb3dd72fca348c5d6640a4f89b6eddfcdd349f320ae117a4da47e48707f66743fc8dc4067285750d816d178b484dee0d21de0b2d1b129b2 +DIST google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20200212174721-66ed5ce911ce.mod 287 BLAKE2B ac895df309c4c2533900f7ff3aaecd59bf883fad6fde8fc7ffef9928fc8f18402fb2198bb3f0b75e876adb7d5d0e37073fc251d149245847ebdd95de1cdf6cd3 SHA512 44dc287d4a33c4225229768c59d1b9e61b51fdc27b1745a8161b17bdef4499cb08ebc565c56caa01673317cbef46cb228ac69b9ada7d4bac870b22eddf5a2977 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.14.0.mod 30 BLAKE2B 8ec04a655d1d0c3cfde5c051842d84f8a8615d7d56563ad57769905212e0e7cc821933d5adedcb210c724de9699b6b9cd5bcfd3a2c9555516354d3e19ffd3482 SHA512 10c6aa20da47c7923358430b63d5d5264d54f6a6cf70b008ed157807c07073cd0c64bef9db282b39fdb523515e1429125079cc29273ba186f7e4b42712d3d37a DIST google.golang.org%2Fgrpc%2F@v%2Fv1.16.0.mod 903 BLAKE2B dd9ff44489e2a944c07f3e58c3246534b472b407eb15780bfcf9a30370eea7353a8ec12601a6c3e0e39edad1de6651df1c959f86a528a0cb53ff7d2e8514d1e6 SHA512 1e7c2190023d06747cf81e4d6f25aa284a250912ac304e3d590e1b85f5ca3ad3d9963a0ff7106e5dc55f82f58eea953c72f131f4baa6618b46017a575669742b DIST google.golang.org%2Fgrpc%2F@v%2Fv1.17.0.mod 832 BLAKE2B 9de27394e05cf42e762a8b7ed42b6715244ea1086acd7c44f71b04bc0dc23c31ab236e6474fea423953eb3001dcaa357938daad1d54debfb5d52bdecc1de6bda SHA512 ac90f3fc374cc1ac7706146efaa8488a59634a209c30bf87453fa150bf8849870db2ec04e854438d59911ea35930a5dd8f40f5d5954786d0e0565907fc42f711 DIST google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod 833 BLAKE2B 71052eaeaf40883bff624eecce8fd6f5669fdea9355e6ae0db9c86c841a62f7176d5ab58838d1645f59b9cb4ad4b636048aa3e9f1d7db521104b8f09dc535bc7 SHA512 38c4f75a0121cecd31b2628da3c3d77aeeb9b2c1974eef2d2d2bb7a3eb507d330debb7f14a724c8910174439b38ab54458096aaf665ea4af87a83f866ca0452e DIST google.golang.org%2Fgrpc%2F@v%2Fv1.20.1.mod 795 BLAKE2B b825f2ab62a96b9b164410f761228575fd9882de37635c09803b9d2ce682ebbec30f301fd874aafaad95a5aa2431ba25962073e1bd4f336d8cb137e5939a8708 SHA512 585d4cf68b50a70d7967ac3941a7a83b83ed5df1a31773589a38348b6fdf247eb49e7778f7054b78ba1a65eef48d004a815abad932876cb1af2c09deea9c0db8 +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.21.1.mod 828 BLAKE2B a57ef0fe7edabd002918282ba9ef83386689db2688fd8f1b9ebedd191bb0b7059cc0b99d95974ab68112cd48e1865558d314dda64c71ab239de39fe6e8f0db5b SHA512 f9ab0c8ed5a58799a39f64c63b995badb24d8ba1148c7a1be1e3342d1b0d6a6e334fa2cab16f8e9396907e60386cbccb6495dbbe3ca09440bb878e10e1686d62 +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.23.0.mod 762 BLAKE2B 3c67c1bfdf0cef36f702e4a56d42cd7861cc573282ecf1667c7b19b97b8329a67f34a4c2ef3b2b865cabbd35a03dc43284e4c1af90dd8bb6018b0d8a192484b5 SHA512 4ea69ff3644e3e51f4a9ce73325a995b119088a9c97fec4a4811d1d9f119799182cd4dac377e3b58d96e10b8f6ba500a85ad72463ef4305d04ed1c55261526c2 +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.26.0.mod 562 BLAKE2B 33a46aa2516aa10a1bfed0431c4f3d41554aa8ab5cff1f259323c47999696d0cdf9113f162eebf3bbc18cea163f1c6f8225777653191380cfccf06e5921db81e SHA512 6e06146c3ee73338a24698b08d0091dca5cc67d033e1a98ca28157dccd8e056a3a2624c798180eda5917f90e1e37aff31158cb8ab2cedeb8e4578324719605ef +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.27.0.mod 562 BLAKE2B 33a46aa2516aa10a1bfed0431c4f3d41554aa8ab5cff1f259323c47999696d0cdf9113f162eebf3bbc18cea163f1c6f8225777653191380cfccf06e5921db81e SHA512 6e06146c3ee73338a24698b08d0091dca5cc67d033e1a98ca28157dccd8e056a3a2624c798180eda5917f90e1e37aff31158cb8ab2cedeb8e4578324719605ef +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.mod 562 BLAKE2B 33a46aa2516aa10a1bfed0431c4f3d41554aa8ab5cff1f259323c47999696d0cdf9113f162eebf3bbc18cea163f1c6f8225777653191380cfccf06e5921db81e SHA512 6e06146c3ee73338a24698b08d0091dca5cc67d033e1a98ca28157dccd8e056a3a2624c798180eda5917f90e1e37aff31158cb8ab2cedeb8e4578324719605ef +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.27.1.zip 1142481 BLAKE2B 2b5b18292c24f142fafdffd7ca4416da8425f317e195b3c59fffa6881eaf42ee90722ec7d06f8dd39fff3b582fd5a08248d967d58204d5c55161900c01164d56 SHA512 0ba3e5799dc97e3cae5765bf607742bc3165ab02dcd774290b2a624518ab503c3110b9ea7bd889b9e898344aa679f0bb13f05fcd94514090f7d408fec81cd1ea +DIST google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200109180630-ec00e32a8dfd.mod 83 BLAKE2B 4cef0579e4d6b156c1af532343070021171ead815734fe1210a0be6a8ba9bc5f3d11b97ee14cde810f2556bca76c206520f56363ee82af7409772d33301e413d SHA512 3cb3393e78f44d9de80074244756d5e309d19adca15e8313a392b925a687edad46e93c612da1539dc09d0c0072a063eede6f04fbd9e5671059e9857da0f7b1e6 +DIST google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200221191635-4d8936d0db64.mod 128 BLAKE2B 79cca062b7c73fedaa5357b7b43af16adc1ef83a86be48787887ec450e022d31e0700b7ca4cf5dca03bf2ad9db79727da0fbb89c73bdb006db6b68d75c3e1751 SHA512 bf45db2ba4ae10b447c471118551d337125d5432142f5aa4ba964054d09393730c23373e42eb34574ca93f9b1a12364669be13ba7faa7d9908cacb982984d414 +DIST google.golang.org%2Fprotobuf%2F@v%2Fv0.0.0-20200228230310-ab0ca4ff8a60.mod 158 BLAKE2B 8cafd0a40647244f2dd1d3d3da7ef8e376c6eb3823fca68d7aeb041d480e1147b70b70c49c65e47ff1e9b92eba026a109c67c7900da88cf8569ebd037912a35c SHA512 7d00ab108b35ba41ed8c6ad54533bbbd967e0cdf39e62cb8914c0c6e4a531c779a28ea3fb2a4a7f6f4af7f3c922246a8d8ec8eabb779758245cedbebfdd97378 +DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.20.1-0.20200309200217-e05f789c0967.mod 128 BLAKE2B e36e105129abbd7729a6d509724246766c16df526ce22637e92ca8f29bf854b66622a0afc5afe8e4ad29c9efc498c488a87020fad5969e044757d49ed4bd6399 SHA512 802c0df5ed11f0bb2e221c01152c6339d3634068f89aac760654411884e6b936b031cbfabad57c5add340f9d504edfcd683c77cb0ba7d753e06bc604095257ce +DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.mod 158 BLAKE2B 46e19153fe487751cddafb86818a962b621b10c109e513ef22e7f5c93b44dd94c6a1636e6c03d0db6e5099536901821549859bcf84f06c00483637d5d4284c43 SHA512 4797f4305d5b0159aba0825c0432cc5678cb74e55cd95eb5c42e9879a62db5aefa76c6286a436aee9a31b096193e8a3bc2e67175f0296c9d5eca3d03e98ab2d9 +DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.21.0.zip 1456574 BLAKE2B 4957a5322065e982e12220a4eae758cca1626e9e158222acba41df0bf5fffaa8256e4efc832d90c4853d29b46fdbc8f4af9702f51cac93f92d25fa0f4d7cd603 SHA512 739d87735445d8c7bc877774ad0400570a3bbb67216100fd7edab615f11087225dda48fd16be53f7e6535c16f1cd686716c262567954e8ffc052b11125bcfb13 +DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.mod 123 BLAKE2B 1c4e918b0eba97f6cbf2766da4d81d59be965582a63fcb5d876194d0e57575bfc91ed40418bd435b7cb13f244c44acbe00821098b52b6d64111a4f812e4a5909 SHA512 dab1668079153e90bea3913c9aae022543d17d61e275e3d0e2ba7dfda3dd8f82642bcfd1e4d4add2b8f4fed342efd66ee6c7d7fe1e65e67e4e62f2d0ffd2387c +DIST google.golang.org%2Fprotobuf%2F@v%2Fv1.23.0.zip 1491602 BLAKE2B 7fcfd0d05fe509a3e30885304b7ec76a538fdc9cde84d44fb90a32aebbd14bdffd5f3f7e36f9ba24ef87decec89fa824963780b152faf43f3799c8e64e822f34 SHA512 91a070430e3a44edc4f66d6b2ecfcfeb4c633a07c252d1494ecbc9a37141483cb7bc9bfc641022a59e740ccfe9c4ed52e263d59eb85b5bc37a66088bafb6ca8a DIST gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod 38 BLAKE2B e7781691d8c15b764ef6c89fcdf20e69fc28d46e8df2703b6fdc342247595c10ed25e3cc5b30cd29b81c57837f5685e4122e1b2c218a51fffbb1567c85b0835a SHA512 585188d3a75067e6b7d8a8321959fe7df80c6a19f8668a87f0d1b8687c4d2cefc039167446f6d02f7eeeb147371bc7a673348213bcb07f4d90bebc0ccf9f2015 -DIST gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.zip 59626 BLAKE2B 5fb595a10b7068bd2e4baea5fb28eb84f1f00960ca5ea964cd1812800ba8a34e62b3b71554dcfbdd727d5478eb5d91a00bd2bb7e89086929275e15e9261bdf2c SHA512 cdfbb32c7280c5405c4df41f00fa8b4ab2966285898a122a20f3c5f07a9e87095542be12efc09a67e4d90baa1fe51cd41f06733db7617949634409ea20e58dce DIST gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.zip 41465 BLAKE2B 9a7183d3ac6591399b5208026208047a670c85e8b6014ad29955b168c63bb4953fa972d31025613c2ab12d7207adeebe9578b3c15b65ebb792f1e41df2668297 SHA512 fa7c68a2b5a6bb14f99cda92a3e77aad0e4160f659c54ea73e9813af9ff9449df6b0cab42ee283971e778b6b9da4a6098df805dd284c3b1aedfcd3a0b8504bde @@ -1583,18 +1536,24 @@ DIST gopkg.in%2Fsrc-d%2Fgo-log.v1%2F@v%2Fv1.0.1.mod 32 BLAKE2B efd3316a0eadc32b6 DIST gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod 24 BLAKE2B 24a0c476e6590543f1b46175c4f0e036498afd9af616f6e204cac280e61cc10454e0c2a54fe10b9a7a306715ab966a5822ad78626c6cf20c2c78aac02598c922 SHA512 b147b03cabc4666519b94f4d9c7d9fefdea45810e3e35a9b3d303dba491d486fe03c0d5969a6186adbb9c75665e4f3e9811c7bf4ce72c46280b053611c198c41 DIST gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.zip 5099 BLAKE2B 56a68e317ccf9e6b0912331e7006742c3bfffd087742293b3d48ca7069c707db57b3722179c76b8c724303c8d58ac9ebf847c4277ed38a59e1510c676ebc941c SHA512 658ebdf931b23afe9d9d5d33d6c910fba7cf37740efe7052ba7627199c1a5fa4f93f093796674e341109430ba1f1b5ea933ea4a32356f63eaf337f05a562004a DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 -DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.zip 77767 BLAKE2B d77644df22edfcda7d99d4a4a23a1fd1154fa21489dc36b9a8f9ffc45e341d8d793faae76d4d3d32290766c7b13cea30d17efaa7e8e74786ead90b0605f70967 SHA512 bc935858e1d5c341c7d53c41bdf6f856976a469c8f54f017e41e8be742064ce9980cc6881353e022f854d6e19096a37f5ff62bf7b01019b0425a0c03dc6fe14a DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.zip 78275 BLAKE2B 139c8eb7c405dddbb67321eacd25c0af1e5b3f031831266abf6a8e5a5ed12f6381778868383c03433f8ef760d6b42ffbff40150f2fee91dedd0b312f9fe81c7f SHA512 3214b38f348921f6a6d9ef93d4337bb90abd0d101d69d16ad8e38415c22d3b9a85bda873df2eb7a271f9b973ef38b74731405e522e1bb8083c78932762cb5535 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.5.zip 80253 BLAKE2B 175e08dfe0913765b5a913c23cf2803dbbdfa007430caaaa5a8e46cd9df8e1c48e3b84ffe248800422b963ad2d5db8031c86df926cc6f413b0ce05fa21326113 SHA512 371da5f4c32800cadd40127a78d4ae29918f4477ca87e42c414bdb7adfb9e9ab22e5f22e821d76f543204b0be8b9297dfe1b4e20814ab8015088492309676e0a +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip 80765 BLAKE2B d6d8bfba5082aabb1a247add43b21ffa058b58fef60e8efbf973b724273cda2496ef0c9b226ad14bfea17f141f077d3bd98dfe3dbcf3c2938fd64570abd662b2 SHA512 2a89b2bce856cc11f3b71edec9e538048acf07f6aabbe27236b663b284c086c5862f086734e58727e9db8912a113fea51f72dad1a45a9e85860764f9c27b19d2 +DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d +DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip 101467 BLAKE2B 8bb0aec8e693a4c0da59f1931e1fdcf6f94a236faba149d5af91e87284f39c693d20be65248eecde739cb555e371804fa6c723a56c69e6d02a347ba908e968b1 SHA512 bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8 DIST grpc.go4.org%2F@v%2Fv0.0.0-20170609214715-11d0a25b4919.mod 20 BLAKE2B e14762111ddcb60b4b0d52ea4ef58dd26501463483aebf674713b6cca9a2a7a000c77f212c0fc0764ae69891b0c307c97bcdbc3bfb1f3fa5032582689bcefb89 SHA512 2a842877eb3d9f5d1a51864053d1dcafc6f74cf834cf597d1c167da6040a3842d409f4bb8ceaec80049ec0f70c4b42603016bee64539616e2f988160c5409afd DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190106161140-3f1c8253044a.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce +DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce +DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 3e3f5a2be0918cbaacd5e43e59fcc6c7c6999645f0c9214cd5a522c31d34b6d3dad61e3ddae8ccdb2f3f0d90b406c047802ee3d9d54dc40fe6eff9cd35620792 SHA512 0c8aa788d0c03d6d049f0dd7468d0f81ce2131ccedd5a5a3a18362b7d30eef7ef325277844eefe4b707b1ad71c6f83a44e110b7af7b98e05406d347237a7bafb DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.zip 506912 BLAKE2B a38cb31fd8df49dae4ff187e67704b5586ba78a0dcfe5afa3b820f0ac80f7e12ba4bdb705caa97c6be85407fe97599d1244d2f56f0e9e36554ba43289d9f21d8 SHA512 3285ab90762ee6b771c95e1c842ab308f04ac366ddfa693040c49d8951bb01db33994eb69c2c9dfd6ab2b379b29cbfe31558ca6b6aafe3feea1e693b2a36d0cb +DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST rsc.io%2Fquote%2Fv3%2F@v%2Fv3.1.0.mod 55 BLAKE2B f1f0ba35f0ffd200ed37c06b2025c1fd436e3fd857bd525b9295c0cbcade7e1f037e3f566124a7ef428384d50525426f0d40468c967e39bac6057174710e2566 SHA512 e6357ddd7d09692c60e59e6cb80469ade8284052cdd3ea520ec4dbcb42c1cabe045c599e43cce94bec022bd82e87a554ecac42f8c917cf2ff44daff9c1a147d5 DIST rsc.io%2Fsampler%2F@v%2Fv1.3.0.mod 88 BLAKE2B c2ac3c9619e396db470c9951dfc11cdacccd56ae09b3b353015ee7e5fbb023df288dbf48d81b44c309241d1ea89a2e0ee42ee1d17e536fcfa531aaee0e651ab7 SHA512 2137507eb25fbae419605e0cd6bca4cfa584110eebc276cd759a4dcb6f97e52928e5b2d9b276e76bcabcec3bbfc2c42f97fa29f54695d27fb00f9423e1638863 DIST sourcegraph.com%2Fsourcegraph%2Fgo-diff%2F@v%2Fv0.5.0.mod 288 BLAKE2B e8f361d08bba5f5689a0e8b51dc17f11fe893c1fb3c0b671d323c6f66448d0c73d26b64586ce2236cc91f44839eba5ebf2a858b04aa85b5bde847c5956b0a519 SHA512 ef74bbbbb50cb01b861dc25c1a1ee276cebb64a383a31f4acf3f78db0e1b5fa907c6ecb9a88e4819d4aa7d5fccced97b574c12e147c36677a8d4e5f73b55d04c diff --git a/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild b/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild deleted file mode 100644 index 1ccf88d5368c..000000000000 --- a/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild +++ /dev/null @@ -1,861 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit bash-completion-r1 go-module systemd - -DESCRIPTION="Main implementation of IPFS" -HOMEPAGE="https://ipfs.io/" - -EGO_SUM=( - "bazil.org/fuse v0.0.0-20180421153158-65cc252bf669" - "bazil.org/fuse v0.0.0-20180421153158-65cc252bf669/go.mod" - "cloud.google.com/go v0.26.0/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7" - "github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9" - "github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod" - "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96" - "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96/go.mod" - "github.com/BurntSushi/toml v0.3.1" - "github.com/BurntSushi/toml v0.3.1/go.mod" - "github.com/Kubuxu/go-os-helper v0.0.1" - "github.com/Kubuxu/go-os-helper v0.0.1/go.mod" - "github.com/OneOfOne/xxhash v1.2.2/go.mod" - "github.com/Stebalien/go-bitfield v0.0.0-20180330043415-076a62f9ce6e" - "github.com/Stebalien/go-bitfield v0.0.0-20180330043415-076a62f9ce6e/go.mod" - "github.com/Stebalien/go-bitfield v0.0.1" - "github.com/Stebalien/go-bitfield v0.0.1/go.mod" - "github.com/aead/siphash v1.0.1" - "github.com/aead/siphash v1.0.1/go.mod" - "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc" - "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" - "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf" - "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" - "github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod" - "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973" - "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" - "github.com/beorn7/perks v1.0.0" - "github.com/beorn7/perks v1.0.0/go.mod" - "github.com/blang/semver v3.5.1+incompatible" - "github.com/blang/semver v3.5.1+incompatible/go.mod" - "github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d" - "github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190213025234-306aecffea32" - "github.com/btcsuite/btcd v0.0.0-20190213025234-306aecffea32/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190427004231-96897255fd17" - "github.com/btcsuite/btcd v0.0.0-20190427004231-96897255fd17/go.mod" - "github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f" - "github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod" - "github.com/btcsuite/btcutil v0.0.0-20190207003914-4c204d697803/go.mod" - "github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod" - "github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd" - "github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod" - "github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd" - "github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod" - "github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723" - "github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod" - "github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792" - "github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod" - "github.com/btcsuite/winsvc v1.0.0" - "github.com/btcsuite/winsvc v1.0.0/go.mod" - "github.com/cenkalti/backoff v2.1.1+incompatible" - "github.com/cenkalti/backoff v2.1.1+incompatible/go.mod" - "github.com/cespare/xxhash v1.1.0/go.mod" - "github.com/cheekybits/genny v1.0.0" - "github.com/cheekybits/genny v1.0.0/go.mod" - "github.com/client9/misspell v0.3.4" - "github.com/client9/misspell v0.3.4/go.mod" - "github.com/coreos/etcd v3.3.10+incompatible/go.mod" - "github.com/coreos/go-etcd v2.0.0+incompatible/go.mod" - "github.com/coreos/go-semver v0.2.0" - "github.com/coreos/go-semver v0.2.0/go.mod" - "github.com/coreos/go-semver v0.2.1-0.20180108230905-e214231b295a" - "github.com/coreos/go-semver v0.2.1-0.20180108230905-e214231b295a/go.mod" - "github.com/cpuguy83/go-md2man v1.0.10/go.mod" - "github.com/cskr/pubsub v1.0.2" - "github.com/cskr/pubsub v1.0.2/go.mod" - "github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod" - "github.com/davecgh/go-spew v1.1.0" - "github.com/davecgh/go-spew v1.1.0/go.mod" - "github.com/davecgh/go-spew v1.1.1" - "github.com/davecgh/go-spew v1.1.1/go.mod" - "github.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018" - "github.com/davidlazar/go-crypto v0.0.0-20170701192655-dcfb0a7ac018/go.mod" - "github.com/dgraph-io/badger v1.5.5-0.20190226225317-8115aed38f8f" - "github.com/dgraph-io/badger v1.5.5-0.20190226225317-8115aed38f8f/go.mod" - "github.com/dgraph-io/badger v1.6.0-rc1" - "github.com/dgraph-io/badger v1.6.0-rc1/go.mod" - "github.com/dgryski/go-farm v0.0.0-20190104051053-3adb47b1fb0f" - "github.com/dgryski/go-farm v0.0.0-20190104051053-3adb47b1fb0f/go.mod" - "github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2" - "github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod" - "github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod" - "github.com/dustin/go-humanize v1.0.0" - "github.com/dustin/go-humanize v1.0.0/go.mod" - "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302" - "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302/go.mod" - "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5" - "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod" - "github.com/fatih/color v1.7.0" - "github.com/fatih/color v1.7.0/go.mod" - "github.com/fd/go-nat v1.0.0" - "github.com/fd/go-nat v1.0.0/go.mod" - "github.com/fsnotify/fsnotify v1.4.7" - "github.com/fsnotify/fsnotify v1.4.7/go.mod" - "github.com/go-check/check v0.0.0-20180628173108-788fd7840127" - "github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod" - "github.com/go-kit/kit v0.8.0" - "github.com/go-kit/kit v0.8.0/go.mod" - "github.com/go-logfmt/logfmt v0.3.0/go.mod" - "github.com/go-logfmt/logfmt v0.4.0" - "github.com/go-logfmt/logfmt v0.4.0/go.mod" - "github.com/go-stack/stack v1.8.0" - "github.com/go-stack/stack v1.8.0/go.mod" - "github.com/gogo/protobuf v1.1.1/go.mod" - "github.com/gogo/protobuf v1.2.1" - "github.com/gogo/protobuf v1.2.1/go.mod" - "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b" - "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod" - "github.com/golang/mock v1.1.1/go.mod" - "github.com/golang/mock v1.2.0" - "github.com/golang/mock v1.2.0/go.mod" - "github.com/golang/protobuf v1.2.0/go.mod" - "github.com/golang/protobuf v1.3.0" - "github.com/golang/protobuf v1.3.0/go.mod" - "github.com/golang/protobuf v1.3.1" - "github.com/golang/protobuf v1.3.1/go.mod" - "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db" - "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod" - "github.com/google/go-cmp v0.2.0" - "github.com/google/go-cmp v0.2.0/go.mod" - "github.com/google/uuid v1.1.1" - "github.com/google/uuid v1.1.1/go.mod" - "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1" - "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" - "github.com/gorilla/websocket v1.4.0" - "github.com/gorilla/websocket v1.4.0/go.mod" - "github.com/gxed/hashland/keccakpg v0.0.1" - "github.com/gxed/hashland/keccakpg v0.0.1/go.mod" - "github.com/gxed/hashland/murmur3 v0.0.1" - "github.com/gxed/hashland/murmur3 v0.0.1/go.mod" - "github.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824" - "github.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824/go.mod" - "github.com/hashicorp/errwrap v1.0.0" - "github.com/hashicorp/errwrap v1.0.0/go.mod" - "github.com/hashicorp/go-multierror v1.0.0" - "github.com/hashicorp/go-multierror v1.0.0/go.mod" - "github.com/hashicorp/golang-lru v0.5.0/go.mod" - "github.com/hashicorp/golang-lru v0.5.1" - "github.com/hashicorp/golang-lru v0.5.1/go.mod" - "github.com/hashicorp/hcl v1.0.0" - "github.com/hashicorp/hcl v1.0.0/go.mod" - "github.com/hpcloud/tail v1.0.0" - "github.com/hpcloud/tail v1.0.0/go.mod" - "github.com/hsanjuan/go-libp2p-gostream v0.0.31" - "github.com/hsanjuan/go-libp2p-gostream v0.0.31/go.mod" - "github.com/hsanjuan/go-libp2p-http v0.0.2" - "github.com/hsanjuan/go-libp2p-http v0.0.2/go.mod" - "github.com/huin/goupnp v0.0.0-20180415215157-1395d1447324" - "github.com/huin/goupnp v0.0.0-20180415215157-1395d1447324/go.mod" - "github.com/huin/goupnp v1.0.0" - "github.com/huin/goupnp v1.0.0/go.mod" - "github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150" - "github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod" - "github.com/inconshreveable/mousetrap v1.0.0" - "github.com/inconshreveable/mousetrap v1.0.0/go.mod" - "github.com/ipfs/bbloom v0.0.1" - "github.com/ipfs/bbloom v0.0.1/go.mod" - "github.com/ipfs/bbloom v0.0.4" - "github.com/ipfs/bbloom v0.0.4/go.mod" - "github.com/ipfs/dir-index-html v1.0.3" - "github.com/ipfs/dir-index-html v1.0.3/go.mod" - "github.com/ipfs/go-bitswap v0.0.3" - "github.com/ipfs/go-bitswap v0.0.3/go.mod" - "github.com/ipfs/go-bitswap v0.0.8-0.20200117195305-e37498cf10d6" - "github.com/ipfs/go-bitswap v0.0.8-0.20200117195305-e37498cf10d6/go.mod" - "github.com/ipfs/go-block-format v0.0.1/go.mod" - "github.com/ipfs/go-block-format v0.0.2" - "github.com/ipfs/go-block-format v0.0.2/go.mod" - "github.com/ipfs/go-blockservice v0.0.3" - "github.com/ipfs/go-blockservice v0.0.3/go.mod" - "github.com/ipfs/go-cid v0.0.1" - "github.com/ipfs/go-cid v0.0.1/go.mod" - "github.com/ipfs/go-cid v0.0.2" - "github.com/ipfs/go-cid v0.0.2/go.mod" - "github.com/ipfs/go-cid v0.0.4" - "github.com/ipfs/go-cid v0.0.4/go.mod" - "github.com/ipfs/go-cidutil v0.0.2" - "github.com/ipfs/go-cidutil v0.0.2/go.mod" - "github.com/ipfs/go-datastore v0.0.1" - "github.com/ipfs/go-datastore v0.0.1/go.mod" - "github.com/ipfs/go-datastore v0.0.3" - "github.com/ipfs/go-datastore v0.0.3/go.mod" - "github.com/ipfs/go-datastore v0.0.5" - "github.com/ipfs/go-datastore v0.0.5/go.mod" - "github.com/ipfs/go-detect-race v0.0.1" - "github.com/ipfs/go-detect-race v0.0.1/go.mod" - "github.com/ipfs/go-ds-badger v0.0.2" - "github.com/ipfs/go-ds-badger v0.0.2/go.mod" - "github.com/ipfs/go-ds-badger v0.0.5" - "github.com/ipfs/go-ds-badger v0.0.5/go.mod" - "github.com/ipfs/go-ds-flatfs v0.0.2" - "github.com/ipfs/go-ds-flatfs v0.0.2/go.mod" - "github.com/ipfs/go-ds-leveldb v0.0.1" - "github.com/ipfs/go-ds-leveldb v0.0.1/go.mod" - "github.com/ipfs/go-ds-leveldb v0.0.2" - "github.com/ipfs/go-ds-leveldb v0.0.2/go.mod" - "github.com/ipfs/go-ds-measure v0.0.1" - "github.com/ipfs/go-ds-measure v0.0.1/go.mod" - "github.com/ipfs/go-fs-lock v0.0.1" - "github.com/ipfs/go-fs-lock v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-addr v0.0.1" - "github.com/ipfs/go-ipfs-addr v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-blockstore v0.0.1" - "github.com/ipfs/go-ipfs-blockstore v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-blocksutil v0.0.1" - "github.com/ipfs/go-ipfs-blocksutil v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-chunker v0.0.1" - "github.com/ipfs/go-ipfs-chunker v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-cmds v0.0.8" - "github.com/ipfs/go-ipfs-cmds v0.0.8/go.mod" - "github.com/ipfs/go-ipfs-config v0.0.3" - "github.com/ipfs/go-ipfs-config v0.0.3/go.mod" - "github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod" - "github.com/ipfs/go-ipfs-delay v0.0.1" - "github.com/ipfs/go-ipfs-delay v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-ds-help v0.0.1" - "github.com/ipfs/go-ipfs-ds-help v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-interface v0.0.1" - "github.com/ipfs/go-ipfs-exchange-interface v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-exchange-offline v0.0.1" - "github.com/ipfs/go-ipfs-exchange-offline v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.2" - "github.com/ipfs/go-ipfs-files v0.0.2/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.3" - "github.com/ipfs/go-ipfs-files v0.0.3/go.mod" - "github.com/ipfs/go-ipfs-flags v0.0.1" - "github.com/ipfs/go-ipfs-flags v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-posinfo v0.0.1" - "github.com/ipfs/go-ipfs-posinfo v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-pq v0.0.1" - "github.com/ipfs/go-ipfs-pq v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-routing v0.0.1" - "github.com/ipfs/go-ipfs-routing v0.0.1/go.mod" - "github.com/ipfs/go-ipfs-util v0.0.1" - "github.com/ipfs/go-ipfs-util v0.0.1/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.1" - "github.com/ipfs/go-ipld-cbor v0.0.1/go.mod" - "github.com/ipfs/go-ipld-cbor v0.0.2" - "github.com/ipfs/go-ipld-cbor v0.0.2/go.mod" - "github.com/ipfs/go-ipld-format v0.0.1" - "github.com/ipfs/go-ipld-format v0.0.1/go.mod" - "github.com/ipfs/go-ipld-format v0.0.2" - "github.com/ipfs/go-ipld-format v0.0.2/go.mod" - "github.com/ipfs/go-ipld-git v0.0.2" - "github.com/ipfs/go-ipld-git v0.0.2/go.mod" - "github.com/ipfs/go-ipns v0.0.1" - "github.com/ipfs/go-ipns v0.0.1/go.mod" - "github.com/ipfs/go-log v0.0.1" - "github.com/ipfs/go-log v0.0.1/go.mod" - "github.com/ipfs/go-merkledag v0.0.3" - "github.com/ipfs/go-merkledag v0.0.3/go.mod" - "github.com/ipfs/go-metrics-interface v0.0.1" - "github.com/ipfs/go-metrics-interface v0.0.1/go.mod" - "github.com/ipfs/go-metrics-prometheus v0.0.2" - "github.com/ipfs/go-metrics-prometheus v0.0.2/go.mod" - "github.com/ipfs/go-mfs v0.0.7" - "github.com/ipfs/go-mfs v0.0.7/go.mod" - "github.com/ipfs/go-path v0.0.3" - "github.com/ipfs/go-path v0.0.3/go.mod" - "github.com/ipfs/go-path v0.0.4" - "github.com/ipfs/go-path v0.0.4/go.mod" - "github.com/ipfs/go-peertaskqueue v0.0.5-0.20190704154349-f09820a0a5b6" - "github.com/ipfs/go-peertaskqueue v0.0.5-0.20190704154349-f09820a0a5b6/go.mod" - "github.com/ipfs/go-todocounter v0.0.1" - "github.com/ipfs/go-todocounter v0.0.1/go.mod" - "github.com/ipfs/go-unixfs v0.0.4" - "github.com/ipfs/go-unixfs v0.0.4/go.mod" - "github.com/ipfs/go-unixfs v0.0.6" - "github.com/ipfs/go-unixfs v0.0.6/go.mod" - "github.com/ipfs/go-verifcid v0.0.1" - "github.com/ipfs/go-verifcid v0.0.1/go.mod" - "github.com/ipfs/interface-go-ipfs-core v0.0.8" - "github.com/ipfs/interface-go-ipfs-core v0.0.8/go.mod" - "github.com/jackpal/gateway v1.0.4" - "github.com/jackpal/gateway v1.0.4/go.mod" - "github.com/jackpal/gateway v1.0.5" - "github.com/jackpal/gateway v1.0.5/go.mod" - "github.com/jackpal/go-nat-pmp v1.0.1" - "github.com/jackpal/go-nat-pmp v1.0.1/go.mod" - "github.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec" - "github.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec/go.mod" - "github.com/jbenet/go-cienv v0.1.0" - "github.com/jbenet/go-cienv v0.1.0/go.mod" - "github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99" - "github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod" - "github.com/jbenet/go-is-domain v1.0.2" - "github.com/jbenet/go-is-domain v1.0.2/go.mod" - "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c" - "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c/go.mod" - "github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2" - "github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2/go.mod" - "github.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8" - "github.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8/go.mod" - "github.com/jbenet/goprocess v0.1.3" - "github.com/jbenet/goprocess v0.1.3/go.mod" - "github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89" - "github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod" - "github.com/jrick/logrotate v1.0.0" - "github.com/jrick/logrotate v1.0.0/go.mod" - "github.com/jtolds/gls v4.2.1+incompatible" - "github.com/jtolds/gls v4.2.1+incompatible/go.mod" - "github.com/julienschmidt/httprouter v1.2.0" - "github.com/julienschmidt/httprouter v1.2.0/go.mod" - "github.com/kisielk/errcheck v1.1.0/go.mod" - "github.com/kisielk/gotool v1.0.0" - "github.com/kisielk/gotool v1.0.0/go.mod" - "github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23" - "github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod" - "github.com/konsorten/go-windows-terminal-sequences v1.0.1" - "github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod" - "github.com/koron/go-ssdp v0.0.0-20180514024734-4a0ed625a78b" - "github.com/koron/go-ssdp v0.0.0-20180514024734-4a0ed625a78b/go.mod" - "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515" - "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod" - "github.com/kr/pretty v0.1.0" - "github.com/kr/pretty v0.1.0/go.mod" - "github.com/kr/pty v1.1.1/go.mod" - "github.com/kr/text v0.1.0" - "github.com/kr/text v0.1.0/go.mod" - "github.com/libp2p/go-addr-util v0.0.1" - "github.com/libp2p/go-addr-util v0.0.1/go.mod" - "github.com/libp2p/go-buffer-pool v0.0.1" - "github.com/libp2p/go-buffer-pool v0.0.1/go.mod" - "github.com/libp2p/go-buffer-pool v0.0.2" - "github.com/libp2p/go-buffer-pool v0.0.2/go.mod" - "github.com/libp2p/go-conn-security v0.0.1" - "github.com/libp2p/go-conn-security v0.0.1/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.0.1" - "github.com/libp2p/go-conn-security-multistream v0.0.1/go.mod" - "github.com/libp2p/go-conn-security-multistream v0.0.2" - "github.com/libp2p/go-conn-security-multistream v0.0.2/go.mod" - "github.com/libp2p/go-flow-metrics v0.0.1" - "github.com/libp2p/go-flow-metrics v0.0.1/go.mod" - "github.com/libp2p/go-flow-metrics v0.0.3" - "github.com/libp2p/go-flow-metrics v0.0.3/go.mod" - "github.com/libp2p/go-libp2p v0.0.2" - "github.com/libp2p/go-libp2p v0.0.2/go.mod" - "github.com/libp2p/go-libp2p v0.0.30/go.mod" - "github.com/libp2p/go-libp2p v0.0.32" - "github.com/libp2p/go-libp2p v0.0.32/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.0.2" - "github.com/libp2p/go-libp2p-autonat v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.0.3" - "github.com/libp2p/go-libp2p-autonat v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-autonat v0.0.6" - "github.com/libp2p/go-libp2p-autonat v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-autonat-svc v0.0.5" - "github.com/libp2p/go-libp2p-autonat-svc v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.0.1" - "github.com/libp2p/go-libp2p-blankhost v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.0.1" - "github.com/libp2p/go-libp2p-circuit v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-circuit v0.0.9" - "github.com/libp2p/go-libp2p-circuit v0.0.9/go.mod" - "github.com/libp2p/go-libp2p-connmgr v0.0.7" - "github.com/libp2p/go-libp2p-connmgr v0.0.7/go.mod" - "github.com/libp2p/go-libp2p-crypto v0.0.1" - "github.com/libp2p/go-libp2p-crypto v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-crypto v0.0.2" - "github.com/libp2p/go-libp2p-crypto v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.0.1" - "github.com/libp2p/go-libp2p-discovery v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-discovery v0.0.5" - "github.com/libp2p/go-libp2p-discovery v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-host v0.0.1" - "github.com/libp2p/go-libp2p-host v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-host v0.0.3" - "github.com/libp2p/go-libp2p-host v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.1" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.4" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.5" - "github.com/libp2p/go-libp2p-interface-connmgr v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-interface-pnet v0.0.1" - "github.com/libp2p/go-libp2p-interface-pnet v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-kad-dht v0.0.15" - "github.com/libp2p/go-libp2p-kad-dht v0.0.15/go.mod" - "github.com/libp2p/go-libp2p-kbucket v0.1.1" - "github.com/libp2p/go-libp2p-kbucket v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-loggables v0.0.1" - "github.com/libp2p/go-libp2p-loggables v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-metrics v0.0.1" - "github.com/libp2p/go-libp2p-metrics v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-mplex v0.1.1" - "github.com/libp2p/go-libp2p-mplex v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.2" - "github.com/libp2p/go-libp2p-nat v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-nat v0.0.4" - "github.com/libp2p/go-libp2p-nat v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-net v0.0.1" - "github.com/libp2p/go-libp2p-net v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-net v0.0.2" - "github.com/libp2p/go-libp2p-net v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-netutil v0.0.1" - "github.com/libp2p/go-libp2p-netutil v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-peer v0.0.1" - "github.com/libp2p/go-libp2p-peer v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-peer v0.1.1" - "github.com/libp2p/go-libp2p-peer v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.0.1" - "github.com/libp2p/go-libp2p-peerstore v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.0.6" - "github.com/libp2p/go-libp2p-peerstore v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-pnet v0.0.1" - "github.com/libp2p/go-libp2p-pnet v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-protocol v0.0.1" - "github.com/libp2p/go-libp2p-protocol v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.0.1" - "github.com/libp2p/go-libp2p-pubsub v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.0.3" - "github.com/libp2p/go-libp2p-pubsub v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-pubsub-router v0.0.3" - "github.com/libp2p/go-libp2p-pubsub-router v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-quic-transport v0.0.3" - "github.com/libp2p/go-libp2p-quic-transport v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-record v0.0.1" - "github.com/libp2p/go-libp2p-record v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-routing v0.0.1" - "github.com/libp2p/go-libp2p-routing v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-routing-helpers v0.0.2" - "github.com/libp2p/go-libp2p-routing-helpers v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-secio v0.0.1" - "github.com/libp2p/go-libp2p-secio v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-secio v0.0.3" - "github.com/libp2p/go-libp2p-secio v0.0.3/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.0.1" - "github.com/libp2p/go-libp2p-swarm v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.0.6" - "github.com/libp2p/go-libp2p-swarm v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.0.7" - "github.com/libp2p/go-libp2p-swarm v0.0.7/go.mod" - "github.com/libp2p/go-libp2p-tls v0.0.2" - "github.com/libp2p/go-libp2p-tls v0.0.2/go.mod" - "github.com/libp2p/go-libp2p-transport v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-transport v0.0.4" - "github.com/libp2p/go-libp2p-transport v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-transport v0.0.5" - "github.com/libp2p/go-libp2p-transport v0.0.5/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.0.1" - "github.com/libp2p/go-libp2p-transport-upgrader v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-transport-upgrader v0.0.4" - "github.com/libp2p/go-libp2p-transport-upgrader v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.1.2" - "github.com/libp2p/go-libp2p-yamux v0.1.2/go.mod" - "github.com/libp2p/go-libp2p-yamux v0.1.3" - "github.com/libp2p/go-libp2p-yamux v0.1.3/go.mod" - "github.com/libp2p/go-maddr-filter v0.0.1" - "github.com/libp2p/go-maddr-filter v0.0.1/go.mod" - "github.com/libp2p/go-maddr-filter v0.0.4" - "github.com/libp2p/go-maddr-filter v0.0.4/go.mod" - "github.com/libp2p/go-mplex v0.0.1" - "github.com/libp2p/go-mplex v0.0.1/go.mod" - "github.com/libp2p/go-mplex v0.0.3" - "github.com/libp2p/go-mplex v0.0.3/go.mod" - "github.com/libp2p/go-mplex v0.0.4" - "github.com/libp2p/go-mplex v0.0.4/go.mod" - "github.com/libp2p/go-msgio v0.0.1" - "github.com/libp2p/go-msgio v0.0.1/go.mod" - "github.com/libp2p/go-msgio v0.0.2" - "github.com/libp2p/go-msgio v0.0.2/go.mod" - "github.com/libp2p/go-nat v0.0.3" - "github.com/libp2p/go-nat v0.0.3/go.mod" - "github.com/libp2p/go-reuseport v0.0.1" - "github.com/libp2p/go-reuseport v0.0.1/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.1" - "github.com/libp2p/go-reuseport-transport v0.0.1/go.mod" - "github.com/libp2p/go-reuseport-transport v0.0.2" - "github.com/libp2p/go-reuseport-transport v0.0.2/go.mod" - "github.com/libp2p/go-stream-muxer v0.0.1" - "github.com/libp2p/go-stream-muxer v0.0.1/go.mod" - "github.com/libp2p/go-stream-muxer-multistream v0.1.1" - "github.com/libp2p/go-stream-muxer-multistream v0.1.1/go.mod" - "github.com/libp2p/go-tcp-transport v0.0.1" - "github.com/libp2p/go-tcp-transport v0.0.1/go.mod" - "github.com/libp2p/go-tcp-transport v0.0.4" - "github.com/libp2p/go-tcp-transport v0.0.4/go.mod" - "github.com/libp2p/go-testutil v0.0.1" - "github.com/libp2p/go-testutil v0.0.1/go.mod" - "github.com/libp2p/go-ws-transport v0.0.1" - "github.com/libp2p/go-ws-transport v0.0.1/go.mod" - "github.com/libp2p/go-ws-transport v0.0.5/go.mod" - "github.com/libp2p/go-ws-transport v0.0.6" - "github.com/libp2p/go-ws-transport v0.0.6/go.mod" - "github.com/libp2p/go-yamux v1.2.1" - "github.com/libp2p/go-yamux v1.2.1/go.mod" - "github.com/libp2p/go-yamux v1.2.2" - "github.com/libp2p/go-yamux v1.2.2/go.mod" - "github.com/libp2p/go-yamux v1.2.3" - "github.com/libp2p/go-yamux v1.2.3/go.mod" - "github.com/lucas-clemente/quic-go v0.11.1" - "github.com/lucas-clemente/quic-go v0.11.1/go.mod" - "github.com/magiconair/properties v1.8.0" - "github.com/magiconair/properties v1.8.0/go.mod" - "github.com/marten-seemann/qtls v0.2.3" - "github.com/marten-seemann/qtls v0.2.3/go.mod" - "github.com/mattn/go-colorable v0.1.1" - "github.com/mattn/go-colorable v0.1.1/go.mod" - "github.com/mattn/go-colorable v0.1.2" - "github.com/mattn/go-colorable v0.1.2/go.mod" - "github.com/mattn/go-isatty v0.0.5" - "github.com/mattn/go-isatty v0.0.5/go.mod" - "github.com/mattn/go-isatty v0.0.8" - "github.com/mattn/go-isatty v0.0.8/go.mod" - "github.com/mattn/go-runewidth v0.0.4" - "github.com/mattn/go-runewidth v0.0.4/go.mod" - "github.com/matttproud/golang_protobuf_extensions v1.0.1" - "github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod" - "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b" - "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod" - "github.com/miekg/dns v1.1.4" - "github.com/miekg/dns v1.1.4/go.mod" - "github.com/miekg/dns v1.1.12" - "github.com/miekg/dns v1.1.12/go.mod" - "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1" - "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod" - "github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16" - "github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod" - "github.com/minio/sha256-simd v0.0.0-20190328051042-05b4dd3047e5" - "github.com/minio/sha256-simd v0.0.0-20190328051042-05b4dd3047e5/go.mod" - "github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771" - "github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod" - "github.com/mitchellh/go-homedir v1.1.0" - "github.com/mitchellh/go-homedir v1.1.0/go.mod" - "github.com/mitchellh/mapstructure v1.1.2" - "github.com/mitchellh/mapstructure v1.1.2/go.mod" - "github.com/mr-tron/base58 v1.1.0" - "github.com/mr-tron/base58 v1.1.0/go.mod" - "github.com/mr-tron/base58 v1.1.2" - "github.com/mr-tron/base58 v1.1.2/go.mod" - "github.com/multiformats/go-base32 v0.0.3" - "github.com/multiformats/go-base32 v0.0.3/go.mod" - "github.com/multiformats/go-multiaddr v0.0.1" - "github.com/multiformats/go-multiaddr v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr v0.0.2" - "github.com/multiformats/go-multiaddr v0.0.2/go.mod" - "github.com/multiformats/go-multiaddr v0.0.4" - "github.com/multiformats/go-multiaddr v0.0.4/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.1/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.2" - "github.com/multiformats/go-multiaddr-dns v0.0.2/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.3" - "github.com/multiformats/go-multiaddr-dns v0.0.3/go.mod" - "github.com/multiformats/go-multiaddr-net v0.0.1" - "github.com/multiformats/go-multiaddr-net v0.0.1/go.mod" - "github.com/multiformats/go-multibase v0.0.1" - "github.com/multiformats/go-multibase v0.0.1/go.mod" - "github.com/multiformats/go-multicodec v0.1.6" - "github.com/multiformats/go-multicodec v0.1.6/go.mod" - "github.com/multiformats/go-multihash v0.0.1" - "github.com/multiformats/go-multihash v0.0.1/go.mod" - "github.com/multiformats/go-multihash v0.0.5" - "github.com/multiformats/go-multihash v0.0.5/go.mod" - "github.com/multiformats/go-multihash v0.0.10" - "github.com/multiformats/go-multihash v0.0.10/go.mod" - "github.com/multiformats/go-multistream v0.0.1" - "github.com/multiformats/go-multistream v0.0.1/go.mod" - "github.com/multiformats/go-multistream v0.0.4" - "github.com/multiformats/go-multistream v0.0.4/go.mod" - "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223" - "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod" - "github.com/oklog/ulid v1.3.1/go.mod" - "github.com/onsi/ginkgo v1.6.0/go.mod" - "github.com/onsi/ginkgo v1.7.0" - "github.com/onsi/ginkgo v1.7.0/go.mod" - "github.com/onsi/ginkgo v1.8.0" - "github.com/onsi/ginkgo v1.8.0/go.mod" - "github.com/onsi/gomega v1.4.3" - "github.com/onsi/gomega v1.4.3/go.mod" - "github.com/onsi/gomega v1.5.0" - "github.com/onsi/gomega v1.5.0/go.mod" - "github.com/opentracing/opentracing-go v1.0.2" - "github.com/opentracing/opentracing-go v1.0.2/go.mod" - "github.com/opentracing/opentracing-go v1.1.0" - "github.com/opentracing/opentracing-go v1.1.0/go.mod" - "github.com/pelletier/go-toml v1.2.0" - "github.com/pelletier/go-toml v1.2.0/go.mod" - "github.com/pkg/errors v0.8.0/go.mod" - "github.com/pkg/errors v0.8.1" - "github.com/pkg/errors v0.8.1/go.mod" - "github.com/pmezard/go-difflib v1.0.0" - "github.com/pmezard/go-difflib v1.0.0/go.mod" - "github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992" - "github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992/go.mod" - "github.com/prometheus/client_golang v0.9.1/go.mod" - "github.com/prometheus/client_golang v0.9.2" - "github.com/prometheus/client_golang v0.9.2/go.mod" - "github.com/prometheus/client_golang v0.9.3" - "github.com/prometheus/client_golang v0.9.3/go.mod" - "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910" - "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod" - "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90" - "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod" - "github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod" - "github.com/prometheus/common v0.0.0-20181126121408-4724e9255275" - "github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod" - "github.com/prometheus/common v0.4.0" - "github.com/prometheus/common v0.4.0/go.mod" - "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod" - "github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a" - "github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod" - "github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod" - "github.com/prometheus/procfs v0.0.0-20190519111021-9935e8e0588d" - "github.com/prometheus/procfs v0.0.0-20190519111021-9935e8e0588d/go.mod" - "github.com/prometheus/tsdb v0.7.1/go.mod" - "github.com/rs/cors v1.6.0" - "github.com/rs/cors v1.6.0/go.mod" - "github.com/russross/blackfriday v1.5.2/go.mod" - "github.com/sirupsen/logrus v1.2.0" - "github.com/sirupsen/logrus v1.2.0/go.mod" - "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d" - "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" - "github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa" - "github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod" - "github.com/spacemonkeygo/openssl v0.0.0-20181017203307-c2dcc5cca94a" - "github.com/spacemonkeygo/openssl v0.0.0-20181017203307-c2dcc5cca94a/go.mod" - "github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572" - "github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572/go.mod" - "github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72" - "github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod" - "github.com/spaolacci/murmur3 v1.1.0" - "github.com/spaolacci/murmur3 v1.1.0/go.mod" - "github.com/spf13/afero v1.1.2" - "github.com/spf13/afero v1.1.2/go.mod" - "github.com/spf13/cast v1.3.0" - "github.com/spf13/cast v1.3.0/go.mod" - "github.com/spf13/cobra v0.0.5" - "github.com/spf13/cobra v0.0.5/go.mod" - "github.com/spf13/jwalterweatherman v1.0.0" - "github.com/spf13/jwalterweatherman v1.0.0/go.mod" - "github.com/spf13/pflag v1.0.3" - "github.com/spf13/pflag v1.0.3/go.mod" - "github.com/spf13/viper v1.3.2" - "github.com/spf13/viper v1.3.2/go.mod" - "github.com/stretchr/objx v0.1.0/go.mod" - "github.com/stretchr/objx v0.1.1/go.mod" - "github.com/stretchr/testify v1.2.2/go.mod" - "github.com/stretchr/testify v1.3.0" - "github.com/stretchr/testify v1.3.0/go.mod" - "github.com/syndtr/goleveldb v1.0.0" - "github.com/syndtr/goleveldb v1.0.0/go.mod" - "github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e" - "github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e/go.mod" - "github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod" - "github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436" - "github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod" - "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc" - "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc/go.mod" - "github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11" - "github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11/go.mod" - "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f" - "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f/go.mod" - "github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1" - "github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1/go.mod" - "github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc" - "github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod" - "github.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f" - "github.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f/go.mod" - "github.com/whyrusleeping/go-smux-multiplex v3.0.16+incompatible" - "github.com/whyrusleeping/go-smux-multiplex v3.0.16+incompatible/go.mod" - "github.com/whyrusleeping/go-smux-multistream v2.0.2+incompatible" - "github.com/whyrusleeping/go-smux-multistream v2.0.2+incompatible/go.mod" - "github.com/whyrusleeping/go-smux-yamux v2.0.8+incompatible" - "github.com/whyrusleeping/go-smux-yamux v2.0.8+incompatible/go.mod" - "github.com/whyrusleeping/go-smux-yamux v2.0.9+incompatible" - "github.com/whyrusleeping/go-smux-yamux v2.0.9+incompatible/go.mod" - "github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1" - "github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1/go.mod" - "github.com/whyrusleeping/mafmt v1.2.8" - "github.com/whyrusleeping/mafmt v1.2.8/go.mod" - "github.com/whyrusleeping/mdns v0.0.0-20180901202407-ef14215e6b30" - "github.com/whyrusleeping/mdns v0.0.0-20180901202407-ef14215e6b30/go.mod" - "github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7" - "github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7/go.mod" - "github.com/whyrusleeping/tar-utils v0.0.0-20180509141711-8c6c8ba81d5c" - "github.com/whyrusleeping/tar-utils v0.0.0-20180509141711-8c6c8ba81d5c/go.mod" - "github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee" - "github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee/go.mod" - "github.com/whyrusleeping/yamux v1.1.5" - "github.com/whyrusleeping/yamux v1.1.5/go.mod" - "github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod" - "go.opencensus.io v0.21.0" - "go.opencensus.io v0.21.0/go.mod" - "go.uber.org/atomic v1.4.0" - "go.uber.org/atomic v1.4.0/go.mod" - "go.uber.org/dig v1.7.0" - "go.uber.org/dig v1.7.0/go.mod" - "go.uber.org/fx v1.9.0" - "go.uber.org/fx v1.9.0/go.mod" - "go.uber.org/goleak v0.10.0" - "go.uber.org/goleak v0.10.0/go.mod" - "go.uber.org/multierr v1.1.0" - "go.uber.org/multierr v1.1.0/go.mod" - "go4.org v0.0.0-20190218023631-ce4c26f7be8e" - "go4.org v0.0.0-20190218023631-ce4c26f7be8e/go.mod" - "go4.org v0.0.0-20190313082347-94abd6928b1d" - "go4.org v0.0.0-20190313082347-94abd6928b1d/go.mod" - "golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod" - "golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod" - "golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod" - "golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod" - "golang.org/x/crypto v0.0.0-20190225124518-7f87c0fbb88b/go.mod" - "golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25" - "golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25/go.mod" - "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2" - "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod" - "golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734" - "golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod" - "golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f" - "golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod" - "golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8" - "golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod" - "golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d" - "golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod" - "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod" - "golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod" - "golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod" - "golang.org/x/net v0.0.0-20180524181706-dfa909b99c79/go.mod" - "golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod" - "golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod" - "golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod" - "golang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod" - "golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod" - "golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod" - "golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod" - "golang.org/x/net v0.0.0-20190227160552-c95aed5357e7" - "golang.org/x/net v0.0.0-20190227160552-c95aed5357e7/go.mod" - "golang.org/x/net v0.0.0-20190311183353-d8887717615a" - "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod" - "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod" - "golang.org/x/net v0.0.0-20190522135303-fa69b94a3b58" - "golang.org/x/net v0.0.0-20190522135303-fa69b94a3b58/go.mod" - "golang.org/x/net v0.0.0-20190620200207-3b0461eec859" - "golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod" - "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod" - "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod" - "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f" - "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod" - "golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod" - "golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6" - "golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod" - "golang.org/x/sync v0.0.0-20190423024810-112230192c58" - "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod" - "golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod" - "golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod" - "golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod" - "golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod" - "golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod" - "golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod" - "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod" - "golang.org/x/sys v0.0.0-20190219092855-153ac476189d/go.mod" - "golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod" - "golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod" - "golang.org/x/sys v0.0.0-20190302025703-b6889370fb10" - "golang.org/x/sys v0.0.0-20190302025703-b6889370fb10/go.mod" - "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod" - "golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5" - "golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5/go.mod" - "golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb" - "golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod" - "golang.org/x/text v0.3.0" - "golang.org/x/text v0.3.0/go.mod" - "golang.org/x/text v0.3.2" - "golang.org/x/text v0.3.2/go.mod" - "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635" - "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod" - "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" - "golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod" - "golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod" - "golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522" - "golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod" - "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543" - "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod" - "google.golang.org/appengine v1.1.0/go.mod" - "google.golang.org/appengine v1.4.0" - "google.golang.org/appengine v1.4.0/go.mod" - "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod" - "google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod" - "google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod" - "google.golang.org/grpc v1.19.0/go.mod" - "gopkg.in/alecthomas/kingpin.v2 v2.2.6" - "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod" - "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" - "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127" - "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod" - "gopkg.in/cheggaaa/pb.v1 v1.0.28" - "gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod" - "gopkg.in/fsnotify.v1 v1.4.7" - "gopkg.in/fsnotify.v1 v1.4.7/go.mod" - "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7" - "gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod" - "gopkg.in/yaml.v2 v2.2.1" - "gopkg.in/yaml.v2 v2.2.1/go.mod" - "gopkg.in/yaml.v2 v2.2.2" - "gopkg.in/yaml.v2 v2.2.2/go.mod" - "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod" - ) -go-module_set_globals -SRC_URI="https://github.com/ipfs/go-ipfs/archive/v${PV}.tar.gz -> ${P}.tar.gz - ${EGO_SUM_SRC_URI}" - -LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - !net-p2p/go-ipfs-bin - acct-group/ipfs - acct-user/ipfs - sys-fs/fuse:0 -" - -DOCS=(CHANGELOG.md CONTRIBUTING.md README.md docs/) - -S="${WORKDIR}" - -src_compile() { - local mygoargs - mygoargs=( - -tags release - ) - go build "${mygoargs[@]}" -o ipfs ./cmd/ipfs || die - go build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch || die -} - -src_test() { - go test ./cmd/ipfs/... ./cmd/ipfswatch/... || die -} - -src_install() { - dobin ipfs - dobin ipfswatch - newbashcomp misc/completion/ipfs-completion.bash ipfs - einstalldocs - - systemd_dounit "${FILESDIR}/ipfs.service" - systemd_newunit "${FILESDIR}/ipfs-at.service" "ipfs@.service" - - newinitd "${FILESDIR}/ipfs.init" ipfs - newconfd "${FILESDIR}/ipfs.confd" ipfs - - keepdir /var/log/ipfs - fowners -R ipfs:ipfs /var/log/ipfs -} - -pkg_postinst() { - elog 'To be able to use the ipfs service you will need to create the ipfs repository' - elog '(eg: su -s /bin/sh -c "ipfs init -e" ipfs)' - elog 'or change IPFS_PATH of /etc/conf.d/ipfs with another with proper permissions.' -} diff --git a/net-p2p/go-ipfs/go-ipfs-0.5.1.ebuild b/net-p2p/go-ipfs/go-ipfs-0.7.0.ebuild similarity index 76% rename from net-p2p/go-ipfs/go-ipfs-0.5.1.ebuild rename to net-p2p/go-ipfs/go-ipfs-0.7.0.ebuild index 06b2766a1c76..9a0de18ebba9 100644 --- a/net-p2p/go-ipfs/go-ipfs-0.5.1.ebuild +++ b/net-p2p/go-ipfs/go-ipfs-0.7.0.ebuild @@ -14,7 +14,22 @@ EGO_SUM=( "cloud.google.com/go v0.31.0/go.mod" "cloud.google.com/go v0.34.0/go.mod" "cloud.google.com/go v0.37.0/go.mod" + "cloud.google.com/go v0.38.0/go.mod" + "cloud.google.com/go v0.44.1/go.mod" + "cloud.google.com/go v0.44.2/go.mod" + "cloud.google.com/go v0.45.1/go.mod" + "cloud.google.com/go v0.46.3/go.mod" + "cloud.google.com/go v0.50.0/go.mod" + "cloud.google.com/go v0.53.0/go.mod" + "cloud.google.com/go/bigquery v1.0.1/go.mod" + "cloud.google.com/go/bigquery v1.3.0/go.mod" + "cloud.google.com/go/datastore v1.0.0/go.mod" + "cloud.google.com/go/pubsub v1.0.1/go.mod" + "cloud.google.com/go/pubsub v1.1.0/go.mod" + "cloud.google.com/go/storage v1.0.0/go.mod" + "cloud.google.com/go/storage v1.5.0/go.mod" "dmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod" + "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod" "dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod" "dmitri.shuralyov.com/service/change v0.0.0-20181023043359-a85b471d5412/go.mod" "dmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c/go.mod" @@ -25,6 +40,7 @@ EGO_SUM=( "github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96/go.mod" "github.com/BurntSushi/toml v0.3.1" "github.com/BurntSushi/toml v0.3.1/go.mod" + "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod" "github.com/Kubuxu/go-os-helper v0.0.1" "github.com/Kubuxu/go-os-helper v0.0.1/go.mod" "github.com/OneOfOne/xxhash v1.2.2" @@ -33,8 +49,6 @@ EGO_SUM=( "github.com/Stebalien/go-bitfield v0.0.1" "github.com/Stebalien/go-bitfield v0.0.1/go.mod" "github.com/aead/siphash v1.0.1/go.mod" - "github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75" - "github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75/go.mod" "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" "github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod" "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" @@ -43,6 +57,10 @@ EGO_SUM=( "github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5/go.mod" "github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod" "github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod" + "github.com/benbjohnson/clock v1.0.2" + "github.com/benbjohnson/clock v1.0.2/go.mod" + "github.com/benbjohnson/clock v1.0.3" + "github.com/benbjohnson/clock v1.0.3/go.mod" "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" "github.com/beorn7/perks v1.0.0/go.mod" "github.com/beorn7/perks v1.0.1" @@ -55,7 +73,6 @@ EGO_SUM=( "github.com/btcsuite/btcd v0.0.0-20190213025234-306aecffea32/go.mod" "github.com/btcsuite/btcd v0.0.0-20190523000118-16327141da8c/go.mod" "github.com/btcsuite/btcd v0.0.0-20190605094302-a0d1e3e36d50/go.mod" - "github.com/btcsuite/btcd v0.0.0-20190629003639-c26ffa870fd8/go.mod" "github.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3" "github.com/btcsuite/btcd v0.0.0-20190824003749-130ea5bddde3/go.mod" "github.com/btcsuite/btcd v0.20.1-beta" @@ -71,12 +88,16 @@ EGO_SUM=( "github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod" "github.com/cenkalti/backoff v2.2.1+incompatible" "github.com/cenkalti/backoff v2.2.1+incompatible/go.mod" + "github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod" "github.com/cespare/xxhash v1.1.0" "github.com/cespare/xxhash v1.1.0/go.mod" "github.com/cespare/xxhash/v2 v2.1.1" "github.com/cespare/xxhash/v2 v2.1.1/go.mod" "github.com/cheekybits/genny v1.0.0" "github.com/cheekybits/genny v1.0.0/go.mod" + "github.com/chzyer/logex v1.1.10/go.mod" + "github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod" + "github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod" "github.com/client9/misspell v0.3.4/go.mod" "github.com/coreos/etcd v3.3.10+incompatible/go.mod" "github.com/coreos/go-etcd v2.0.0+incompatible/go.mod" @@ -88,6 +109,8 @@ EGO_SUM=( "github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod" "github.com/coreos/go-systemd/v22 v22.0.0" "github.com/coreos/go-systemd/v22 v22.0.0/go.mod" + "github.com/coreos/go-systemd/v22 v22.1.0" + "github.com/coreos/go-systemd/v22 v22.1.0/go.mod" "github.com/cpuguy83/go-md2man v1.0.10/go.mod" "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3" "github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3/go.mod" @@ -115,18 +138,24 @@ EGO_SUM=( "github.com/dustin/go-humanize v1.0.0/go.mod" "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302" "github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302/go.mod" + "github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod" + "github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod" "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5" "github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5/go.mod" "github.com/fatih/color v1.9.0" "github.com/fatih/color v1.9.0/go.mod" "github.com/fd/go-nat v1.0.0/go.mod" "github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod" + "github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6" + "github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6/go.mod" "github.com/francoispqt/gojay v1.2.13" "github.com/francoispqt/gojay v1.2.13/go.mod" "github.com/fsnotify/fsnotify v1.4.7" "github.com/fsnotify/fsnotify v1.4.7/go.mod" "github.com/fsnotify/fsnotify v1.4.9" "github.com/fsnotify/fsnotify v1.4.9/go.mod" + "github.com/gabriel-vasile/mimetype v1.1.1" + "github.com/gabriel-vasile/mimetype v1.1.1/go.mod" "github.com/ghodss/yaml v1.0.0/go.mod" "github.com/gliderlabs/ssh v0.1.1/go.mod" "github.com/go-bindata/go-bindata/v3 v3.1.3" @@ -134,6 +163,8 @@ EGO_SUM=( "github.com/go-check/check v0.0.0-20180628173108-788fd7840127" "github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod" "github.com/go-errors/errors v1.0.1/go.mod" + "github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod" + "github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod" "github.com/go-kit/kit v0.8.0/go.mod" "github.com/go-kit/kit v0.9.0/go.mod" "github.com/go-logfmt/logfmt v0.3.0/go.mod" @@ -149,20 +180,37 @@ EGO_SUM=( "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod" "github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6" "github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod" + "github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod" + "github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod" + "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e" + "github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod" "github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod" "github.com/golang/mock v1.1.1/go.mod" "github.com/golang/mock v1.2.0" "github.com/golang/mock v1.2.0/go.mod" + "github.com/golang/mock v1.3.1/go.mod" "github.com/golang/mock v1.4.0" "github.com/golang/mock v1.4.0/go.mod" + "github.com/golang/mock v1.4.4" + "github.com/golang/mock v1.4.4/go.mod" "github.com/golang/protobuf v1.2.0/go.mod" "github.com/golang/protobuf v1.3.0/go.mod" "github.com/golang/protobuf v1.3.1/go.mod" "github.com/golang/protobuf v1.3.2" "github.com/golang/protobuf v1.3.2/go.mod" + "github.com/golang/protobuf v1.3.3/go.mod" + "github.com/golang/protobuf v1.4.0-rc.1/go.mod" + "github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod" + "github.com/golang/protobuf v1.4.0-rc.2/go.mod" + "github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod" + "github.com/golang/protobuf v1.4.0" + "github.com/golang/protobuf v1.4.0/go.mod" + "github.com/golang/protobuf v1.4.2" + "github.com/golang/protobuf v1.4.2/go.mod" "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db" "github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod" "github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod" + "github.com/google/btree v1.0.0/go.mod" "github.com/google/go-cmp v0.2.0/go.mod" "github.com/google/go-cmp v0.3.0" "github.com/google/go-cmp v0.3.0/go.mod" @@ -175,16 +223,24 @@ EGO_SUM=( "github.com/google/gofuzz v1.0.0/go.mod" "github.com/google/gopacket v1.1.17" "github.com/google/gopacket v1.1.17/go.mod" + "github.com/google/gopacket v1.1.18" + "github.com/google/gopacket v1.1.18/go.mod" "github.com/google/martian v2.1.0+incompatible/go.mod" "github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod" + "github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod" + "github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod" "github.com/google/renameio v0.1.0/go.mod" "github.com/google/uuid v1.1.1" "github.com/google/uuid v1.1.1/go.mod" "github.com/googleapis/gax-go v2.0.0+incompatible/go.mod" "github.com/googleapis/gax-go/v2 v2.0.3/go.mod" + "github.com/googleapis/gax-go/v2 v2.0.4/go.mod" + "github.com/googleapis/gax-go/v2 v2.0.5/go.mod" "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" "github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c" "github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c/go.mod" + "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f" + "github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f/go.mod" "github.com/gorilla/websocket v1.4.0/go.mod" "github.com/gorilla/websocket v1.4.1" "github.com/gorilla/websocket v1.4.1/go.mod" @@ -195,14 +251,14 @@ EGO_SUM=( "github.com/gxed/hashland/keccakpg v0.0.1/go.mod" "github.com/gxed/hashland/murmur3 v0.0.1/go.mod" "github.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824/go.mod" + "github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e" + "github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e/go.mod" "github.com/hashicorp/errwrap v1.0.0" "github.com/hashicorp/errwrap v1.0.0/go.mod" "github.com/hashicorp/go-multierror v1.1.0" "github.com/hashicorp/go-multierror v1.1.0/go.mod" "github.com/hashicorp/golang-lru v0.5.0/go.mod" "github.com/hashicorp/golang-lru v0.5.1/go.mod" - "github.com/hashicorp/golang-lru v0.5.3" - "github.com/hashicorp/golang-lru v0.5.3/go.mod" "github.com/hashicorp/golang-lru v0.5.4" "github.com/hashicorp/golang-lru v0.5.4/go.mod" "github.com/hashicorp/hcl v1.0.0/go.mod" @@ -212,6 +268,7 @@ EGO_SUM=( "github.com/huin/goupnp v1.0.0" "github.com/huin/goupnp v1.0.0/go.mod" "github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod" + "github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod" "github.com/inconshreveable/mousetrap v1.0.0/go.mod" "github.com/ipfs/bbloom v0.0.1/go.mod" "github.com/ipfs/bbloom v0.0.4" @@ -222,8 +279,8 @@ EGO_SUM=( "github.com/ipfs/go-bitswap v0.1.2/go.mod" "github.com/ipfs/go-bitswap v0.1.3/go.mod" "github.com/ipfs/go-bitswap v0.1.8/go.mod" - "github.com/ipfs/go-bitswap v0.2.13" - "github.com/ipfs/go-bitswap v0.2.13/go.mod" + "github.com/ipfs/go-bitswap v0.2.20" + "github.com/ipfs/go-bitswap v0.2.20/go.mod" "github.com/ipfs/go-block-format v0.0.1/go.mod" "github.com/ipfs/go-block-format v0.0.2" "github.com/ipfs/go-block-format v0.0.2/go.mod" @@ -243,6 +300,10 @@ EGO_SUM=( "github.com/ipfs/go-cid v0.0.4/go.mod" "github.com/ipfs/go-cid v0.0.5" "github.com/ipfs/go-cid v0.0.5/go.mod" + "github.com/ipfs/go-cid v0.0.6" + "github.com/ipfs/go-cid v0.0.6/go.mod" + "github.com/ipfs/go-cid v0.0.7" + "github.com/ipfs/go-cid v0.0.7/go.mod" "github.com/ipfs/go-cidutil v0.0.2" "github.com/ipfs/go-cidutil v0.0.2/go.mod" "github.com/ipfs/go-datastore v0.0.1/go.mod" @@ -258,6 +319,8 @@ EGO_SUM=( "github.com/ipfs/go-datastore v0.4.1/go.mod" "github.com/ipfs/go-datastore v0.4.4" "github.com/ipfs/go-datastore v0.4.4/go.mod" + "github.com/ipfs/go-datastore v0.4.5" + "github.com/ipfs/go-datastore v0.4.5/go.mod" "github.com/ipfs/go-detect-race v0.0.1" "github.com/ipfs/go-detect-race v0.0.1/go.mod" "github.com/ipfs/go-ds-badger v0.0.2/go.mod" @@ -271,8 +334,8 @@ EGO_SUM=( "github.com/ipfs/go-ds-badger v0.2.3/go.mod" "github.com/ipfs/go-ds-badger v0.2.4" "github.com/ipfs/go-ds-badger v0.2.4/go.mod" - "github.com/ipfs/go-ds-flatfs v0.4.4" - "github.com/ipfs/go-ds-flatfs v0.4.4/go.mod" + "github.com/ipfs/go-ds-flatfs v0.4.5" + "github.com/ipfs/go-ds-flatfs v0.4.5/go.mod" "github.com/ipfs/go-ds-leveldb v0.0.1/go.mod" "github.com/ipfs/go-ds-leveldb v0.1.0" "github.com/ipfs/go-ds-leveldb v0.1.0/go.mod" @@ -284,10 +347,10 @@ EGO_SUM=( "github.com/ipfs/go-ds-measure v0.1.0/go.mod" "github.com/ipfs/go-filestore v0.0.3" "github.com/ipfs/go-filestore v0.0.3/go.mod" - "github.com/ipfs/go-fs-lock v0.0.4" - "github.com/ipfs/go-fs-lock v0.0.4/go.mod" - "github.com/ipfs/go-graphsync v0.0.5" - "github.com/ipfs/go-graphsync v0.0.5/go.mod" + "github.com/ipfs/go-fs-lock v0.0.6" + "github.com/ipfs/go-fs-lock v0.0.6/go.mod" + "github.com/ipfs/go-graphsync v0.1.1" + "github.com/ipfs/go-graphsync v0.1.1/go.mod" "github.com/ipfs/go-ipfs-blockstore v0.0.1/go.mod" "github.com/ipfs/go-ipfs-blockstore v0.1.0" "github.com/ipfs/go-ipfs-blockstore v0.1.0/go.mod" @@ -299,10 +362,10 @@ EGO_SUM=( "github.com/ipfs/go-ipfs-chunker v0.0.1/go.mod" "github.com/ipfs/go-ipfs-chunker v0.0.5" "github.com/ipfs/go-ipfs-chunker v0.0.5/go.mod" - "github.com/ipfs/go-ipfs-cmds v0.2.2" - "github.com/ipfs/go-ipfs-cmds v0.2.2/go.mod" - "github.com/ipfs/go-ipfs-config v0.5.3" - "github.com/ipfs/go-ipfs-config v0.5.3/go.mod" + "github.com/ipfs/go-ipfs-cmds v0.4.0" + "github.com/ipfs/go-ipfs-cmds v0.4.0/go.mod" + "github.com/ipfs/go-ipfs-config v0.9.0" + "github.com/ipfs/go-ipfs-config v0.9.0/go.mod" "github.com/ipfs/go-ipfs-delay v0.0.0-20181109222059-70721b86a9a8/go.mod" "github.com/ipfs/go-ipfs-delay v0.0.1" "github.com/ipfs/go-ipfs-delay v0.0.1/go.mod" @@ -316,7 +379,6 @@ EGO_SUM=( "github.com/ipfs/go-ipfs-exchange-offline v0.0.1/go.mod" "github.com/ipfs/go-ipfs-files v0.0.2/go.mod" "github.com/ipfs/go-ipfs-files v0.0.3/go.mod" - "github.com/ipfs/go-ipfs-files v0.0.4/go.mod" "github.com/ipfs/go-ipfs-files v0.0.8" "github.com/ipfs/go-ipfs-files v0.0.8/go.mod" "github.com/ipfs/go-ipfs-flags v0.0.1/go.mod" @@ -334,6 +396,8 @@ EGO_SUM=( "github.com/ipfs/go-ipfs-routing v0.1.0/go.mod" "github.com/ipfs/go-ipfs-util v0.0.1" "github.com/ipfs/go-ipfs-util v0.0.1/go.mod" + "github.com/ipfs/go-ipfs-util v0.0.2" + "github.com/ipfs/go-ipfs-util v0.0.2/go.mod" "github.com/ipfs/go-ipld-cbor v0.0.1/go.mod" "github.com/ipfs/go-ipld-cbor v0.0.2/go.mod" "github.com/ipfs/go-ipld-cbor v0.0.3" @@ -367,12 +431,13 @@ EGO_SUM=( "github.com/ipfs/go-log/v2 v2.0.3/go.mod" "github.com/ipfs/go-log/v2 v2.0.5" "github.com/ipfs/go-log/v2 v2.0.5/go.mod" + "github.com/ipfs/go-log/v2 v2.1.1" + "github.com/ipfs/go-log/v2 v2.1.1/go.mod" "github.com/ipfs/go-merkledag v0.0.3/go.mod" "github.com/ipfs/go-merkledag v0.0.6/go.mod" "github.com/ipfs/go-merkledag v0.1.0/go.mod" "github.com/ipfs/go-merkledag v0.2.3" "github.com/ipfs/go-merkledag v0.2.3/go.mod" - "github.com/ipfs/go-merkledag v0.2.4/go.mod" "github.com/ipfs/go-merkledag v0.3.0" "github.com/ipfs/go-merkledag v0.3.0/go.mod" "github.com/ipfs/go-merkledag v0.3.1" @@ -383,11 +448,13 @@ EGO_SUM=( "github.com/ipfs/go-metrics-interface v0.0.1/go.mod" "github.com/ipfs/go-metrics-prometheus v0.0.2" "github.com/ipfs/go-metrics-prometheus v0.0.2/go.mod" - "github.com/ipfs/go-mfs v0.1.1" - "github.com/ipfs/go-mfs v0.1.1/go.mod" + "github.com/ipfs/go-mfs v0.1.2" + "github.com/ipfs/go-mfs v0.1.2/go.mod" "github.com/ipfs/go-path v0.0.3/go.mod" "github.com/ipfs/go-path v0.0.7" "github.com/ipfs/go-path v0.0.7/go.mod" + "github.com/ipfs/go-path v0.0.8" + "github.com/ipfs/go-path v0.0.8/go.mod" "github.com/ipfs/go-peertaskqueue v0.0.4/go.mod" "github.com/ipfs/go-peertaskqueue v0.1.0/go.mod" "github.com/ipfs/go-peertaskqueue v0.1.1/go.mod" @@ -395,19 +462,20 @@ EGO_SUM=( "github.com/ipfs/go-peertaskqueue v0.2.0/go.mod" "github.com/ipfs/go-unixfs v0.0.4/go.mod" "github.com/ipfs/go-unixfs v0.1.0/go.mod" - "github.com/ipfs/go-unixfs v0.2.2-0.20190827150610-868af2e9e5cb/go.mod" "github.com/ipfs/go-unixfs v0.2.4" "github.com/ipfs/go-unixfs v0.2.4/go.mod" "github.com/ipfs/go-verifcid v0.0.1" "github.com/ipfs/go-verifcid v0.0.1/go.mod" - "github.com/ipfs/interface-go-ipfs-core v0.2.7" - "github.com/ipfs/interface-go-ipfs-core v0.2.7/go.mod" - "github.com/ipld/go-car v0.1.0" - "github.com/ipld/go-car v0.1.0/go.mod" - "github.com/ipld/go-ipld-prime v0.0.2-0.20191108012745-28a82f04c785" - "github.com/ipld/go-ipld-prime v0.0.2-0.20191108012745-28a82f04c785/go.mod" - "github.com/ipld/go-ipld-prime-proto v0.0.0-20191113031812-e32bd156a1e5" - "github.com/ipld/go-ipld-prime-proto v0.0.0-20191113031812-e32bd156a1e5/go.mod" + "github.com/ipfs/interface-go-ipfs-core v0.3.0" + "github.com/ipfs/interface-go-ipfs-core v0.3.0/go.mod" + "github.com/ipfs/interface-go-ipfs-core v0.4.0" + "github.com/ipfs/interface-go-ipfs-core v0.4.0/go.mod" + "github.com/ipld/go-car v0.1.1-0.20200429200904-c222d793c339" + "github.com/ipld/go-car v0.1.1-0.20200429200904-c222d793c339/go.mod" + "github.com/ipld/go-ipld-prime v0.0.2-0.20200428162820-8b59dc292b8e" + "github.com/ipld/go-ipld-prime v0.0.2-0.20200428162820-8b59dc292b8e/go.mod" + "github.com/ipld/go-ipld-prime-proto v0.0.0-20200428191222-c1ffdadc01e1" + "github.com/ipld/go-ipld-prime-proto v0.0.0-20200428191222-c1ffdadc01e1/go.mod" "github.com/jackpal/gateway v1.0.4/go.mod" "github.com/jackpal/gateway v1.0.5" "github.com/jackpal/gateway v1.0.5/go.mod" @@ -418,8 +486,8 @@ EGO_SUM=( "github.com/jbenet/go-cienv v0.0.0-20150120210510-1bb1476777ec/go.mod" "github.com/jbenet/go-cienv v0.1.0" "github.com/jbenet/go-cienv v0.1.0/go.mod" - "github.com/jbenet/go-is-domain v1.0.3" - "github.com/jbenet/go-is-domain v1.0.3/go.mod" + "github.com/jbenet/go-is-domain v1.0.5" + "github.com/jbenet/go-is-domain v1.0.5/go.mod" "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c" "github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c/go.mod" "github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2" @@ -436,8 +504,9 @@ EGO_SUM=( "github.com/jessevdk/go-flags v1.4.0/go.mod" "github.com/jrick/logrotate v1.0.0/go.mod" "github.com/json-iterator/go v1.1.6/go.mod" - "github.com/json-iterator/go v1.1.9/go.mod" + "github.com/json-iterator/go v1.1.10/go.mod" "github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod" + "github.com/jstemmer/go-junit-report v0.9.1/go.mod" "github.com/jtolds/gls v4.2.1+incompatible/go.mod" "github.com/jtolds/gls v4.20.0+incompatible" "github.com/jtolds/gls v4.20.0+incompatible/go.mod" @@ -464,9 +533,13 @@ EGO_SUM=( "github.com/kr/text v0.1.0/go.mod" "github.com/libp2p/go-addr-util v0.0.1" "github.com/libp2p/go-addr-util v0.0.1/go.mod" + "github.com/libp2p/go-addr-util v0.0.2" + "github.com/libp2p/go-addr-util v0.0.2/go.mod" "github.com/libp2p/go-buffer-pool v0.0.1/go.mod" "github.com/libp2p/go-buffer-pool v0.0.2" "github.com/libp2p/go-buffer-pool v0.0.2/go.mod" + "github.com/libp2p/go-cidranger v1.1.0" + "github.com/libp2p/go-cidranger v1.1.0/go.mod" "github.com/libp2p/go-conn-security v0.0.1/go.mod" "github.com/libp2p/go-conn-security-multistream v0.0.1/go.mod" "github.com/libp2p/go-conn-security-multistream v0.0.2/go.mod" @@ -474,10 +547,10 @@ EGO_SUM=( "github.com/libp2p/go-conn-security-multistream v0.1.0/go.mod" "github.com/libp2p/go-conn-security-multistream v0.2.0" "github.com/libp2p/go-conn-security-multistream v0.2.0/go.mod" - "github.com/libp2p/go-eventbus v0.0.2/go.mod" - "github.com/libp2p/go-eventbus v0.0.3/go.mod" "github.com/libp2p/go-eventbus v0.1.0" "github.com/libp2p/go-eventbus v0.1.0/go.mod" + "github.com/libp2p/go-eventbus v0.2.1" + "github.com/libp2p/go-eventbus v0.2.1/go.mod" "github.com/libp2p/go-flow-metrics v0.0.1" "github.com/libp2p/go-flow-metrics v0.0.1/go.mod" "github.com/libp2p/go-flow-metrics v0.0.2" @@ -488,7 +561,6 @@ EGO_SUM=( "github.com/libp2p/go-libp2p v0.0.30/go.mod" "github.com/libp2p/go-libp2p v0.1.0/go.mod" "github.com/libp2p/go-libp2p v0.1.1/go.mod" - "github.com/libp2p/go-libp2p v0.2.1/go.mod" "github.com/libp2p/go-libp2p v0.6.0" "github.com/libp2p/go-libp2p v0.6.0/go.mod" "github.com/libp2p/go-libp2p v0.6.1" @@ -497,10 +569,13 @@ EGO_SUM=( "github.com/libp2p/go-libp2p v0.7.0/go.mod" "github.com/libp2p/go-libp2p v0.7.4" "github.com/libp2p/go-libp2p v0.7.4/go.mod" - "github.com/libp2p/go-libp2p v0.8.2" - "github.com/libp2p/go-libp2p v0.8.2/go.mod" + "github.com/libp2p/go-libp2p v0.8.1/go.mod" "github.com/libp2p/go-libp2p v0.8.3" "github.com/libp2p/go-libp2p v0.8.3/go.mod" + "github.com/libp2p/go-libp2p v0.11.0" + "github.com/libp2p/go-libp2p v0.11.0/go.mod" + "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052" + "github.com/libp2p/go-libp2p-asn-util v0.0.0-20200825225859-85005c6cf052/go.mod" "github.com/libp2p/go-libp2p-autonat v0.0.2/go.mod" "github.com/libp2p/go-libp2p-autonat v0.0.6/go.mod" "github.com/libp2p/go-libp2p-autonat v0.1.0" @@ -513,11 +588,16 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-autonat v0.2.1/go.mod" "github.com/libp2p/go-libp2p-autonat v0.2.2" "github.com/libp2p/go-libp2p-autonat v0.2.2/go.mod" + "github.com/libp2p/go-libp2p-autonat v0.3.2" + "github.com/libp2p/go-libp2p-autonat v0.3.2/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.0.1/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.1.1/go.mod" - "github.com/libp2p/go-libp2p-blankhost v0.1.3/go.mod" "github.com/libp2p/go-libp2p-blankhost v0.1.4" "github.com/libp2p/go-libp2p-blankhost v0.1.4/go.mod" + "github.com/libp2p/go-libp2p-blankhost v0.1.6" + "github.com/libp2p/go-libp2p-blankhost v0.1.6/go.mod" + "github.com/libp2p/go-libp2p-blankhost v0.2.0" + "github.com/libp2p/go-libp2p-blankhost v0.2.0/go.mod" "github.com/libp2p/go-libp2p-circuit v0.0.1/go.mod" "github.com/libp2p/go-libp2p-circuit v0.0.9/go.mod" "github.com/libp2p/go-libp2p-circuit v0.1.0/go.mod" @@ -527,14 +607,14 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-circuit v0.2.1/go.mod" "github.com/libp2p/go-libp2p-circuit v0.2.2" "github.com/libp2p/go-libp2p-circuit v0.2.2/go.mod" - "github.com/libp2p/go-libp2p-connmgr v0.2.1" - "github.com/libp2p/go-libp2p-connmgr v0.2.1/go.mod" + "github.com/libp2p/go-libp2p-circuit v0.3.1" + "github.com/libp2p/go-libp2p-circuit v0.3.1/go.mod" + "github.com/libp2p/go-libp2p-connmgr v0.2.4" + "github.com/libp2p/go-libp2p-connmgr v0.2.4/go.mod" "github.com/libp2p/go-libp2p-core v0.0.1/go.mod" "github.com/libp2p/go-libp2p-core v0.0.2/go.mod" "github.com/libp2p/go-libp2p-core v0.0.3/go.mod" "github.com/libp2p/go-libp2p-core v0.0.4/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.6/go.mod" - "github.com/libp2p/go-libp2p-core v0.0.9/go.mod" "github.com/libp2p/go-libp2p-core v0.2.0/go.mod" "github.com/libp2p/go-libp2p-core v0.2.2/go.mod" "github.com/libp2p/go-libp2p-core v0.2.4/go.mod" @@ -554,6 +634,16 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-core v0.5.2/go.mod" "github.com/libp2p/go-libp2p-core v0.5.3" "github.com/libp2p/go-libp2p-core v0.5.3/go.mod" + "github.com/libp2p/go-libp2p-core v0.5.4/go.mod" + "github.com/libp2p/go-libp2p-core v0.5.5/go.mod" + "github.com/libp2p/go-libp2p-core v0.5.6" + "github.com/libp2p/go-libp2p-core v0.5.6/go.mod" + "github.com/libp2p/go-libp2p-core v0.5.7" + "github.com/libp2p/go-libp2p-core v0.5.7/go.mod" + "github.com/libp2p/go-libp2p-core v0.6.0" + "github.com/libp2p/go-libp2p-core v0.6.0/go.mod" + "github.com/libp2p/go-libp2p-core v0.6.1" + "github.com/libp2p/go-libp2p-core v0.6.1/go.mod" "github.com/libp2p/go-libp2p-crypto v0.0.1/go.mod" "github.com/libp2p/go-libp2p-crypto v0.0.2/go.mod" "github.com/libp2p/go-libp2p-crypto v0.1.0" @@ -568,6 +658,8 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-discovery v0.3.0/go.mod" "github.com/libp2p/go-libp2p-discovery v0.4.0" "github.com/libp2p/go-libp2p-discovery v0.4.0/go.mod" + "github.com/libp2p/go-libp2p-discovery v0.5.0" + "github.com/libp2p/go-libp2p-discovery v0.5.0/go.mod" "github.com/libp2p/go-libp2p-gostream v0.2.1" "github.com/libp2p/go-libp2p-gostream v0.2.1/go.mod" "github.com/libp2p/go-libp2p-host v0.0.1/go.mod" @@ -578,10 +670,10 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-interface-connmgr v0.0.4/go.mod" "github.com/libp2p/go-libp2p-interface-connmgr v0.0.5/go.mod" "github.com/libp2p/go-libp2p-interface-pnet v0.0.1/go.mod" - "github.com/libp2p/go-libp2p-kad-dht v0.7.11" - "github.com/libp2p/go-libp2p-kad-dht v0.7.11/go.mod" - "github.com/libp2p/go-libp2p-kbucket v0.4.1" - "github.com/libp2p/go-libp2p-kbucket v0.4.1/go.mod" + "github.com/libp2p/go-libp2p-kad-dht v0.9.0" + "github.com/libp2p/go-libp2p-kad-dht v0.9.0/go.mod" + "github.com/libp2p/go-libp2p-kbucket v0.4.7" + "github.com/libp2p/go-libp2p-kbucket v0.4.7/go.mod" "github.com/libp2p/go-libp2p-loggables v0.0.1/go.mod" "github.com/libp2p/go-libp2p-loggables v0.1.0" "github.com/libp2p/go-libp2p-loggables v0.1.0/go.mod" @@ -594,6 +686,8 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-mplex v0.2.2/go.mod" "github.com/libp2p/go-libp2p-mplex v0.2.3" "github.com/libp2p/go-libp2p-mplex v0.2.3/go.mod" + "github.com/libp2p/go-libp2p-mplex v0.2.4" + "github.com/libp2p/go-libp2p-mplex v0.2.4/go.mod" "github.com/libp2p/go-libp2p-nat v0.0.2/go.mod" "github.com/libp2p/go-libp2p-nat v0.0.4" "github.com/libp2p/go-libp2p-nat v0.0.4/go.mod" @@ -606,6 +700,8 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-netutil v0.0.1/go.mod" "github.com/libp2p/go-libp2p-netutil v0.1.0" "github.com/libp2p/go-libp2p-netutil v0.1.0/go.mod" + "github.com/libp2p/go-libp2p-noise v0.1.1" + "github.com/libp2p/go-libp2p-noise v0.1.1/go.mod" "github.com/libp2p/go-libp2p-peer v0.0.1/go.mod" "github.com/libp2p/go-libp2p-peer v0.1.1/go.mod" "github.com/libp2p/go-libp2p-peer v0.2.0" @@ -613,7 +709,6 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-peerstore v0.0.1/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.0.6/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-peerstore v0.1.2/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.1.3" "github.com/libp2p/go-libp2p-peerstore v0.1.3/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.1.4" @@ -626,29 +721,34 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-peerstore v0.2.2/go.mod" "github.com/libp2p/go-libp2p-peerstore v0.2.3" "github.com/libp2p/go-libp2p-peerstore v0.2.3/go.mod" + "github.com/libp2p/go-libp2p-peerstore v0.2.4" + "github.com/libp2p/go-libp2p-peerstore v0.2.4/go.mod" + "github.com/libp2p/go-libp2p-peerstore v0.2.6" + "github.com/libp2p/go-libp2p-peerstore v0.2.6/go.mod" "github.com/libp2p/go-libp2p-pnet v0.2.0" "github.com/libp2p/go-libp2p-pnet v0.2.0/go.mod" "github.com/libp2p/go-libp2p-protocol v0.0.1/go.mod" "github.com/libp2p/go-libp2p-protocol v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.2.5" - "github.com/libp2p/go-libp2p-pubsub v0.2.5/go.mod" - "github.com/libp2p/go-libp2p-pubsub v0.2.7" - "github.com/libp2p/go-libp2p-pubsub v0.2.7/go.mod" - "github.com/libp2p/go-libp2p-pubsub-router v0.2.1" - "github.com/libp2p/go-libp2p-pubsub-router v0.2.1/go.mod" - "github.com/libp2p/go-libp2p-quic-transport v0.3.7" - "github.com/libp2p/go-libp2p-quic-transport v0.3.7/go.mod" + "github.com/libp2p/go-libp2p-pubsub v0.3.2/go.mod" + "github.com/libp2p/go-libp2p-pubsub v0.3.5" + "github.com/libp2p/go-libp2p-pubsub v0.3.5/go.mod" + "github.com/libp2p/go-libp2p-pubsub-router v0.3.2" + "github.com/libp2p/go-libp2p-pubsub-router v0.3.2/go.mod" + "github.com/libp2p/go-libp2p-quic-transport v0.8.0" + "github.com/libp2p/go-libp2p-quic-transport v0.8.0/go.mod" "github.com/libp2p/go-libp2p-record v0.0.1/go.mod" "github.com/libp2p/go-libp2p-record v0.1.0/go.mod" + "github.com/libp2p/go-libp2p-record v0.1.1/go.mod" "github.com/libp2p/go-libp2p-record v0.1.2" "github.com/libp2p/go-libp2p-record v0.1.2/go.mod" + "github.com/libp2p/go-libp2p-record v0.1.3" + "github.com/libp2p/go-libp2p-record v0.1.3/go.mod" "github.com/libp2p/go-libp2p-routing v0.0.1/go.mod" "github.com/libp2p/go-libp2p-routing-helpers v0.2.3" "github.com/libp2p/go-libp2p-routing-helpers v0.2.3/go.mod" "github.com/libp2p/go-libp2p-secio v0.0.1/go.mod" "github.com/libp2p/go-libp2p-secio v0.0.3/go.mod" "github.com/libp2p/go-libp2p-secio v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-secio v0.1.1/go.mod" "github.com/libp2p/go-libp2p-secio v0.2.0" "github.com/libp2p/go-libp2p-secio v0.2.0/go.mod" "github.com/libp2p/go-libp2p-secio v0.2.1" @@ -658,11 +758,14 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-swarm v0.0.1/go.mod" "github.com/libp2p/go-libp2p-swarm v0.0.6/go.mod" "github.com/libp2p/go-libp2p-swarm v0.1.0/go.mod" - "github.com/libp2p/go-libp2p-swarm v0.1.1/go.mod" "github.com/libp2p/go-libp2p-swarm v0.2.2" "github.com/libp2p/go-libp2p-swarm v0.2.2/go.mod" "github.com/libp2p/go-libp2p-swarm v0.2.3" "github.com/libp2p/go-libp2p-swarm v0.2.3/go.mod" + "github.com/libp2p/go-libp2p-swarm v0.2.4" + "github.com/libp2p/go-libp2p-swarm v0.2.4/go.mod" + "github.com/libp2p/go-libp2p-swarm v0.2.8" + "github.com/libp2p/go-libp2p-swarm v0.2.8/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.1/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.2/go.mod" "github.com/libp2p/go-libp2p-testing v0.0.3/go.mod" @@ -671,6 +774,8 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-testing v0.1.0/go.mod" "github.com/libp2p/go-libp2p-testing v0.1.1" "github.com/libp2p/go-libp2p-testing v0.1.1/go.mod" + "github.com/libp2p/go-libp2p-testing v0.2.0" + "github.com/libp2p/go-libp2p-testing v0.2.0/go.mod" "github.com/libp2p/go-libp2p-tls v0.1.3" "github.com/libp2p/go-libp2p-tls v0.1.3/go.mod" "github.com/libp2p/go-libp2p-transport v0.0.1/go.mod" @@ -682,6 +787,8 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-transport-upgrader v0.1.1/go.mod" "github.com/libp2p/go-libp2p-transport-upgrader v0.2.0" "github.com/libp2p/go-libp2p-transport-upgrader v0.2.0/go.mod" + "github.com/libp2p/go-libp2p-transport-upgrader v0.3.0" + "github.com/libp2p/go-libp2p-transport-upgrader v0.3.0/go.mod" "github.com/libp2p/go-libp2p-yamux v0.1.2/go.mod" "github.com/libp2p/go-libp2p-yamux v0.1.3/go.mod" "github.com/libp2p/go-libp2p-yamux v0.2.0/go.mod" @@ -693,10 +800,13 @@ EGO_SUM=( "github.com/libp2p/go-libp2p-yamux v0.2.5/go.mod" "github.com/libp2p/go-libp2p-yamux v0.2.7" "github.com/libp2p/go-libp2p-yamux v0.2.7/go.mod" + "github.com/libp2p/go-libp2p-yamux v0.2.8" + "github.com/libp2p/go-libp2p-yamux v0.2.8/go.mod" "github.com/libp2p/go-maddr-filter v0.0.1/go.mod" "github.com/libp2p/go-maddr-filter v0.0.4/go.mod" "github.com/libp2p/go-maddr-filter v0.0.5" "github.com/libp2p/go-maddr-filter v0.0.5/go.mod" + "github.com/libp2p/go-maddr-filter v0.1.0/go.mod" "github.com/libp2p/go-mplex v0.0.1/go.mod" "github.com/libp2p/go-mplex v0.0.3/go.mod" "github.com/libp2p/go-mplex v0.0.4/go.mod" @@ -711,6 +821,8 @@ EGO_SUM=( "github.com/libp2p/go-msgio v0.0.3/go.mod" "github.com/libp2p/go-msgio v0.0.4" "github.com/libp2p/go-msgio v0.0.4/go.mod" + "github.com/libp2p/go-msgio v0.0.6" + "github.com/libp2p/go-msgio v0.0.6/go.mod" "github.com/libp2p/go-nat v0.0.3" "github.com/libp2p/go-nat v0.0.3/go.mod" "github.com/libp2p/go-nat v0.0.4" @@ -719,23 +831,31 @@ EGO_SUM=( "github.com/libp2p/go-nat v0.0.5/go.mod" "github.com/libp2p/go-netroute v0.1.2" "github.com/libp2p/go-netroute v0.1.2/go.mod" + "github.com/libp2p/go-netroute v0.1.3" + "github.com/libp2p/go-netroute v0.1.3/go.mod" "github.com/libp2p/go-openssl v0.0.2" "github.com/libp2p/go-openssl v0.0.2/go.mod" "github.com/libp2p/go-openssl v0.0.3" "github.com/libp2p/go-openssl v0.0.3/go.mod" "github.com/libp2p/go-openssl v0.0.4" "github.com/libp2p/go-openssl v0.0.4/go.mod" + "github.com/libp2p/go-openssl v0.0.5" + "github.com/libp2p/go-openssl v0.0.5/go.mod" + "github.com/libp2p/go-openssl v0.0.7" + "github.com/libp2p/go-openssl v0.0.7/go.mod" "github.com/libp2p/go-reuseport v0.0.1" "github.com/libp2p/go-reuseport v0.0.1/go.mod" + "github.com/libp2p/go-reuseport v0.0.2" + "github.com/libp2p/go-reuseport v0.0.2/go.mod" "github.com/libp2p/go-reuseport-transport v0.0.1/go.mod" "github.com/libp2p/go-reuseport-transport v0.0.2" "github.com/libp2p/go-reuseport-transport v0.0.2/go.mod" "github.com/libp2p/go-reuseport-transport v0.0.3" "github.com/libp2p/go-reuseport-transport v0.0.3/go.mod" + "github.com/libp2p/go-reuseport-transport v0.0.4" + "github.com/libp2p/go-reuseport-transport v0.0.4/go.mod" "github.com/libp2p/go-sockaddr v0.0.2" "github.com/libp2p/go-sockaddr v0.0.2/go.mod" - "github.com/libp2p/go-sockaddr v0.1.0" - "github.com/libp2p/go-sockaddr v0.1.0/go.mod" "github.com/libp2p/go-socket-activation v0.0.2" "github.com/libp2p/go-socket-activation v0.0.2/go.mod" "github.com/libp2p/go-stream-muxer v0.0.1/go.mod" @@ -752,6 +872,8 @@ EGO_SUM=( "github.com/libp2p/go-tcp-transport v0.1.1/go.mod" "github.com/libp2p/go-tcp-transport v0.2.0" "github.com/libp2p/go-tcp-transport v0.2.0/go.mod" + "github.com/libp2p/go-tcp-transport v0.2.1" + "github.com/libp2p/go-tcp-transport v0.2.1/go.mod" "github.com/libp2p/go-testutil v0.0.1/go.mod" "github.com/libp2p/go-testutil v0.1.0/go.mod" "github.com/libp2p/go-ws-transport v0.0.1/go.mod" @@ -773,16 +895,20 @@ EGO_SUM=( "github.com/libp2p/go-yamux v1.3.3/go.mod" "github.com/libp2p/go-yamux v1.3.5" "github.com/libp2p/go-yamux v1.3.5/go.mod" - "github.com/lucas-clemente/quic-go v0.15.7" - "github.com/lucas-clemente/quic-go v0.15.7/go.mod" + "github.com/libp2p/go-yamux v1.3.7" + "github.com/libp2p/go-yamux v1.3.7/go.mod" + "github.com/lucas-clemente/quic-go v0.18.0" + "github.com/lucas-clemente/quic-go v0.18.0/go.mod" "github.com/lunixbochs/vtclean v1.0.0/go.mod" "github.com/magiconair/properties v1.8.0/go.mod" "github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329" "github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod" "github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod" - "github.com/marten-seemann/qpack v0.1.0/go.mod" - "github.com/marten-seemann/qtls v0.9.1" - "github.com/marten-seemann/qtls v0.9.1/go.mod" + "github.com/marten-seemann/qpack v0.2.0/go.mod" + "github.com/marten-seemann/qtls v0.10.0" + "github.com/marten-seemann/qtls v0.10.0/go.mod" + "github.com/marten-seemann/qtls-go1-15 v0.1.0" + "github.com/marten-seemann/qtls-go1-15 v0.1.0/go.mod" "github.com/mattn/go-colorable v0.0.9/go.mod" "github.com/mattn/go-colorable v0.1.1/go.mod" "github.com/mattn/go-colorable v0.1.2/go.mod" @@ -794,8 +920,8 @@ EGO_SUM=( "github.com/mattn/go-isatty v0.0.8/go.mod" "github.com/mattn/go-isatty v0.0.11" "github.com/mattn/go-isatty v0.0.11/go.mod" - "github.com/mattn/go-runewidth v0.0.8" - "github.com/mattn/go-runewidth v0.0.8/go.mod" + "github.com/mattn/go-runewidth v0.0.9" + "github.com/mattn/go-runewidth v0.0.9/go.mod" "github.com/matttproud/golang_protobuf_extensions v1.0.1" "github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod" "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b" @@ -806,6 +932,8 @@ EGO_SUM=( "github.com/miekg/dns v1.1.12/go.mod" "github.com/miekg/dns v1.1.28" "github.com/miekg/dns v1.1.28/go.mod" + "github.com/miekg/dns v1.1.31" + "github.com/miekg/dns v1.1.31/go.mod" "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1" "github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod" "github.com/minio/sha256-simd v0.0.0-20190131020904-2d45a736cd16/go.mod" @@ -827,8 +955,12 @@ EGO_SUM=( "github.com/mr-tron/base58 v1.1.2/go.mod" "github.com/mr-tron/base58 v1.1.3" "github.com/mr-tron/base58 v1.1.3/go.mod" + "github.com/mr-tron/base58 v1.2.0" + "github.com/mr-tron/base58 v1.2.0/go.mod" "github.com/multiformats/go-base32 v0.0.3" "github.com/multiformats/go-base32 v0.0.3/go.mod" + "github.com/multiformats/go-base36 v0.1.0" + "github.com/multiformats/go-base36 v0.1.0/go.mod" "github.com/multiformats/go-multiaddr v0.0.1/go.mod" "github.com/multiformats/go-multiaddr v0.0.2/go.mod" "github.com/multiformats/go-multiaddr v0.0.4/go.mod" @@ -839,9 +971,14 @@ EGO_SUM=( "github.com/multiformats/go-multiaddr v0.2.0/go.mod" "github.com/multiformats/go-multiaddr v0.2.1" "github.com/multiformats/go-multiaddr v0.2.1/go.mod" + "github.com/multiformats/go-multiaddr v0.2.2" + "github.com/multiformats/go-multiaddr v0.2.2/go.mod" + "github.com/multiformats/go-multiaddr v0.3.0" + "github.com/multiformats/go-multiaddr v0.3.0/go.mod" + "github.com/multiformats/go-multiaddr v0.3.1" + "github.com/multiformats/go-multiaddr v0.3.1/go.mod" "github.com/multiformats/go-multiaddr-dns v0.0.1/go.mod" "github.com/multiformats/go-multiaddr-dns v0.0.2/go.mod" - "github.com/multiformats/go-multiaddr-dns v0.0.3/go.mod" "github.com/multiformats/go-multiaddr-dns v0.2.0" "github.com/multiformats/go-multiaddr-dns v0.2.0/go.mod" "github.com/multiformats/go-multiaddr-fmt v0.0.1/go.mod" @@ -860,13 +997,16 @@ EGO_SUM=( "github.com/multiformats/go-multiaddr-net v0.1.4/go.mod" "github.com/multiformats/go-multiaddr-net v0.1.5" "github.com/multiformats/go-multiaddr-net v0.1.5/go.mod" + "github.com/multiformats/go-multiaddr-net v0.2.0" + "github.com/multiformats/go-multiaddr-net v0.2.0/go.mod" "github.com/multiformats/go-multibase v0.0.1" "github.com/multiformats/go-multibase v0.0.1/go.mod" "github.com/multiformats/go-multibase v0.0.2" "github.com/multiformats/go-multibase v0.0.2/go.mod" + "github.com/multiformats/go-multibase v0.0.3" + "github.com/multiformats/go-multibase v0.0.3/go.mod" "github.com/multiformats/go-multihash v0.0.1/go.mod" "github.com/multiformats/go-multihash v0.0.5/go.mod" - "github.com/multiformats/go-multihash v0.0.6/go.mod" "github.com/multiformats/go-multihash v0.0.7/go.mod" "github.com/multiformats/go-multihash v0.0.8" "github.com/multiformats/go-multihash v0.0.8/go.mod" @@ -876,37 +1016,51 @@ EGO_SUM=( "github.com/multiformats/go-multihash v0.0.10/go.mod" "github.com/multiformats/go-multihash v0.0.13" "github.com/multiformats/go-multihash v0.0.13/go.mod" + "github.com/multiformats/go-multihash v0.0.14" + "github.com/multiformats/go-multihash v0.0.14/go.mod" "github.com/multiformats/go-multistream v0.0.1/go.mod" "github.com/multiformats/go-multistream v0.0.4/go.mod" "github.com/multiformats/go-multistream v0.1.0" "github.com/multiformats/go-multistream v0.1.0/go.mod" "github.com/multiformats/go-multistream v0.1.1" "github.com/multiformats/go-multistream v0.1.1/go.mod" + "github.com/multiformats/go-multistream v0.1.2" + "github.com/multiformats/go-multistream v0.1.2/go.mod" "github.com/multiformats/go-varint v0.0.1" "github.com/multiformats/go-varint v0.0.1/go.mod" "github.com/multiformats/go-varint v0.0.2/go.mod" "github.com/multiformats/go-varint v0.0.5" "github.com/multiformats/go-varint v0.0.5/go.mod" + "github.com/multiformats/go-varint v0.0.6" + "github.com/multiformats/go-varint v0.0.6/go.mod" "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod" "github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod" "github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod" + "github.com/nxadm/tail v1.4.4" + "github.com/nxadm/tail v1.4.4/go.mod" "github.com/onsi/ginkgo v1.6.0/go.mod" "github.com/onsi/ginkgo v1.7.0/go.mod" "github.com/onsi/ginkgo v1.8.0" "github.com/onsi/ginkgo v1.8.0/go.mod" - "github.com/onsi/ginkgo v1.11.0/go.mod" "github.com/onsi/ginkgo v1.12.0" "github.com/onsi/ginkgo v1.12.0/go.mod" + "github.com/onsi/ginkgo v1.12.1" + "github.com/onsi/ginkgo v1.12.1/go.mod" + "github.com/onsi/ginkgo v1.14.0" + "github.com/onsi/ginkgo v1.14.0/go.mod" "github.com/onsi/gomega v1.4.3/go.mod" "github.com/onsi/gomega v1.5.0" "github.com/onsi/gomega v1.5.0/go.mod" "github.com/onsi/gomega v1.7.1/go.mod" - "github.com/onsi/gomega v1.8.1/go.mod" "github.com/onsi/gomega v1.9.0" "github.com/onsi/gomega v1.9.0/go.mod" + "github.com/onsi/gomega v1.10.1" + "github.com/onsi/gomega v1.10.1/go.mod" "github.com/opentracing/opentracing-go v1.0.2/go.mod" "github.com/opentracing/opentracing-go v1.1.0" "github.com/opentracing/opentracing-go v1.1.0/go.mod" + "github.com/opentracing/opentracing-go v1.2.0" + "github.com/opentracing/opentracing-go v1.2.0/go.mod" "github.com/openzipkin/zipkin-go v0.1.1/go.mod" "github.com/pelletier/go-toml v1.2.0/go.mod" "github.com/pkg/errors v0.8.0/go.mod" @@ -919,32 +1073,37 @@ EGO_SUM=( "github.com/polydawn/refmt v0.0.0-20190221155625-df39d6c2d992/go.mod" "github.com/polydawn/refmt v0.0.0-20190408063855-01bf1e26dd14" "github.com/polydawn/refmt v0.0.0-20190408063855-01bf1e26dd14/go.mod" + "github.com/polydawn/refmt v0.0.0-20190807091052-3d65705ee9f1/go.mod" + "github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a" + "github.com/polydawn/refmt v0.0.0-20190809202753-05966cbd336a/go.mod" "github.com/prometheus/client_golang v0.8.0/go.mod" "github.com/prometheus/client_golang v0.9.1/go.mod" "github.com/prometheus/client_golang v0.9.2/go.mod" "github.com/prometheus/client_golang v1.0.0/go.mod" - "github.com/prometheus/client_golang v1.5.1" - "github.com/prometheus/client_golang v1.5.1/go.mod" + "github.com/prometheus/client_golang v1.7.1" + "github.com/prometheus/client_golang v1.7.1/go.mod" "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod" "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90" "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod" + "github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod" "github.com/prometheus/client_model v0.2.0" "github.com/prometheus/client_model v0.2.0/go.mod" "github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod" "github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod" "github.com/prometheus/common v0.4.1/go.mod" - "github.com/prometheus/common v0.9.1" - "github.com/prometheus/common v0.9.1/go.mod" + "github.com/prometheus/common v0.10.0" + "github.com/prometheus/common v0.10.0/go.mod" "github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod" "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod" "github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod" "github.com/prometheus/procfs v0.0.2/go.mod" - "github.com/prometheus/procfs v0.0.8" - "github.com/prometheus/procfs v0.0.8/go.mod" + "github.com/prometheus/procfs v0.1.3" + "github.com/prometheus/procfs v0.1.3/go.mod" "github.com/rogpeppe/go-internal v1.3.0/go.mod" "github.com/rs/cors v1.7.0" "github.com/rs/cors v1.7.0/go.mod" "github.com/russross/blackfriday v1.5.2/go.mod" + "github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd/go.mod" "github.com/sergi/go-diff v1.0.0/go.mod" "github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod" "github.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod" @@ -973,11 +1132,13 @@ EGO_SUM=( "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" "github.com/smartystreets/assertions v1.0.0" "github.com/smartystreets/assertions v1.0.0/go.mod" + "github.com/smartystreets/assertions v1.0.1" + "github.com/smartystreets/assertions v1.0.1/go.mod" "github.com/smartystreets/goconvey v0.0.0-20190222223459-a17d461953aa/go.mod" "github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a" "github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod" - "github.com/smartystreets/goconvey v0.0.0-20190710185942-9d28bd7c0945" - "github.com/smartystreets/goconvey v0.0.0-20190710185942-9d28bd7c0945/go.mod" + "github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337" + "github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod" "github.com/smola/gocompat v0.2.0" "github.com/smola/gocompat v0.2.0/go.mod" "github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod" @@ -1004,6 +1165,8 @@ EGO_SUM=( "github.com/stretchr/testify v1.4.0/go.mod" "github.com/stretchr/testify v1.5.1" "github.com/stretchr/testify v1.5.1/go.mod" + "github.com/stretchr/testify v1.6.1" + "github.com/stretchr/testify v1.6.1/go.mod" "github.com/syndtr/goleveldb v1.0.0" "github.com/syndtr/goleveldb v1.0.0/go.mod" "github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod" @@ -1014,14 +1177,17 @@ EGO_SUM=( "github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod" "github.com/viant/assertly v0.4.8/go.mod" "github.com/viant/toolbox v0.24.0/go.mod" - "github.com/wangjia184/sortedset v0.0.0-20160527075905-f5d03557ba30/go.mod" "github.com/warpfork/go-wish v0.0.0-20180510122957-5ad1f5abf436/go.mod" "github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830" "github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830/go.mod" + "github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a" + "github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a/go.mod" "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc" "github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc/go.mod" "github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158" "github.com/whyrusleeping/cbor-gen v0.0.0-20200123233031-1cdf64d27158/go.mod" + "github.com/whyrusleeping/cbor-gen v0.0.0-20200402171437-3d27c146c105" + "github.com/whyrusleeping/cbor-gen v0.0.0-20200402171437-3d27c146c105/go.mod" "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f" "github.com/whyrusleeping/chunker v0.0.0-20181014151217-fe64bd25879f/go.mod" "github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1" @@ -1052,6 +1218,7 @@ EGO_SUM=( "github.com/whyrusleeping/yamux v1.1.5/go.mod" "github.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod" "github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod" + "github.com/yuin/goldmark v1.1.27/go.mod" "go.opencensus.io v0.18.0/go.mod" "go.opencensus.io v0.21.0/go.mod" "go.opencensus.io v0.22.0/go.mod" @@ -1061,16 +1228,18 @@ EGO_SUM=( "go.opencensus.io v0.22.2/go.mod" "go.opencensus.io v0.22.3" "go.opencensus.io v0.22.3/go.mod" + "go.opencensus.io v0.22.4" + "go.opencensus.io v0.22.4/go.mod" "go.uber.org/atomic v1.4.0" "go.uber.org/atomic v1.4.0/go.mod" "go.uber.org/atomic v1.5.0" "go.uber.org/atomic v1.5.0/go.mod" "go.uber.org/atomic v1.6.0" "go.uber.org/atomic v1.6.0/go.mod" - "go.uber.org/dig v1.9.0" - "go.uber.org/dig v1.9.0/go.mod" - "go.uber.org/fx v1.12.0" - "go.uber.org/fx v1.12.0/go.mod" + "go.uber.org/dig v1.10.0" + "go.uber.org/dig v1.10.0/go.mod" + "go.uber.org/fx v1.13.1" + "go.uber.org/fx v1.13.1/go.mod" "go.uber.org/goleak v0.10.0" "go.uber.org/goleak v0.10.0/go.mod" "go.uber.org/goleak v1.0.0" @@ -1087,9 +1256,11 @@ EGO_SUM=( "go.uber.org/zap v1.10.0/go.mod" "go.uber.org/zap v1.14.1" "go.uber.org/zap v1.14.1/go.mod" + "go.uber.org/zap v1.15.0" + "go.uber.org/zap v1.15.0/go.mod" "go4.org v0.0.0-20180809161055-417644f6feb5/go.mod" - "go4.org v0.0.0-20200104003542-c7e774b10ea0" - "go4.org v0.0.0-20200104003542-c7e774b10ea0/go.mod" + "go4.org v0.0.0-20200411211856-f5505b9728dd" + "go4.org v0.0.0-20200411211856-f5505b9728dd/go.mod" "golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod" "golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod" "golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod" @@ -1104,27 +1275,52 @@ EGO_SUM=( "golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod" "golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod" "golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod" + "golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod" "golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod" "golang.org/x/crypto v0.0.0-20190618222545-ea8f1a30c443/go.mod" - "golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod" "golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550" "golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod" "golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod" + "golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod" "golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d" "golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod" "golang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5" "golang.org/x/crypto v0.0.0-20200423211502-4bdfaf469ed5/go.mod" + "golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37" + "golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod" + "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9" + "golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod" "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod" + "golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod" + "golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod" + "golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod" + "golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod" + "golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod" + "golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod" + "golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod" + "golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod" + "golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod" "golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod" "golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod" "golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod" + "golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod" "golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod" + "golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod" + "golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod" "golang.org/x/lint v0.0.0-20190930215403-16217165b5de" "golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod" "golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f" "golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod" + "golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod" + "golang.org/x/lint v0.0.0-20200302205851-738671d3881b" + "golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod" + "golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod" + "golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod" "golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod" + "golang.org/x/mod v0.1.0/go.mod" "golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod" + "golang.org/x/mod v0.2.0" + "golang.org/x/mod v0.2.0/go.mod" "golang.org/x/net v0.0.0-20180524181706-dfa909b99c79/go.mod" "golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod" "golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod" @@ -1137,12 +1333,13 @@ EGO_SUM=( "golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod" "golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod" "golang.org/x/net v0.0.0-20190227160552-c95aed5357e7/go.mod" - "golang.org/x/net v0.0.0-20190228165749-92fc7df08ae7/go.mod" "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod" "golang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod" "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod" "golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod" + "golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod" "golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod" + "golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod" "golang.org/x/net v0.0.0-20190611141213-3f473d35a33a/go.mod" "golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod" "golang.org/x/net v0.0.0-20190620200207-3b0461eec859" @@ -1151,12 +1348,20 @@ EGO_SUM=( "golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod" "golang.org/x/net v0.0.0-20190923162816-aa69164e4478" "golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod" - "golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e" - "golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod" + "golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod" + "golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod" + "golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod" + "golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod" + "golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod" + "golang.org/x/net v0.0.0-20200707034311-ab3426394381" + "golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod" "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod" "golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod" "golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod" "golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod" + "golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod" + "golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod" + "golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod" "golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod" "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod" "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod" @@ -1166,6 +1371,8 @@ EGO_SUM=( "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod" "golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e" "golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod" + "golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a" + "golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod" "golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod" "golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod" "golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod" @@ -1177,29 +1384,40 @@ EGO_SUM=( "golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod" "golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod" "golang.org/x/sys v0.0.0-20190302025703-b6889370fb10/go.mod" + "golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod" "golang.org/x/sys v0.0.0-20190316082340-a2f829d7f35f/go.mod" "golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67/go.mod" "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod" "golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod" "golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod" + "golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod" "golang.org/x/sys v0.0.0-20190524122548-abf6ff778158/go.mod" "golang.org/x/sys v0.0.0-20190524152521-dbbf3f1254d4/go.mod" "golang.org/x/sys v0.0.0-20190526052359-791d8a0f4d09/go.mod" + "golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod" "golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae/go.mod" + "golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod" "golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod" "golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod" + "golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod" "golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod" "golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod" "golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod" "golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod" + "golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod" "golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod" + "golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod" + "golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod" "golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod" "golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod" + "golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod" "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae" "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod" "golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod" - "golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f" - "golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod" + "golang.org/x/sys v0.0.0-20200509044756-6aff5f38e54f/go.mod" + "golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod" + "golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1" + "golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod" "golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod" "golang.org/x/text v0.3.0/go.mod" "golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod" @@ -1207,6 +1425,7 @@ EGO_SUM=( "golang.org/x/text v0.3.2/go.mod" "golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod" "golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod" + "golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod" "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod" "golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod" "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" @@ -1216,20 +1435,39 @@ EGO_SUM=( "golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod" "golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod" "golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod" + "golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod" + "golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod" "golang.org/x/tools v0.0.0-20190328211700-ab21143f2384" "golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod" "golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod" + "golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod" + "golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod" + "golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod" "golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod" + "golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod" + "golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod" + "golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod" + "golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod" "golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod" "golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod" "golang.org/x/tools v0.0.0-20191030062658-86caa796c7ab/go.mod" "golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod" + "golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod" "golang.org/x/tools v0.0.0-20191114200427-caa0b0f7d508" "golang.org/x/tools v0.0.0-20191114200427-caa0b0f7d508/go.mod" + "golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod" + "golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod" "golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f" "golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod" "golang.org/x/tools v0.0.0-20191216052735-49a3e744a425" "golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod" + "golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod" + "golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod" + "golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod" + "golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod" + "golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod" + "golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375" + "golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod" "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7" "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod" "golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898" @@ -1239,22 +1477,57 @@ EGO_SUM=( "google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod" "google.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod" "google.golang.org/api v0.1.0/go.mod" + "google.golang.org/api v0.4.0/go.mod" + "google.golang.org/api v0.7.0/go.mod" + "google.golang.org/api v0.8.0/go.mod" + "google.golang.org/api v0.9.0/go.mod" + "google.golang.org/api v0.13.0/go.mod" + "google.golang.org/api v0.14.0/go.mod" + "google.golang.org/api v0.15.0/go.mod" + "google.golang.org/api v0.17.0/go.mod" "google.golang.org/appengine v1.1.0/go.mod" "google.golang.org/appengine v1.2.0/go.mod" "google.golang.org/appengine v1.3.0/go.mod" "google.golang.org/appengine v1.4.0/go.mod" + "google.golang.org/appengine v1.5.0/go.mod" + "google.golang.org/appengine v1.6.1/go.mod" + "google.golang.org/appengine v1.6.5/go.mod" "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod" "google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod" "google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod" "google.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898/go.mod" "google.golang.org/genproto v0.0.0-20190306203927-b5d61aea6440/go.mod" "google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod" + "google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod" "google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod" + "google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod" + "google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod" + "google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod" + "google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod" + "google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod" + "google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod" + "google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod" + "google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod" + "google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod" "google.golang.org/grpc v1.14.0/go.mod" "google.golang.org/grpc v1.16.0/go.mod" "google.golang.org/grpc v1.17.0/go.mod" "google.golang.org/grpc v1.19.0/go.mod" "google.golang.org/grpc v1.20.1/go.mod" + "google.golang.org/grpc v1.21.1/go.mod" + "google.golang.org/grpc v1.23.0/go.mod" + "google.golang.org/grpc v1.26.0/go.mod" + "google.golang.org/grpc v1.27.0/go.mod" + "google.golang.org/grpc v1.27.1" + "google.golang.org/grpc v1.27.1/go.mod" + "google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod" + "google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod" + "google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod" + "google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod" + "google.golang.org/protobuf v1.21.0" + "google.golang.org/protobuf v1.21.0/go.mod" + "google.golang.org/protobuf v1.23.0" + "google.golang.org/protobuf v1.23.0/go.mod" "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127" @@ -1277,17 +1550,25 @@ EGO_SUM=( "gopkg.in/yaml.v2 v2.2.4/go.mod" "gopkg.in/yaml.v2 v2.2.5" "gopkg.in/yaml.v2 v2.2.5/go.mod" + "gopkg.in/yaml.v2 v2.3.0" + "gopkg.in/yaml.v2 v2.3.0/go.mod" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" "grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod" "honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod" "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod" "honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod" + "honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod" + "honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod" "honnef.co/go/tools v0.0.1-2019.2.3" "honnef.co/go/tools v0.0.1-2019.2.3/go.mod" + "rsc.io/binaryregexp v0.2.0/go.mod" "rsc.io/quote/v3 v3.1.0/go.mod" "rsc.io/sampler v1.3.0/go.mod" "sourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod" "sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod" - ) +) + go-module_set_globals SRC_URI="https://github.com/ipfs/go-ipfs/archive/v${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI}" diff --git a/net-p2p/mldonkey/files/ocaml-4.03.patch b/net-p2p/mldonkey/files/ocaml-4.03.patch deleted file mode 100644 index fce94c851e2d..000000000000 --- a/net-p2p/mldonkey/files/ocaml-4.03.patch +++ /dev/null @@ -1,145 +0,0 @@ -Index: mldonkey-3.1.5/src/config/unix/os_stubs_c.c -=================================================================== ---- mldonkey-3.1.5.orig/src/config/unix/os_stubs_c.c -+++ mldonkey-3.1.5/src/config/unix/os_stubs_c.c -@@ -66,7 +66,7 @@ ssize_t os_read(OS_FD fd, char *buf, siz - - void os_ftruncate(OS_FD fd, OFF_T len, /* bool */ int sparse) - { -- int64 cursize; -+ int64_t cursize; - if(!fd) failwith("ftruncate32: file is closed"); - - cursize = os_getfdsize(fd); -@@ -109,7 +109,7 @@ int os_getdtablesize() - - *******************************************************************/ - --int64 os_getfdsize(OS_FD fd) -+int64_t os_getfdsize(OS_FD fd) - { - struct stat buf; - -@@ -127,7 +127,7 @@ int64 os_getfdsize(OS_FD fd) - - *******************************************************************/ - --int64 os_getfilesize(char *path) -+int64_t os_getfilesize(char *path) - { - struct stat buf; - -Index: mldonkey-3.1.5/src/networks/donkey/donkeyGlobals.ml -=================================================================== ---- mldonkey-3.1.5.orig/src/networks/donkey/donkeyGlobals.ml -+++ mldonkey-3.1.5/src/networks/donkey/donkeyGlobals.ml -@@ -781,7 +781,6 @@ let set_client_name c name md4 = - c.client_md4 <- md4; - end - --exception ClientFound of client - let find_client_by_name name = - try - H.iter (fun c -> -Index: mldonkey-3.1.5/src/utils/cdk/zip.ml -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/cdk/zip.ml -+++ mldonkey-3.1.5/src/utils/cdk/zip.ml -@@ -72,8 +72,6 @@ type out_file = - mutable of_entries: entry list; - of_comment: string } - --exception Error of string * string * string -- - (* Return the position of the last occurrence of s1 in s2, or -1 if not - found. *) - -Index: mldonkey-3.1.5/src/utils/cdk/zlibstubs.c -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/cdk/zlibstubs.c -+++ mldonkey-3.1.5/src/utils/cdk/zlibstubs.c -@@ -191,7 +191,7 @@ value camlzip_inflateEnd(value vzs) - - value camlzip_update_crc32(value crc, value buf, value pos, value len) - { -- return copy_int32(crc32((uint32) Int32_val(crc), -+ return copy_int32(crc32((uint32_t) Int32_val(crc), - &Byte_u(buf, Long_val(pos)), - Long_val(len))); - } -Index: mldonkey-3.1.5/src/utils/lib/fst_hash.c -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/lib/fst_hash.c -+++ mldonkey-3.1.5/src/utils/lib/fst_hash.c -@@ -197,7 +197,7 @@ unsigned short fst_hash_checksum (unsign - /*****************************************************************************/ - - // hash file --int fst_hash_file (unsigned char *fth, char *file, int64 filesize) -+int fst_hash_file (unsigned char *fth, char *file, int64_t filesize) - { - FILE *fp; - unsigned char *buf; -@@ -271,7 +271,7 @@ int fst_hash_file (unsigned char *fth, c - } - - --void fst_hash_string (unsigned char *fth, unsigned char *file, int64 filesize) -+void fst_hash_string (unsigned char *fth, unsigned char *file, int64_t filesize) - { - unsigned char * buf = file; - size_t len = filesize; -Index: mldonkey-3.1.5/src/utils/lib/options.ml4 -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/lib/options.ml4 -+++ mldonkey-3.1.5/src/utils/lib/options.ml4 -@@ -332,7 +332,6 @@ let exit_exn = Exit - - - let unsafe_get = String.unsafe_get --external is_printable : char -> bool = "caml_is_printable" - let unsafe_set = String.unsafe_set - - let escaped s = -@@ -343,7 +342,7 @@ let escaped s = - (match unsafe_get s i with - '"' | '\\' -> 2 - | '\n' | '\t' -> 1 -- | c -> if is_printable c then 1 else 4) -+ | c -> 1) - done; - if !n = String.length s then s - else -@@ -354,16 +353,7 @@ let escaped s = - '"' | '\\' as c -> unsafe_set s' !n '\\'; incr n; unsafe_set s' !n c - | '\n' | '\t' as c -> unsafe_set s' !n c - | c -> -- if is_printable c then unsafe_set s' !n c -- else -- let a = int_of_char c in -- unsafe_set s' !n '\\'; -- incr n; -- unsafe_set s' !n (char_of_int (48 + a / 100)); -- incr n; -- unsafe_set s' !n (char_of_int (48 + a / 10 mod 10)); -- incr n; -- unsafe_set s' !n (char_of_int (48 + a mod 10)) -+ unsafe_set s' !n c - end; - incr n - done; -Index: mldonkey-3.1.5/src/utils/lib/os_stubs.h -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/lib/os_stubs.h -+++ mldonkey-3.1.5/src/utils/lib/os_stubs.h -@@ -155,8 +155,8 @@ extern OFF_T os_lseek(OS_FD fd, OFF_T po - extern void os_ftruncate(OS_FD fd, OFF_T len, int sparse); - extern ssize_t os_read(OS_FD fd, char *buf, size_t len); - extern int os_getdtablesize(); --extern int64 os_getfdsize(OS_FD fd); --extern int64 os_getfilesize(char *path); -+extern int64_t os_getfdsize(OS_FD fd); -+extern int64_t os_getfilesize(char *path); - extern void os_set_nonblock(OS_SOCKET fd); - extern void os_uname(char buf[]); - extern int os_os_supported(); diff --git a/net-p2p/mldonkey/files/ocaml4.patch b/net-p2p/mldonkey/files/ocaml4.patch deleted file mode 100644 index 32882417b62c..000000000000 --- a/net-p2p/mldonkey/files/ocaml4.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: mldonkey-3.1.5/src/utils/net/terminal.ml -=================================================================== ---- mldonkey-3.1.5.orig/src/utils/net/terminal.ml -+++ mldonkey-3.1.5/src/utils/net/terminal.ml -@@ -185,7 +185,6 @@ module Output = struct - let canal = List.assoc chan !chanmap in - etat.chan <- Some (chan, canal); - info (sprintf "connecte au canal '%s'" chan); -- (* {| canal ALL } *) - with Not_found -> (* pas encore de recepteur pour ce canal *) - try (* on en cree un *) - let serveur = nsrecord.get_loc chan in diff --git a/net-print/Manifest.gz b/net-print/Manifest.gz index 62b699de2bd4..8270bdfae30b 100644 Binary files a/net-print/Manifest.gz and b/net-print/Manifest.gz differ diff --git a/net-print/hplip/hplip-3.20.9-r3.ebuild b/net-print/hplip/hplip-3.20.9-r3.ebuild index 3bf5c6106ddd..f7cb7ad36dcb 100644 --- a/net-print/hplip/hplip-3.20.9-r3.ebuild +++ b/net-print/hplip/hplip-3.20.9-r3.ebuild @@ -38,7 +38,7 @@ COMMON_DEPEND=" !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) net-analyzer/net-snmp:= - $(python_gen_cond_dep 'net-dns/avahi[${PYTHON_MULTI_USEDEP}]') + $(python_gen_cond_dep 'net-dns/avahi[dbus,${PYTHON_MULTI_USEDEP}]') ) ) " diff --git a/net-print/hplip/hplip-3.20.9-r4.ebuild b/net-print/hplip/hplip-3.20.9-r4.ebuild new file mode 100644 index 000000000000..f55a41761741 --- /dev/null +++ b/net-print/hplip/hplip-3.20.9-r4.ebuild @@ -0,0 +1,286 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE="threads(+),xml" + +# 14 and 15 spit out a lot of warnings about subdirs +WANT_AUTOMAKE="1.13" + +inherit autotools linux-info python-single-r1 readme.gentoo-r1 udev + +DESCRIPTION="HP Linux Imaging and Printing - Print, scan, fax drivers and service tools" +HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing" +SRC_URI="mirror://sourceforge/hplip/${P}.tar.gz + https://dev.gentoo.org/~billie/distfiles/${PN}-3.20.9-patches-2.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +IUSE="doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport policykit qt5 scanner +snmp static-ppds X" + +COMMON_DEPEND=" + net-print/cups + sys-apps/dbus + virtual/jpeg:0 + hpijs? ( net-print/cups-filters[foomatic] ) + !libusb0? ( virtual/libusb:1 ) + libusb0? ( virtual/libusb:0 ) + ${PYTHON_DEPS} + !minimal? ( + scanner? ( + media-gfx/sane-backends + ) + snmp? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:= ) + net-analyzer/net-snmp:= + $(python_gen_cond_dep 'net-dns/avahi[dbus,${PYTHON_MULTI_USEDEP}]') + ) + ) +" +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" + ${COMMON_DEPEND} +" +RDEPEND=" + ${COMMON_DEPEND} + app-text/ghostscript-gpl + !minimal? ( + $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]' 'python3*') + kernel_linux? ( virtual/udev ) + $(python_gen_cond_dep ' + >=dev-python/dbus-python-1.2.0-r1[${PYTHON_MULTI_USEDEP}] + dev-python/distro[${PYTHON_MULTI_USEDEP}] + fax? ( dev-python/reportlab[${PYTHON_MULTI_USEDEP}] ) + qt5? ( + >=dev-python/PyQt5-5.5.1[dbus,gui,widgets,${PYTHON_MULTI_USEDEP}] + libnotify? ( dev-python/notify2[${PYTHON_MULTI_USEDEP}] ) + ) + scanner? ( + >=dev-python/reportlab-3.2[${PYTHON_MULTI_USEDEP}] + >=dev-python/pillow-3.1.1[${PYTHON_MULTI_USEDEP}] + X? ( + || ( + kde? ( kde-misc/skanlite ) + media-gfx/xsane + media-gfx/sane-frontends + ) + ) + ) + ') + ) + policykit? ( sys-auth/polkit ) +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +PATCHES=( + "${WORKDIR}/patches" +) + +CONFIG_CHECK="~PARPORT ~PPDEV" +ERROR_PARPORT="Please make sure kernel parallel port support is enabled (PARPORT and PPDEV)." + +#DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS=" +For more information on setting up your printer please take +a look at the hplip section of the gentoo printing guide: +https://wiki.gentoo.org/wiki/Printing +" + +pkg_setup() { + python-single-r1_pkg_setup + + use scanner && ! use X && ewarn "You need USE=X for the scanner GUI." + + use parport && linux-info_pkg_setup + + if use minimal ; then + ewarn "Installing driver portions only, make sure you know what you are doing." + ewarn "Depending on the USE flags set for hpcups or hpijs the appropiate driver" + ewarn "is installed. If both USE flags are set hpijs overrides hpcups." + ewarn "This also disables fax, network, scanner and gui support!" + fi + + if ! use hpcups && ! use hpijs ; then + ewarn "Installing neither hpcups (USE=-hpcups) nor hpijs (USE=-hpijs) driver," + ewarn "which is probably not what you want." + ewarn "You will almost certainly not be able to print." + fi +} + +src_prepare() { + default + + python_fix_shebang . + + # Make desktop files follow the specification + # Gentoo bug: https://bugs.gentoo.org/show_bug.cgi?id=443680 + # Upstream bug: https://bugs.launchpad.net/hplip/+bug/1080324 + sed -i -e '/^Categories=/s/Application;//' \ + -e '/^Encoding=.*/d' hplip.desktop.in || die + sed -i -e '/^Categories=/s/Application;//' \ + -e '/^Version=.*/d' \ + -e '/^Comment=.*/d' hplip-systray.desktop.in || die + + # Fix for Gentoo bug https://bugs.gentoo.org/show_bug.cgi?id=345725 + # Upstream bug: https://bugs.launchpad.net/hplip/+bug/880847, + # https://bugs.launchpad.net/hplip/+bug/500086 + local udevdir=$(get_udevdir) + sed -i -e "s|/etc/udev|${udevdir}|g" \ + $(find . -type f -exec grep -l /etc/udev {} +) || die + + # Force recognition of Gentoo distro by hp-check + sed -i \ + -e "s:file('/etc/issue', 'r').read():'Gentoo':" \ + installer/core_install.py || die + + eautoreconf +} + +src_configure() { + local drv_build minimal_build + + if use hpcups ; then + drv_build="$(use_enable hpcups hpcups-install)" + if use static-ppds ; then + drv_build="${drv_build} --enable-cups-ppd-install" + drv_build="${drv_build} --disable-cups-drv-install" + else + drv_build="${drv_build} --enable-cups-drv-install" + drv_build="${drv_build} --disable-cups-ppd-install" + fi + else + drv_build="--disable-hpcups-install" + drv_build="${drv_build} --disable-cups-drv-install" + drv_build="${drv_build} --disable-cups-ppd-install" + fi + + if use hpijs ; then + drv_build="${drv_build} $(use_enable hpijs hpijs-install)" + if use static-ppds ; then + drv_build="${drv_build} --enable-foomatic-ppd-install" + drv_build="${drv_build} --disable-foomatic-drv-install" + else + drv_build="${drv_build} --enable-foomatic-drv-install" + drv_build="${drv_build} --disable-foomatic-ppd-install" + fi + else + drv_build="${drv_build} --disable-hpijs-install" + drv_build="${drv_build} --disable-foomatic-drv-install" + drv_build="${drv_build} --disable-foomatic-ppd-install" + fi + + if use minimal ; then + if use hpijs ; then + minimal_build="--enable-hpijs-only-build" + else + minimal_build="--disable-hpijs-only-build" + fi + if use hpcups ; then + minimal_build="${minimal_build} --enable-hpcups-only-build" + else + minimal_build="${minimal_build} --disable-hpcups-only-build" + fi + minimal_build="${minimal_build} --disable-fax-build" + minimal_build="${minimal_build} --disable-network-build" + minimal_build="${minimal_build} --disable-scan-build" + minimal_build="${minimal_build} --disable-gui-build" + else + if use fax ; then + minimal_build="${minimal_build} --enable-fax-build" + else + minimal_build="${minimal_build} --disable-fax-build" + fi + if use snmp ; then + minimal_build="${minimal_build} --enable-network-build" + else + minimal_build="${minimal_build} --disable-network-build" + fi + if use scanner ; then + minimal_build="${minimal_build} --enable-scan-build" + else + minimal_build="${minimal_build} --disable-scan-build" + fi + if use qt5 ; then + minimal_build="${minimal_build} --enable-gui-build" + else + minimal_build="${minimal_build} --disable-gui-build" + fi + fi + + # disable class driver for now + econf \ + --disable-class-driver \ + --disable-foomatic-rip-hplip-install \ + --disable-cups11-build \ + --disable-lite-build \ + --disable-shadow-build \ + --disable-qt3 \ + --disable-qt4 \ + --disable-udev_sysfs_rules \ + --with-cupsbackenddir=$(cups-config --serverbin)/backend \ + --with-cupsfilterdir=$(cups-config --serverbin)/filter \ + --with-docdir=/usr/share/doc/${PF} \ + --with-htmldir=/usr/share/doc/${PF}/html \ + --enable-hpps-install \ + --enable-dbus-build \ + ${drv_build} \ + ${minimal_build} \ + $(use_enable doc doc-build) \ + $(use_enable libusb0 libusb01_build) \ + $(use_enable parport pp-build) \ + $(use_enable policykit) + + # hpijs ppds are created at configure time but are not installed (3.17.11) + + # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip + # The hpcups driver does not use foomatic-rip + #local i + #for i in ppd/hpijs/*.ppd.gz ; do + # rm -f ${i}.temp || die + # gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \ + # gzip > ${i}.temp || die + # mv ${i}.temp ${i} || die + #done +} + +src_install() { + # Disable parallel install + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=578018 + emake -j1 DESTDIR="${D}" install + einstalldocs + # default + + # Installed by sane-backends + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=201023 + rm -f "${ED}"/etc/sane.d/dll.conf || die + + # Remove desktop and autostart files + # Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=638770 + use qt5 || { + rm -Rf "${ED}"/usr/share/applications "${ED}"/etc/xdg + } + + rm -f "${ED}"/usr/share/doc/${PF}/{copyright,README_LIBJPG,COPYING} || die + rmdir --ignore-fail-on-non-empty "${ED}"/usr/share/doc/${PF}/ || die + + # Remove hal fdi files + rm -rf "${ED}"/usr/share/hal || die + + find "${D}" -name '*.la' -delete || die + + python_optimize "${ED}"/usr/share/hplip + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index 16e55f76bc5b..033f83439008 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/wireguard-modules/Manifest b/net-vpn/wireguard-modules/Manifest index 8b1c9a0c59c5..e908603ee4b0 100644 --- a/net-vpn/wireguard-modules/Manifest +++ b/net-vpn/wireguard-modules/Manifest @@ -1,2 +1 @@ -DIST wireguard-linux-compat-1.0.20200908.tar.xz 262708 BLAKE2B e1621237c6a76a6b8111eb26d2547c7335d87f8e11110db29fd6d7b8c56993d0998383a2beab682c75caa0de183f17e345b0f96794a7c9e5b2cd04281d558ce0 SHA512 e13f243a7a72a4d4bd326af40439b7760b6ea8b452e67ddff1c844dc62bc53e2dc2c1738f98c7a45b6b24566d0ed9dc0dc3e9006fcb668f0314aac2ab9eaeb87 DIST wireguard-linux-compat-1.0.20201112.tar.xz 262220 BLAKE2B 2bbcce294c7d0578e820b285074bdbff2c96908ccc10294e05aa846a6f0b614930ca71536cb954233480c9e294692df1f4954b8f11db86deecdc93373b6e1d4f SHA512 c3ad6611d1d8abf163e6626ceeb1329b8b4a745159021473fee134858e22f6a5d3418b39f165f2f2f0bde1891d560f773cdb4d1f4fb60d61b35aff01d59aee54 diff --git a/net-vpn/wireguard-modules/wireguard-modules-1.0.20200908.ebuild b/net-vpn/wireguard-modules/wireguard-modules-1.0.20200908.ebuild deleted file mode 100644 index a3aea3fe6a50..000000000000 --- a/net-vpn/wireguard-modules/wireguard-modules-1.0.20200908.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MODULES_OPTIONAL_USE="module" -inherit linux-mod bash-completion-r1 - -DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art cryptography." -HOMEPAGE="https://www.wireguard.com/" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.zx2c4.com/wireguard-linux-compat" -else - SRC_URI="https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${PV}.tar.xz" - S="${WORKDIR}/wireguard-linux-compat-${PV}" - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="debug +module module-src" - -DEPEND="" -RDEPEND="${DEPEND}" - -MODULE_NAMES="wireguard(kernel/drivers/net:src)" -BUILD_TARGETS="module" -CONFIG_CHECK="NET INET NET_UDP_TUNNEL CRYPTO_ALGAPI" - -pkg_setup() { - if use module; then - linux-mod_pkg_setup - if [[ -f $KERNEL_DIR/include/uapi/linux/wireguard.h ]]; then - eerror - eerror "WireGuard has been merged upstream into this kernel. Therefore," - eerror "you no longer need this compatibility ebuild. Instead, simply" - eerror "enable CONFIG_WIREGUARD=y in your kernel configuration." - eerror - die "Use CONFIG_WIREGUARD=y for this kernel, and do not use this package." - elif kernel_is -lt 3 10 0 || kernel_is -ge 5 6 0; then - die "This version of ${PN} requires Linux >= 3.10 and < 5.6." - fi - fi -} - -src_compile() { - BUILD_PARAMS="KERNELDIR=${KV_OUT_DIR}" - use debug && BUILD_PARAMS="CONFIG_WIREGUARD_DEBUG=y ${BUILD_PARAMS}" - use module && linux-mod_src_compile -} - -src_install() { - use module && linux-mod_src_install - use module-src && emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" -C src dkms-install -} - -pkg_postinst() { - if use module-src && ! use module; then - einfo - einfo "You have enabled the module-src USE flag without the module USE" - einfo "flag. This means that sources are installed to" - einfo "${ROOT}/usr/src/wireguard instead of having the" - einfo "kernel module compiled. You will need to compile the module" - einfo "yourself. Most likely, you don't want this USE flag, and should" - einfo "rather use USE=module" - einfo - fi - - if use module; then - linux-mod_pkg_postinst - local old new - if [[ $(uname -r) != "${KV_FULL}" ]]; then - ewarn - ewarn "You have just built WireGuard for kernel ${KV_FULL}, yet the currently running" - ewarn "kernel is $(uname -r). If you intend to use this WireGuard module on the currently" - ewarn "running machine, you will first need to reboot it into the kernel ${KV_FULL}, for" - ewarn "which this module was built." - ewarn - elif [[ -f /sys/module/wireguard/version ]] && \ - old="$(< /sys/module/wireguard/version)" && \ - new="$(modinfo -F version "${ROOT}/lib/modules/${KV_FULL}/net/wireguard.ko" 2>/dev/null)" && \ - [[ $old != "$new" ]]; then - ewarn - ewarn "You appear to have just upgraded WireGuard from version v$old to v$new." - ewarn "However, the old version is still running on your system. In order to use the" - ewarn "new version, you will need to remove the old module and load the new one. As" - ewarn "root, you can accomplish this with the following commands:" - ewarn - ewarn " # rmmod wireguard" - ewarn " # modprobe wireguard" - ewarn - ewarn "Do note that doing this will remove current WireGuard interfaces, so you may want" - ewarn "to gracefully remove them yourself prior." - ewarn - fi - fi -} diff --git a/net-vpn/wireguard-modules/wireguard-modules-1.0.20201112.ebuild b/net-vpn/wireguard-modules/wireguard-modules-1.0.20201112.ebuild index a346e8fae151..a3aea3fe6a50 100644 --- a/net-vpn/wireguard-modules/wireguard-modules-1.0.20201112.ebuild +++ b/net-vpn/wireguard-modules/wireguard-modules-1.0.20201112.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]]; then else SRC_URI="https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${PV}.tar.xz" S="${WORKDIR}/wireguard-linux-compat-${PV}" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86" fi LICENSE="GPL-2" diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index a0081e4fa786..e293585003f2 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest index 885e8e359d54..b5e7f8c7a935 100644 --- a/net-wireless/unifi/Manifest +++ b/net-wireless/unifi/Manifest @@ -1,5 +1,5 @@ DIST unifi-5.6.42.zip 63581448 BLAKE2B dc12149acc56587043b9f6c45a43327a9a067dda86127c60ad62a4681a0c8ba873435b60183989332f561fb52f71c7207480766ec23d9c0e892cc20c521a9819 SHA512 467c0ad284a84795537484f371867d851e67c7e396215d539a9705f17f374b50db4051121a6634d1944474a2474bdd75fca860ab00b48634a5d3e8749a122989 -DIST unifi-6.0.28.zip 227017958 BLAKE2B cf70d5cbcefcf2a89f1a38763898d3f59f4be1b99b5cca7a7393a6e8ef705090aeb60f59c0a67b95ae967ff575da0749bbf327d53247c1a7128f01043145bebc SHA512 edb332ccc6624f73c77976a564c157d37f2a11068c2f8af1fa98209efb3b4e01922ab75309f85e5bd053ec50e9eeb433fcaa22bb2c0a27a6ee4de8946a876d46 -DIST unifi-6.0.34.zip 230272618 BLAKE2B c591bd1b51c00e7d01ca75e27c956f3867047499436193a509d9d29594afa4c82c89f36c6884a10a7eb705ee4b1e5bfa345a0592d1dac4011298b4a564f21b12 SHA512 3806962c6e173240d519b395b15946d6a62fe569ef36c8c2681aed746ecd357bd747be5188ffaf51d2641fa997f953a8efbc7ce9a1bdd786605b262bbe7eeaf8 +DIST unifi-6.0.36.zip 232051560 BLAKE2B 94a2780c40588c2afb64993d839dedb6064f437cdf29cd6dd9124ef3944ae25d1942f3eed0ea080007800575b37d9063b3f007b91d02bc30d35179cb4263d873 SHA512 bab68b649c84cf62e4e646c62a8adf8006ab6d434907352f3970e7c81c779b4dcbaf8d1b5558cf69e7daede9c96fe0b02216700cb62de5659cf496dc899ec2ee +DIST unifi-6.0.37.zip 236439236 BLAKE2B 764c6406c3ac4a51617f6236280d63af3b6bd9c23a065f56bf8302ca72535b9cad8c2a78bac3ba07bc07f0997b635dea4d4fb71c395d46cf45fdbb05cb8d5b9b SHA512 07b452d84d8cd5d5d67db8d274a710bfbf3d3d19529b8692073ca5ec8108267694cdf85e8a101926599acc8aba9ac5f774dd78f2d5868da5b57c3d462748a2b4 DIST unifi-6.1.25.zip 235499342 BLAKE2B 77de866d2c04136b32e06698f3c20563dc68cf1bf5d260a23cad46ee208c5d4012d788c67dc3324578d2c944e8eceecf6b5473f4d77304e10ee15a3b14286fc7 SHA512 0eb916f06546a5b33da664ada77391a69d21c9ec4545244a1a6f55ceeb7546fe77a07a121df03ba606e98ddbd23429207f86bb5b2c24ddfb3174eb2d00c5daaf DIST unifi-6.1.26.zip 243498936 BLAKE2B 72a17f02279ecedd8f876df85167824a03abebb2816e68fcbfff11923b00c1e0b80b7357e48a4e044f0835e3e0054bd0ab034bd8fb3d67289bf61b4804ce9a87 SHA512 9ea5a7307ad507f08e4d39805bdf776eaa50895513e4c086d94527e28ae93b1f97e3d1b23ff314ed03ea560638b8cb44fc16bf4ff8f7746035e8b5de9b31321b diff --git a/net-wireless/unifi/unifi-6.0.34.ebuild b/net-wireless/unifi/unifi-6.0.36.ebuild similarity index 98% rename from net-wireless/unifi/unifi-6.0.34.ebuild rename to net-wireless/unifi/unifi-6.0.36.ebuild index 6481ef1cce21..2100bb3c54c9 100644 --- a/net-wireless/unifi/unifi-6.0.34.ebuild +++ b/net-wireless/unifi/unifi-6.0.36.ebuild @@ -4,7 +4,7 @@ EAPI=7 # Set this var for any releases except stable -RC_SUFFIX="-06c6d23a7b" +#RC_SUFFIX="" inherit systemd diff --git a/net-wireless/unifi/unifi-6.0.28.ebuild b/net-wireless/unifi/unifi-6.0.37.ebuild similarity index 96% rename from net-wireless/unifi/unifi-6.0.28.ebuild rename to net-wireless/unifi/unifi-6.0.37.ebuild index f2ef653925ef..02e3fe060f99 100644 --- a/net-wireless/unifi/unifi-6.0.28.ebuild +++ b/net-wireless/unifi/unifi-6.0.37.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 # Set this var for any releases except stable -RC_SUFFIX="-39f3b98a31" +RC_SUFFIX="-db4f549ad2" inherit systemd @@ -12,7 +12,7 @@ DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs" HOMEPAGE="https://www.ubnt.com" SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip" -KEYWORDS="amd64" +KEYWORDS="~amd64" LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 LGPL-3 MIT ubiquiti" SLOT="0/6.0" IUSE="systemd" diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 3d6cba22b613..fe04d37e1478 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/arm/package.use.mask b/profiles/arch/arm/package.use.mask index 316a02672f09..a111dd5abd87 100644 --- a/profiles/arch/arm/package.use.mask +++ b/profiles/arch/arm/package.use.mask @@ -1,11 +1,6 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# Joonas Niilola (2020-11-16) -# Depends on app-text/libgepub not yet keyworded for this arch. -# 754762 -xfce-extra/tumbler epub - # Arfrever Frehtes Taifersar Arahesis (2020-10-14) # app-i18n/fcitx:4 not keyworded. media-libs/libsdl2 fcitx4 diff --git a/profiles/arch/arm64/package.use.mask b/profiles/arch/arm64/package.use.mask index 530ebdccefcc..a179c5dfba11 100644 --- a/profiles/arch/arm64/package.use.mask +++ b/profiles/arch/arm64/package.use.mask @@ -1,11 +1,6 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# Joonas Niilola (2020-11-16) -# Depends on app-text/libgepub which is not yet keyworded on this -# arch. #754762 -xfce-extra/tumbler epub - # Andreas Sturmlechner (2020-11-08) # dev-util/kdevelop-php is not keyworded, bug #751337 >=kde-apps/umbrello-20.08.3 php diff --git a/profiles/arch/hppa/package.use.mask b/profiles/arch/hppa/package.use.mask index 4a0922df1dd1..923ff4dff8a3 100644 --- a/profiles/arch/hppa/package.use.mask +++ b/profiles/arch/hppa/package.use.mask @@ -4,6 +4,10 @@ # NOTE: When masking a USE flag due to missing keywords, please file a keyword # request bug for the hppa arch. +# Michał Górny (2020-11-18) +# Requires dev-python/coverage, bug #743355. +dev-python/nose coverage + # Andreas Sturmlechner (2020-11-12) # media-sound/lash not keyworded, bug #736725 media-sound/fluidsynth lash diff --git a/profiles/base/package.use.force b/profiles/base/package.use.force index 27e1dfd3d50f..3ed0a93dc476 100644 --- a/profiles/base/package.use.force +++ b/profiles/base/package.use.force @@ -22,6 +22,7 @@ sys-devel/gcc-config cc-wrappers # https://wiki.gentoo.org/wiki/Project:Toolchain/use_native_symlinks sys-devel/binutils-config native-symlinks sys-devel/gcc-config native-symlinks +sys-devel/gcc-config cc-wrappers # Michał Górny (2017-12-30) # Require user configs unless we supply our own .config. diff --git a/profiles/package.mask b/profiles/package.mask index 51dd69befca4..5f591fe46568 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -32,6 +32,88 @@ #--- END OF EXAMPLES --- +# Michał Górny (2020-11-19) +# These packages are maintained by the Python project, or have +# no maintainer. They have not been ported to Python 3.8 yet. +# The ebuilds either lack tests entirely, or the tests fail +# (or are broken). They have no reverse dependencies, except for other +# packages from the list. +# Removal in 30 days. Bug #755623. +dev-python/HeapDict +dev-python/billiard +dev-python/celery +dev-python/ctypesgen +dev-python/cytoolz +dev-python/docker-pycreds +dev-python/dugong +dev-python/hgdistver +dev-python/nose-cover3 +dev-python/nose-parameterized +dev-python/nose-show-skipped +dev-python/pew +dev-python/pika +dev-python/pmw +dev-python/ptpython +dev-python/pure-sasl +dev-python/pyfltk +dev-python/pympler +dev-python/python-ethtool +dev-python/python-prctl +dev-python/python-termstyle +dev-python/pythonz-bd +dev-python/pywinrm +dev-python/rednose +dev-python/resumable-urlretrieve +dev-python/shutilwhich +dev-python/sortedcollections +dev-python/sphinxcontrib-pretty-searchresults +dev-python/subvertpy +dev-python/vcversioner +dev-python/xlutils +dev-python/zict + +# Matt Turner (2020-11-19) +# Ancient packages long since deprecated in the age of udev. +# Removal in 30 days. Bug #755617 +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 +# Removal in 30 days. +app-text/kchmviewer + +# Andreas Sturmlechner (2020-11-18) +# Depends on deprecated QtWebKit, no maintainer. +# Bugs #712200 and 725388. Removal in 30 days. +sci-misc/mendeleydesktop + +# Joonas Niilola (2020-11-18) +# Doesn't compile, no maintainer, our package is multiple versions +# behind from upstream. Removal in ~30 days. Bug: #739212 +games-emulation/ppsspp + +# Michał Górny (2020-11-18) +# Upstream has switched to aiobotocore. It's a huge hack that requires +# a very specific botocore version, currently 3 months old. Given that +# boto* makes releases daily and various revdeps require newer boto3 / +# botocore versions, this makes aiobotocore unmaintainable. +# As a result, we'd be stuck with the old version forever. +# +# See also: +# https://github.com/aio-libs/aiobotocore/issues/829 +# https://github.com/dask/s3fs/issues/357 +# +# Removal in 30 days. Bug #755266. +dev-python/s3fs + # Zac Medico (2020-11-17) # Unit tests fail. No revdeps. # Removal in 30 days. Bug #723674. @@ -217,10 +299,6 @@ sci-libs/mkl-rt # Removal in 30 days. Bug #725646. media-fonts/mathematica-fonts -# Andreas Sturmlechner (2020-11-05) -# Replaced by kde-frameworks/kdav, masked for removal in 14 days. -kde-apps/kdav - # Dirkjan Ochtman (2020-11-05) # Incorrect DISTUTILS_USE_SETUPTOOLS value, dead upstream. # Removal in 30 days. Bug #748063 @@ -407,6 +485,7 @@ dev-lua/luacrypto # All these ebuilds require slotted Lua, which is still masked. # Ulrich Müller (2020-11-06) # Added sci-visualization/gnuplot. +>=app-benchmarks/wrk-4.1.0-r100 >=app-misc/worker-3.8.3-r100 =dev-libs/efl-1.25.1-r10 >=dev-lua/lua-bit32-5.3.5-r100 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 8d8b4e45e7b9..e08bbc6c70f3 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -2885,6 +2885,7 @@ dev-util/ostree:soup - Use libsoup for networking dev-util/perf:clang - Enable builtin clang and LLVM support dev-util/perf:demangle - Enable C++ symbol name demangling, using libbfd from sys-devel/binutils. When this flag is enabled, the package will have to be rebuilt after every version bump of binutils. dev-util/perf:doc - Build documentation and man pages. With this USE flag disabled, the --help parameter for perf and its sub-tools will not be available. This is optional because it depends on a few documentation handling tools that are not always welcome on user systems. +dev-util/perf:libpfm - Enable dev-libs/libpfm support dev-util/perf:numa - Enable NUMA support dev-util/perf:perl - Add support for Perl as a scripting language for perf tools. dev-util/perf:systemtap - Add support to define SDT event in perf tools. @@ -5777,7 +5778,6 @@ net-im/psi:hunspell - Enable spellchecking using app-text/hunspell net-im/psi:iconsets - Install additional iconsets, some of them have no clear licensing net-im/psi:keyring - Enable storing password in system keyring manager net-im/psi:webengine - Enable themed, html-based chatlogs using dev-qt/qtwebengine -net-im/psi:webkit - Enable themed, html-based chatlogs using dev-qt/qtwebkit net-im/psi:whiteboarding - Enable experimental interactive SVG drawing net-im/psi:xscreensaver - Use X screensaver protocol extension to monitor idle/active status based on mouse/keyboard events net-im/psimedia:extras - Enable Psi+ mode (required when built for Psi+) @@ -7557,9 +7557,7 @@ sci-physics/root:fortran - Compile included Fortran programs sci-physics/root:gdml - Enable GDML writer and reader sci-physics/root:http - Enable http server support including but not limited to fastcgi support sci-physics/root:libcxx - Build ROOT against sys-libs/libcxx -sci-physics/root:memstat - Build memory statistics library, helps to detect memory leaks sci-physics/root:minuit - Build ROOT's internal versions of minuit (fortran) and minuit2 (C++) -sci-physics/root:nosplash - Disable ROOT's splash screen by default sci-physics/root:pythia6 - Build the interface for sci-physics/pythia version 6.x sci-physics/root:pythia8 - Build the interface for sci-physics/pythia version 8.x sci-physics/root:roofit - Build RooFit function fitting package @@ -7978,7 +7976,6 @@ sys-cluster/ceph:grafana - Install grafana dashboards sys-cluster/ceph:kafka - Rados Gateway's pubsub support for Kafka push endpoint sys-cluster/ceph:lttng - Add support for LTTng sys-cluster/ceph:mgr - Build the ceph-mgr daemon -sys-cluster/ceph:nss - Use dev-libs/nss for cryptography sys-cluster/ceph:numa - Use sys-process/numactl for numa support in rocksdb sys-cluster/ceph:openssl - Use dev-libs/openssl sys-cluster/ceph:pmdk - Enable PMDK libraries @@ -8672,7 +8669,6 @@ www-servers/nginx-unit:php7-2 - Support for PHP 7.2 www-servers/nginx-unit:php7-3 - Support for PHP 7.3 www-servers/nginx-unit:php7-4 - Support for PHP 7.4 www-servers/pshs:magic - Enable automatic detection of Content-Type using libmagic (sys-apps/file) -www-servers/pshs:netlink - Use libnetlink (sys-apps/iproute2) to get network interface addresses www-servers/pshs:qrcode - Enable generating QRCodes for server URL www-servers/resin:admin - Enable Resin admin webapp www-servers/sniproxy:dns - Enable DNS resolver via net-libs/udns diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz index ecec09d7882e..d87ee19cab50 100644 Binary files a/sci-electronics/Manifest.gz and b/sci-electronics/Manifest.gz differ diff --git a/sci-electronics/kicad-footprints/Manifest b/sci-electronics/kicad-footprints/Manifest index a22b6ab9e0de..0c6d3a2e0035 100644 --- a/sci-electronics/kicad-footprints/Manifest +++ b/sci-electronics/kicad-footprints/Manifest @@ -1,2 +1,3 @@ DIST kicad-footprints-5.1.6.tar.gz 6015680 BLAKE2B f0b5cfed0c6310867ace49c87e8c43340995b0fefca4bd528031743d19e77ce5624e3b14580e586bb529359a96b0c89fa1036c89a53c4ed2d5b88e3d49d423af SHA512 da0fa31b56da1210f9bbdd0719ba7b9fe642170a8093dc3411ee3bed1f24ebcc2a14e7aee314a7dcbb80c453ea72a44f7acb34e44814d0d52aeb78eeb1227ec6 DIST kicad-footprints-5.1.7.tar.gz 6035007 BLAKE2B 9a2d72f1dc4eeef267055da091f531b6e45d8b469736551a9576ec5ed2b081068975b543c09955f2704946f26efd5c330c2b3a33fdedb6cae42cac8daddeebd4 SHA512 c21bb6e65b1e5d332d75bf2bcdf34da03a4f5301a1d8458da3780dc52099f536579a99a139925de33b2c57983043305dabbb80be3bef207461dbc42458281252 +DIST kicad-footprints-5.1.8.tar.bz2 3387152 BLAKE2B 38d4423eaa88d027114d2897a930ccc50091155109b8afdc4413d9b84f50fe261501dc55c84a6bd50d9723a66105f968ee6f5d713dda516ec3da335fee07ad9e SHA512 07a15d8906669816ad9aff82711d7f0401ad02965ee50e4cdf42eb0244daadea943144b7619c1db3c8656007645cb8db9fc3d971acfaea85aa5eb77fe1b537cb diff --git a/sci-electronics/kicad-footprints/kicad-footprints-5.1.8.ebuild b/sci-electronics/kicad-footprints/kicad-footprints-5.1.8.ebuild new file mode 100644 index 000000000000..f8f652eff266 --- /dev/null +++ b/sci-electronics/kicad-footprints/kicad-footprints-5.1.8.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools footprint libraries" +HOMEPAGE="https://kicad.github.io/footprints/" +SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sci-electronics/kicad-5.1.0" diff --git a/sci-electronics/kicad-i18n/Manifest b/sci-electronics/kicad-i18n/Manifest index 38da43ebea17..7993958a16f6 100644 --- a/sci-electronics/kicad-i18n/Manifest +++ b/sci-electronics/kicad-i18n/Manifest @@ -1,2 +1,3 @@ DIST kicad-i18n-5.1.6.tar.bz2 2929902 BLAKE2B 6ede4e7cf7972d054e9f69bf5a35bad5b48a1b6368ac5efd78ba8e54dd82edf1da4c3bca93b0d9aa083bbd1740e8e952eae044f802579d8942301b49ebeeaeb1 SHA512 58b213845de9359124e98df1e6bed4df3184da2fe075a1751fe4c9861084748853fd258ecf2d99849ca07a3c84d99657158d9168caf6ac5eaa9884b10dd9ca91 DIST kicad-i18n-5.1.7.tar.bz2 3161083 BLAKE2B be8aca1365b755a2f910ee987c76bb6be8b910b189f9ee53b7cd12dbe4c3139085327eada2833b566f220da2224a1ec9504d83b245e91a0f5589a8161c10abeb SHA512 1877c28bffd0d29a32867fe2aa5eb1e24df4ab4c36c381976d712d2319e4b6049cfb91f26d1158cd2ba08eab63a7da12701532fe6207b8aa9c4470c951788fa0 +DIST kicad-i18n-5.1.8.tar.bz2 2933636 BLAKE2B b3253899ee500045fb050ed7559c8765a853dcb5dba371ac8c4c30b593e16c348bcee6a2ffcfd31eb391fc9b11b99537e91f4f711943acada02b765f94f2525b SHA512 e177dd590e82b8f23be582a682067ff0a5c615387fe9e5caf4b887f9219350c0766196e7e94e42a2bb37a9afc40186b601655cf528e65aaebf33f9659dac5e3c diff --git a/sci-electronics/kicad-i18n/kicad-i18n-5.1.8.ebuild b/sci-electronics/kicad-i18n/kicad-i18n-5.1.8.ebuild new file mode 100644 index 000000000000..581556469ff2 --- /dev/null +++ b/sci-electronics/kicad-i18n/kicad-i18n-5.1.8.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools GUI translations" +HOMEPAGE="https://gitlab.com/kicad/code/kicad-i18n" +SRC_URI="https://gitlab.com/kicad/code/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="sys-devel/gettext" +RDEPEND=">=sci-electronics/kicad-5.1.6" diff --git a/sci-electronics/kicad-meta/kicad-meta-5.1.8.ebuild b/sci-electronics/kicad-meta/kicad-meta-5.1.8.ebuild new file mode 100644 index 000000000000..88d76f40cae8 --- /dev/null +++ b/sci-electronics/kicad-meta/kicad-meta-5.1.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Electronic Schematic and PCB design tools (meta package)" +HOMEPAGE="http://www.kicad.org" +SRC_URI="" + +LICENSE="metapackage" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc minimal nls" + +RDEPEND=" + >=sci-electronics/kicad-5.1.8 + >=sci-electronics/kicad-symbols-5.1.8 + >=sci-electronics/kicad-footprints-5.1.8 + doc? ( + >=app-doc/kicad-doc-5.1.8 + ) + !minimal? ( + >=sci-electronics/kicad-packages3d-5.1.8 + >=sci-electronics/kicad-templates-5.1.8 + ) + nls? ( + >=sci-electronics/kicad-i18n-5.1.8 + ) +" diff --git a/sci-electronics/kicad-packages3d/Manifest b/sci-electronics/kicad-packages3d/Manifest index b8455012129b..479324124636 100644 --- a/sci-electronics/kicad-packages3d/Manifest +++ b/sci-electronics/kicad-packages3d/Manifest @@ -1,2 +1,3 @@ DIST kicad-packages3d-5.1.6.tar.gz 922508706 BLAKE2B 2742791ee23d12ae25dcbab85e3b65f0126f3b3193392d60738b3cbee8ca0585aede1dc43b65e8c39526841ba9f960d6df95e5135af2feccecae403ec0583b3a SHA512 248fb4a759c7824d17b8a955f0636ed266e404a783af9a684ae09b8d2efc8871851c5236caf4092a97ba0485a9c3962bdea1898658aa17d6503832348b1968a9 DIST kicad-packages3d-5.1.7.tar.gz 942594575 BLAKE2B abc7c4b31f109968a48f5177d2ce09d216aa4b191d083492cc2c72db4a3bcf2209b91552a4eea4593634af7b901a1adb842517cfd9ad032062d6cb1f2415af07 SHA512 b1189c4d8a82e16334a2d116370c3e50edea0c2efaf91f4856605b1e566e808e86fc076796a7855efe709c7fafc7a0e2f924ce31cb245d6a3e362793a4a8be64 +DIST kicad-packages3d-5.1.8.tar.bz2 727228580 BLAKE2B f6ba05432fea5dfd7ef9ba78772cef9838c3d98b0b7a98390b8c819b5411f4ba209c4fb12dc75ef31bee6d881438604b8658294bd13ba5ea482b5ea17770279f SHA512 8f5a54408f3ef01e5d3eca876f7ba33abb72a7ca5cb4584e093fda3ba92a6d938db8a2be486a147feb7a7a24b86ead98c33e5ae1ac7622109d8fe66eaab39014 diff --git a/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.8.ebuild b/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.8.ebuild new file mode 100644 index 000000000000..67a41a58de5d --- /dev/null +++ b/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.8.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit check-reqs cmake + +DESCRIPTION="Electronic Schematic and PCB design tools 3D package libraries" +HOMEPAGE="https://kicad.github.io/packages3d/" +SRC_URI="https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/${PV}/kicad-packages3D-${PV}.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="occ +oce" + +REQUIRED_USE="|| ( occ oce )" + +RDEPEND=">=sci-electronics/kicad-5.1.0[occ=,oce=]" + +CHECKREQS_DISK_BUILD="11G" +S="${WORKDIR}/${P/3d/3D}" diff --git a/sci-electronics/kicad-symbols/Manifest b/sci-electronics/kicad-symbols/Manifest index c09a2af1d99e..314d50926f09 100644 --- a/sci-electronics/kicad-symbols/Manifest +++ b/sci-electronics/kicad-symbols/Manifest @@ -1,2 +1,3 @@ DIST kicad-symbols-5.1.6.tar.gz 2993494 BLAKE2B ba4056e350f049633a3265d2bd4e68af7765858d7d26d282b4dd7913d7a0f9d0011de319c6303c89c94ed4a07eeb93d6e08fca0b966d1e1138bef1b1ed74ad50 SHA512 e090cbafe3cffea86ccfda18d521528bededb573af7a46d5e7af0047a8c70f553e11e56046ec26ea11f742031507ab1ddd99459488f7ee57d8a18d6b9a5249ed DIST kicad-symbols-5.1.7.tar.gz 3033099 BLAKE2B e7e81677c5432c034cfdd6eb8e5ae108129d761e33c3f1969f379c0068de0be64353be42e8ca8394ea4bd3d81753e64bec81fb1a6fd106370e1a5673226fb7ad SHA512 0b6a4451957fcbce9a08706d121bbb853782c1163f8daba35f229b08577001bc1de41148340e59d3865d5b2775537c6ced1bede913845dc531d025559725f393 +DIST kicad-symbols-5.1.8.tar.bz2 1815263 BLAKE2B baa0125218df3ac9c4714924114892689b4ed3da4fd4e7566acc1ff89e47151b7c3e64155ca45200b5a3a1a5eebbcb5e9d656aa5454ae1ee52a76835215247d1 SHA512 f3d55ebf014d53c44c8f064701f605b7c393ca9c48d24281afb093908c4d7e3b6fdad6e0a80feac4e9709fa603b451d090496905af794f875820cda472517b16 diff --git a/sci-electronics/kicad-symbols/kicad-symbols-5.1.8.ebuild b/sci-electronics/kicad-symbols/kicad-symbols-5.1.8.ebuild new file mode 100644 index 000000000000..4baf883551d0 --- /dev/null +++ b/sci-electronics/kicad-symbols/kicad-symbols-5.1.8.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools symbol libraries" +HOMEPAGE="https://kicad.github.io/symbols/" +SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sci-electronics/kicad-5.1.0" diff --git a/sci-electronics/kicad-templates/Manifest b/sci-electronics/kicad-templates/Manifest index 9386bd6eafda..88a0b5e1614e 100644 --- a/sci-electronics/kicad-templates/Manifest +++ b/sci-electronics/kicad-templates/Manifest @@ -1,2 +1,3 @@ DIST kicad-templates-5.1.6.tar.gz 1634919 BLAKE2B acf7f2bd709d8482fb8de408cf89d568a8130d2ddc619e0d3a19e717b507915681879cc8102993a3b0a99c8c9360e5c787243cf1be5f1f76e3a9518ac5b8623a SHA512 cd0d539322e8c4fe9787d68bf2d7c1e5a287824aacd89edff77e1531052664669ce1193f58f5e992ff28183afadcf14c080c9ff407247f0b3d6c12366b4d4b0d DIST kicad-templates-5.1.7.tar.gz 1643946 BLAKE2B fee5a92f0f6d1914a12b03c90cfe76239b84fabc6b1b34e1381a59a140459eb27fd9e347e27564faaeecc9f89c149f246d5171e97a12825d50a4cb89f9e33104 SHA512 1c836ac53ab87e83118d158076f8527c0ec47aa047a385f836536971d9f0adc56c6c0029a1ce14828c31d7d446ac4b0cac7403dddec122633dee42ae6c33e4f6 +DIST kicad-templates-5.1.8.tar.bz2 1552947 BLAKE2B 87eb0b40981e63a795ce900792998a27cbe5c7bd441bd27b78ff356b943cebd3a2664ce1ff629501cb107d806276150601cbf2a59a5a94e64199a229d2d94328 SHA512 0f6fcd09ab2c0e64386a5a9046aebc0dfa053a1d6c28a18daa896fc7899d121bc2214f515af4556adba2871bb903715d4751ec1ece770a48b371b8b2ad1e8bb0 diff --git a/sci-electronics/kicad-templates/kicad-templates-5.1.8.ebuild b/sci-electronics/kicad-templates/kicad-templates-5.1.8.ebuild new file mode 100644 index 000000000000..6bc0cb273a29 --- /dev/null +++ b/sci-electronics/kicad-templates/kicad-templates-5.1.8.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools project templates" +HOMEPAGE="https://github.com/kicad/kicad-templates" +SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sci-electronics/kicad-5.1.0" diff --git a/sci-electronics/kicad/Manifest b/sci-electronics/kicad/Manifest index d74dc6798c2a..b5d3a457046a 100644 --- a/sci-electronics/kicad/Manifest +++ b/sci-electronics/kicad/Manifest @@ -1,2 +1,3 @@ DIST kicad-5.1.6.tar.bz2 18299367 BLAKE2B b5bfda025bb0be249f2ff334e8b82c49e4e4265fe4cf5daad8a01bfd6149f4c2d1c55d689f3033136ab904f45e8deb9ea12ccde43ea083b14d92e677adf39c0f SHA512 4fd3d0ac1524cc113210be8dc1b76ab4e02bf271f598943ecab73af98a9dc99009b2d3818c97b358498d2f98ee863f13b21e958fd2143356c2a1368601f0d48a DIST kicad-5.1.7.tar.bz2 18279204 BLAKE2B 9d12cf06282d2b8a5c5c4b0a387774ef90f8035bf0fafd9f5d939819f71edbb248d2b15fb4b3f35a80950fd41d140d93165ece61748076d7e2938cc0c9140e46 SHA512 f853eed50245d875b2443cc9accb3c75e8404d8fee12f129df68b3ab7052c31cda1eb0ad22fc10eb23b35250188973fb51a8c55fcb1560ea65d6e5e22b94a182 +DIST kicad-5.1.8.tar.bz2 18282857 BLAKE2B 07afa95853dae587293f71b4b6b5e888610439d39dd5bd715a1f424a837d46894771bf3eb4b447f7a70ea0bb0a810fee141a81bf56a4be50e81415b38552ff11 SHA512 6d40c5ce65c4350174412359d03a9c0c3a311de9ba57d92c1b053fefbb3e518cccb7a38a2a87e8f5b1950a3676514d25ae0e5e14a97b72a56cc0d401aeab3452 diff --git a/sci-electronics/kicad/kicad-5.1.8.ebuild b/sci-electronics/kicad/kicad-5.1.8.ebuild new file mode 100644 index 000000000000..eb9b3fb01986 --- /dev/null +++ b/sci-electronics/kicad/kicad-5.1.8.ebuild @@ -0,0 +1,158 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +WX_GTK_VER="3.0-gtk3" + +inherit check-reqs cmake optfeature python-single-r1 toolchain-funcs wxwidgets xdg-utils + +DESCRIPTION="Electronic Schematic and PCB design tools" +HOMEPAGE="https://www.kicad.org" +SRC_URI="https://gitlab.com/kicad/code/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2+ GPL-3+ Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="doc examples github +ngspice occ +oce openmp +python" + +REQUIRED_USE=" + python? ( ${PYTHON_REQUIRED_USE} ) + ?? ( occ oce ) +" + +COMMON_DEPEND=" + >=dev-libs/boost-1.61:=[context,nls,threads] + media-libs/freeglut + media-libs/glew:0= + >=media-libs/glm-0.9.9.1 + media-libs/mesa[X(+)] + >=x11-libs/cairo-1.8.8:= + >=x11-libs/pixman-0.30 + x11-libs/wxGTK:${WX_GTK_VER}[X,opengl] + github? ( net-misc/curl:=[ssl] ) + ngspice? ( + >sci-electronics/ngspice-27[shared] + ) + occ? ( >=sci-libs/opencascade-6.8.0:= ) + oce? ( sci-libs/oce ) + python? ( + $(python_gen_cond_dep ' + >=dev-libs/boost-1.61:=[context,nls,threads,python,${PYTHON_MULTI_USEDEP}] + dev-python/wxpython:4.0[${PYTHON_MULTI_USEDEP}] + ') + ${PYTHON_DEPS} + ) +" +DEPEND="${COMMON_DEPEND} + python? ( >=dev-lang/swig-3.0:0 )" +RDEPEND="${COMMON_DEPEND} + sci-electronics/electronics-menu +" +BDEPEND="doc? ( app-doc/doxygen )" +CHECKREQS_DISK_BUILD="800M" + +PATCHES=( + "${FILESDIR}/${PN}-5.1.5-help.patch" + "${FILESDIR}/${PN}-5.1.6-ninja-build.patch" + "${FILESDIR}/${PN}-5.1.5-strict-aliasing.patch" + "${FILESDIR}/${PN}-5.1.6-metainfo.patch" + "${FILESDIR}/${PN}-5.1.5-ldflags.patch" +) + +pkg_setup() { + use python && python-single-r1_pkg_setup + use openmp && tc-check-openmp + setup-wxwidgets + check-reqs_pkg_setup +} + +src_unpack() { + default_src_unpack + # For the metainfo patch to work the kicad.appdata.xml has to be moved to + # avoid QA issue. This is needed because /usr/share/appdata location is + # deprecated, it should not be used anymore by new software. + # Appdata/Metainfo files should be installed into /usr/share/metainfo + # directory. as per + # https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html + mv "${S}/resources/linux/appdata" "${S}/resources/linux/metainfo" || die "Appdata move failed" +} + +src_configure() { + xdg_environment_reset + + local mycmakeargs=( + -DKICAD_DOCS="${EPREFIX}/usr/share/doc/${PF}" + -DKICAD_HELP="${EPREFIX}/usr/share/doc/${PN}-doc-${PV}" + -DBUILD_GITHUB_PLUGIN="$(usex github)" + -DKICAD_SCRIPTING="$(usex python)" + -DKICAD_SCRIPTING_MODULES="$(usex python)" + -DKICAD_SCRIPTING_WXPYTHON="$(usex python)" + -DKICAD_SCRIPTING_WXPYTHON_PHOENIX="$(usex python)" + -DKICAD_SCRIPTING_PYTHON3="$(usex python)" + -DKICAD_SCRIPTING_ACTION_MENU="$(usex python)" + -DKICAD_SPICE="$(usex ngspice)" + -DKICAD_USE_OCC="$(usex occ)" + -DKICAD_USE_OCE="$(usex oce)" + -DKICAD_INSTALL_DEMOS="$(usex examples)" + -DCMAKE_SKIP_RPATH="ON" + ) + use python && mycmakeargs+=( + -DPYTHON_DEST="$(python_get_sitedir)" + -DPYTHON_EXECUTABLE="${PYTHON}" + -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" + -DPYTHON_LIBRARY="$(python_get_library_path)" + ) + use occ && mycmakeargs+=( + -DOCC_INCLUDE_DIR="${CASROOT}"/include/opencascade + -DOCC_LIBRARY_DIR="${CASROOT}"/lib + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + if use doc; then + cmake_src_compile dev-docs doxygen-docs + fi +} + +src_install() { + cmake_src_install + use python && python_optimize + if use doc ; then + dodoc uncrustify.cfg + cd Documentation || die + dodoc -r *.txt kicad_doxygen_logo.png notes_about_pcbnew_new_file_format.odt doxygen/. development/doxygen/. + fi +} + +src_test() { + # Test cannot find library in Portage's sandbox. Let's create a link so test can run. + ln -s "${S}_build/eeschema/_eeschema.kiface" "${S}_build/qa/eeschema/_eeschema.kiface" || die + + default +} + +pkg_postinst() { + optfeature "Component symbols library" sci-electronics/kicad-symbols + optfeature "Component footprints library" sci-electronics/kicad-footprints + optfeature "3D models of components " sci-electronics/kicad-packages3d + optfeature "Project templates" sci-electronics/kicad-templates + optfeature "Different languages for GUI" sci-electronics/kicad-i18n + optfeature "Extended documentation" app-doc/kicad-doc + optfeature "Creating 3D models of components" media-gfx/wings + + xdg_desktop_database_update + xdg_mimeinfo_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + xdg_icon_cache_update +} diff --git a/sci-electronics/voacapl/voacapl-0.7.6.ebuild b/sci-electronics/voacapl/voacapl-0.7.6.ebuild index 8db2459df0c9..0ae8fe6a8d63 100644 --- a/sci-electronics/voacapl/voacapl-0.7.6.ebuild +++ b/sci-electronics/voacapl/voacapl-0.7.6.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/jawatson/${PN}/archive/v.${PV}.tar.gz -> ${P}.tar.gz LICENSE="all-rights-reserved" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RESTRICT="mirror bindist" diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index 6dbf7406f7f3..0f553929d265 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest index 212b0bba1759..93502ed33773 100644 --- a/sci-geosciences/qgis/Manifest +++ b/sci-geosciences/qgis/Manifest @@ -1,3 +1,2 @@ -DIST qgis-3.10.9.tar.bz2 102418680 BLAKE2B 53599dab784fc42b7a4505e13b1fd97cdb7c696bf1a004425ea0e7b88659b9af40f74b7107ef6103a138f4bc8886eda0a99a07a1c1466fb73c94d55ea39d8ea8 SHA512 91bba01db04094a194d1437a00276f076cd88d9ebcfe4792f20da8fb4339c984262e2bf79f666cf23af13081da358bbfb69bdff086e4988701c4431f53732275 DIST qgis-3.16.0.tar.bz2 113238659 BLAKE2B 42bdf8d0d69b28c20aa0decd79883c3b83d2ff9aa9d7633866b6c7d624ad20cb602beeca0e22585077c3d0ceba791e51b81ba221bc305c9bd2ebff71a4ea4bd4 SHA512 c87959a6412f85b6e4d30d4677e0e0914fd9a1009348c8bfe6063d7e1a9416f0a33ae63ded15273d8edde26ae0e6c32ba4d62d83c33c2c6251c444360dc47d10 DIST qgis_sample_data-2.8.14.tar.gz 22119181 BLAKE2B 2d0565e91ec8119382bc9ab8e262dc04227fe8289146794891759ff5a32012245270614ba1119a6329fc45cf56852830c2079589309aa3467873f71f5c608eac SHA512 6b2653d5b57ffc2c2317639dac212429840984ac917ca3e452b39aabb99ea106d1a77c1c1dd967244ef16ede9deae751b170affdf08b72239eafed5b8977da3d diff --git a/sci-geosciences/qgis/files/qgis-3.10.0-cmake-lib-suffix.patch b/sci-geosciences/qgis/files/qgis-3.10.0-cmake-lib-suffix.patch deleted file mode 100644 index 472b8aa466ce..000000000000 --- a/sci-geosciences/qgis/files/qgis-3.10.0-cmake-lib-suffix.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naru a/cmake/PyQtMacros.cmake b/cmake/PyQtMacros.cmake ---- a/cmake/PyQtMacros.cmake 2019-10-28 08:23:18.776024266 +0100 -+++ b/cmake/PyQtMacros.cmake 2019-10-28 08:24:17.316024213 +0100 -@@ -36,7 +36,7 @@ - ELSE(CMAKE_HOST_WIN32) - # TODO osx - SET(PYUIC_WRAPPER "${CMAKE_SOURCE_DIR}/scripts/pyuic-wrapper.sh") -- SET(PYUIC_WRAPPER_PATH "${QGIS_OUTPUT_DIRECTORY}/lib") -+ SET(PYUIC_WRAPPER_PATH "${QGIS_OUTPUT_DIRECTORY}/lib${LIB_SUFFIX}") - ENDIF(CMAKE_HOST_WIN32) - - FOREACH(it ${ARGN}) diff --git a/sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch b/sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch new file mode 100644 index 000000000000..afcaa693cedf --- /dev/null +++ b/sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch @@ -0,0 +1,25 @@ +From 9d095f7d502cbcea8c70c127be322568b71f6663 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 28 Apr 2019 12:41:51 +0200 +Subject: [PATCH] cmake: Fix DEFAULT_QML_DIR path to comply with LFS layout + +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4626042ca4..fe93ff3c4f 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -660,7 +660,7 @@ IF (WITH_CORE) + set (DEFAULT_LIBEXEC_SUBDIR lib${LIB_SUFFIX}/qgis) + set (DEFAULT_PLUGIN_SUBDIR lib${LIB_SUFFIX}/qgis/plugins) + set (DEFAULT_INCLUDE_SUBDIR include/qgis) +- set (DEFAULT_QML_SUBDIR qml) ++ set (DEFAULT_QML_SUBDIR ${DEFAULT_DATA_SUBDIR}/qml) + + set (DEFAULT_SERVER_MODULE_SUBDIR ${DEFAULT_LIBEXEC_SUBDIR}/server) + endif() +-- +2.21.0 + diff --git a/sci-geosciences/qgis/files/qgis-9999-featuresummary.patch b/sci-geosciences/qgis/files/qgis-9999-featuresummary.patch new file mode 100644 index 000000000000..8fa7ab0e8428 --- /dev/null +++ b/sci-geosciences/qgis/files/qgis-9999-featuresummary.patch @@ -0,0 +1,31 @@ +From 0744b51784b779eab4bb2e78ed084d31258b5b4d Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 28 Apr 2019 00:10:21 +0200 +Subject: [PATCH] cmake: Use FeatureSummary + +--- + CMakeLists.txt | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4dff8ea0f4..4626042ca4 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -71,6 +71,8 @@ IF(NOT MSVC) + endif(USE_CCACHE) + endif() + ++include(FeatureSummary) ++ + # in generated makefiles use relative paths so the project dir is moveable + # Note commented out since it cause problems but it would be nice to resolve these and enable + # +@@ -937,3 +939,5 @@ ENDIF (WITH_CORE) + if (UNIX AND NOT APPLE) + add_subdirectory(linux) + endif() ++ ++FEATURE_SUMMARY(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) +-- +2.21.0 + diff --git a/sci-geosciences/qgis/qgis-3.10.9.ebuild b/sci-geosciences/qgis/qgis-3.10.9.ebuild deleted file mode 100644 index 65bdc947394e..000000000000 --- a/sci-geosciences/qgis/qgis-3.10.9.ebuild +++ /dev/null @@ -1,203 +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} ) -PYTHON_REQ_USE="sqlite" -QTMIN="5.9.4" - -if [[ ${PV} = *9999 ]]; then - EGIT_REPO_URI="https://github.com/${PN}/${PN^^}.git" - inherit git-r3 -else - SRC_URI="https://qgis.org/downloads/${P}.tar.bz2 - examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz )" - KEYWORDS="amd64 x86" -fi -inherit cmake desktop python-single-r1 qmake-utils xdg - -DESCRIPTION="User friendly Geographic Information System" -HOMEPAGE="https://www.qgis.org/" - -LICENSE="GPL-2+ GPL-3+" -SLOT="0" -IUSE="3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle polar postgres python qml webkit" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} mapserver? ( python )" - -BDEPEND="${PYTHON_DEPS} - >=dev-qt/linguist-tools-${QTMIN}:5 - sys-devel/bison - sys-devel/flex -" -COMMON_DEPEND=" - app-crypt/qca:2[qt5(+),ssl] - >=dev-db/spatialite-4.2.0 - dev-db/sqlite:3 - dev-libs/expat - dev-libs/libzip:= - dev-libs/qtkeychain[qt5(+)] - >=dev-qt/designer-${QTMIN}:5 - >=dev-qt/qtconcurrent-${QTMIN}:5 - >=dev-qt/qtcore-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5[ssl] - >=dev-qt/qtpositioning-${QTMIN}:5 - >=dev-qt/qtprintsupport-${QTMIN}:5 - >=dev-qt/qtserialport-${QTMIN}:5 - >=dev-qt/qtsvg-${QTMIN}:5 - >=dev-qt/qtsql-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - media-gfx/exiv2:= - >=sci-libs/gdal-3.0.4:=[geos] - sci-libs/geos - sci-libs/libspatialindex:= - >=sci-libs/proj-6.3.1:= - >=x11-libs/qscintilla-2.10.1:=[qt5(+)] - >=x11-libs/qwt-6.1.2:6=[qt5(+),svg] - 3d? ( >=dev-qt/qt3d-${QTMIN}:5 ) - georeferencer? ( sci-libs/gsl:= ) - grass? ( =sci-geosciences/grass-7*:= ) - hdf5? ( sci-libs/hdf5:= ) - mapserver? ( dev-libs/fcgi ) - netcdf? ( sci-libs/netcdf:= ) - opencl? ( virtual/opencl ) - oracle? ( - dev-db/oracle-instantclient:= - sci-libs/gdal:=[oracle] - ) - polar? ( >=x11-libs/qwtpolar-1.1.1-r1[qt5(+)] ) - postgres? ( dev-db/postgresql:= ) - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/httplib2[${PYTHON_MULTI_USEDEP}] - dev-python/jinja[${PYTHON_MULTI_USEDEP}] - dev-python/markupsafe[${PYTHON_MULTI_USEDEP}] - dev-python/owslib[${PYTHON_MULTI_USEDEP}] - dev-python/pygments[${PYTHON_MULTI_USEDEP}] - dev-python/PyQt5[designer,network,sql,svg,webkit?,${PYTHON_MULTI_USEDEP}] - dev-python/python-dateutil[${PYTHON_MULTI_USEDEP}] - dev-python/pytz[${PYTHON_MULTI_USEDEP}] - dev-python/pyyaml[${PYTHON_MULTI_USEDEP}] - >=dev-python/qscintilla-python-2.10.1[qt5(+),${PYTHON_MULTI_USEDEP}] - dev-python/requests[${PYTHON_MULTI_USEDEP}] - dev-python/sip:=[${PYTHON_MULTI_USEDEP}] - dev-python/six[${PYTHON_MULTI_USEDEP}] - >=sci-libs/gdal-2.2.3[python,${PYTHON_MULTI_USEDEP}] - postgres? ( dev-python/psycopg:2[${PYTHON_MULTI_USEDEP}] ) - ') - ) - qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 ) - webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) -" -DEPEND="${COMMON_DEPEND} - >=dev-qt/qttest-${QTMIN}:5 -" -RDEPEND="${COMMON_DEPEND} - sci-geosciences/gpsbabel -" - -# Disabling test suite because upstream disallow running from install path -RESTRICT="test" - -PATCHES=( - # git master - "${FILESDIR}/${PN}-3.10.0-cmake-lib-suffix.patch" - # TODO upstream - "${FILESDIR}/${PN}-3.4.7-featuresummary.patch" - "${FILESDIR}/${PN}-3.4.7-default-qmldir.patch" -) - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_prepare() { - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DQGIS_MANUAL_SUBDIR=share/man/ - -DQGIS_LIB_SUBDIR=$(get_libdir) - -DQGIS_PLUGIN_SUBDIR=$(get_libdir)/qgis - -DQWT_INCLUDE_DIR=/usr/include/qwt6 - -DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6-qt5.so - -DPEDANTIC=OFF - -DUSE_CCACHE=OFF - -DWITH_ANALYSIS=ON - -DWITH_APIDOC=OFF - -DWITH_GUI=ON - -DWITH_INTERNAL_MDAL=ON # not packaged, bug 684538 - -DWITH_QSPATIALITE=ON - -DENABLE_TESTS=OFF - -DWITH_3D=$(usex 3d) - -DWITH_GEOREFERENCER=$(usex georeferencer) - -DWITH_GRASS7=$(usex grass) - $(cmake_use_find_package hdf5 HDF5) - -DWITH_SERVER=$(usex mapserver) - $(cmake_use_find_package netcdf NetCDF) - -DUSE_OPENCL=$(usex opencl) - -DWITH_ORACLE=$(usex oracle) - -DWITH_QWTPOLAR=$(usex polar) - -DWITH_POSTGRESQL=$(usex postgres) - -DWITH_BINDINGS=$(usex python) - -DWITH_CUSTOM_WIDGETS=$(usex python) - -DWITH_QUICK=$(usex qml) - -DWITH_QTWEBKIT=$(usex webkit) - ) - - if use grass; then - mycmakeargs+=( - -DGRASS_PREFIX7=/usr/$(get_libdir)/grass70 - ) - fi - - use python && mycmakeargs+=( -DBINDINGS_GLOBAL_INSTALL=ON ) - - # bugs 612956, 648726 - addpredict /dev/dri/renderD128 - addpredict /dev/dri/renderD129 - - cmake_src_configure -} - -src_install() { - cmake_src_install - - insinto /usr/share/mime/packages - doins debian/qgis.xml - - if use examples; then - docinto examples - dodoc -r "${WORKDIR}"/qgis_sample_data/. - docompress -x /usr/share/doc/${PF}/examples - fi - - if use python; then - python_optimize - python_optimize "${ED}"/usr/share/qgis/python - fi - - if use grass; then - python_fix_shebang "${ED}"/usr/share/qgis/grass/scripts - fi -} - -pkg_postinst() { - if use postgres; then - elog "If you don't intend to use an external PostGIS server" - elog "you should install:" - elog " dev-db/postgis" - elif use python; then - elog "Support of PostgreSQL is disabled." - elog "But some installed python-plugins import the psycopg2 module." - elog "If you do not need these plugins just disable them" - elog "in the Plugins menu, else you need to set USE=\"postgres\"" - fi - - xdg_pkg_postinst -} diff --git a/sci-geosciences/qgis/qgis-3.16.0-r1.ebuild b/sci-geosciences/qgis/qgis-3.16.0-r1.ebuild index 4e9d9ce86743..d952288f81f8 100644 --- a/sci-geosciences/qgis/qgis-3.16.0-r1.ebuild +++ b/sci-geosciences/qgis/qgis-3.16.0-r1.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} = *9999 ]]; then else SRC_URI="https://qgis.org/downloads/${P}.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz )" - KEYWORDS="~amd64 x86" + KEYWORDS="amd64 x86" fi inherit cmake desktop python-single-r1 qmake-utils xdg diff --git a/sci-geosciences/qgis/qgis-9999.ebuild b/sci-geosciences/qgis/qgis-9999.ebuild index f6b820db0fd1..3f589eac32d7 100644 --- a/sci-geosciences/qgis/qgis-9999.ebuild +++ b/sci-geosciences/qgis/qgis-9999.ebuild @@ -105,10 +105,10 @@ RESTRICT="test" PATCHES=( # git master - "${FILESDIR}/${P}-cmake-lib-suffix.patch" + "${FILESDIR}/${PN}-3.16.0-cmake-lib-suffix.patch" # TODO upstream - "${FILESDIR}/${PN}-3.4.7-featuresummary.patch" - "${FILESDIR}/${PN}-3.4.7-default-qmldir.patch" + "${FILESDIR}/${PN}-9999-featuresummary.patch" + "${FILESDIR}/${PN}-9999-default-qmldir.patch" ) pkg_setup() { diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index f026d3f47a82..dae04d6ff1e7 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/libaec/libaec-1.0.4.ebuild b/sci-libs/libaec/libaec-1.0.4.ebuild index 2941232047ae..c88b8785e98c 100644 --- a/sci-libs/libaec/libaec-1.0.4.ebuild +++ b/sci-libs/libaec/libaec-1.0.4.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="BSD-2" SLOT="0/2" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux" IUSE="+szip" RDEPEND="szip? ( !sci-libs/szip )" diff --git a/sci-libs/scikit-image/Manifest b/sci-libs/scikit-image/Manifest index a9303cfafc77..f69f2243258b 100644 --- a/sci-libs/scikit-image/Manifest +++ b/sci-libs/scikit-image/Manifest @@ -1,2 +1,2 @@ DIST scikit-image-0.13.0.tar.gz 26101533 BLAKE2B c28284f64abd58c7bafa8f5f0c781496e8bb28af79c5c730df7cbf2fede958eb88ea420fd7f89e7b8d0d91719a98dd0935af3b2cc50fe501cc8d8d1d0ee56cb9 SHA512 923015e373c406ae2fbbfdf83ce8b91e83790bdf7842c4439fdc9fd58cffe46efc0cfc7a1b0b06e1b2d092a909a6f085335640850883e7608dbccd1074046550 -DIST scikit-image-0.17.2.tar.gz 22682646 BLAKE2B acfa38caff7aa2e1f724e173f544610e643976a40feb752040d2f20d49d871d19dddb34790bf846476932c771c260ad9bd210781439707d7c5f693c9a8fa021c SHA512 3e57d8bea2fd41270eb17e8489c477f58ed98e56cef0192b0b2d455f27f7a2d705161afd61c7bfd556ec938a9a2bf5663ec1aa7b79609a8e5946806356364e82 +DIST scikit-image-0.17.2.tar.gz 29818001 BLAKE2B 360c5f8c23b8441d145029c09a3b1d1407d4103463497c63274583e6c03d1fc57baa3e6c53909cfaa5daba54d5909fc106e84dc7036f0240ad8de93804ef9f65 SHA512 3ca2511f03d533ac7f1850d72de396dc5493831bce6200f30d426c3f47eff9b25ec9b69e141100dc56e03f2310aab255f92ff4aff8bc7b80d15d669cbe2ebb5e diff --git a/sci-libs/scikit-image/scikit-image-0.17.2.ebuild b/sci-libs/scikit-image/scikit-image-0.17.2.ebuild index fe007d997ac2..d88534989efb 100644 --- a/sci-libs/scikit-image/scikit-image-0.17.2.ebuild +++ b/sci-libs/scikit-image/scikit-image-0.17.2.ebuild @@ -3,8 +3,7 @@ EAPI=7 -# 8,9 not on dev-python/pyamg -PYTHON_COMPAT=( python3_{6..7} ) +PYTHON_COMPAT=( python3_{6..9} ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 optfeature diff --git a/sci-libs/shapely/shapely-1.7.1.ebuild b/sci-libs/shapely/shapely-1.7.1.ebuild index 82f34f5fa2a8..483e0920ac6e 100644 --- a/sci-libs/shapely/shapely-1.7.1.ebuild +++ b/sci-libs/shapely/shapely-1.7.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/Toblerity/Shapely/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 x86" +KEYWORDS="amd64 ~arm64 x86" RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] diff --git a/sci-physics/Manifest.gz b/sci-physics/Manifest.gz index 1afa1b3c8b86..b2f3e6c105c9 100644 Binary files a/sci-physics/Manifest.gz and b/sci-physics/Manifest.gz differ diff --git a/sci-physics/clhep/Manifest b/sci-physics/clhep/Manifest index 1115532bbad8..e67a3ec6935d 100644 --- a/sci-physics/clhep/Manifest +++ b/sci-physics/clhep/Manifest @@ -1,4 +1,2 @@ -DIST clhep-2.2.0.5.tgz 1847046 BLAKE2B 8dddc6b9acbf41abdd849ef1aa1087d93f48fc83937ee67e687e28c421d290683e5381c2b9f8034e2651e3ccec2fd2e0ba8bee73dc55618e22c0e4df7ce3a378 SHA512 07d9359604196344fe3b13cc103727693fd70818c22849e54507530221812843a943cb8ed66eea421e498edcc9c0f584826823ea7939cbf53b90b17d412aed1a -DIST clhep-2.4.0.4.tgz 1536520 BLAKE2B 7ab58aeab685950393c8059f77e95cbbf7bf61f04e8113c6fd7b09200cce497716d5a0e023143dde395db895f48848a78e579e38968d9f27a50769034003e11e SHA512 349c1225713a3bc91fe94e27f938e919b434e6466df94dcde915c7e8ed313b9b2e7186e67a9b580ede21aec0050507a070c279920590148ebbec0ac5733fb008 -DIST clhep-2.4.1.2.tgz 1537636 BLAKE2B ad6cc94e1147747d2875c3f630155527fc428cf2b6dc3236824c0f70712eea9416006b127ff0dbb5c4f0c853618cc2c3f6f8e57e5a833d7d6e1e4328d161212b SHA512 e79139682f9955ff4cb79846cca5823c70b6710e7b8e227218346c05205a346d9dfee9f03736f8d1833379ba880239babdb3398cde776318550451d284269974 DIST clhep-2.4.1.3.tgz 1537908 BLAKE2B 92fd1fcc415b01d8efa44be67c3bf9e58af2b4d18b6e7ee2161fbc20312428a6f17eacc09150ccff7fefb1686161518042f5c2f7558ff00b4d5696d002432ece SHA512 f7a52b353dc2c6d30cb7d307af71a028838ec674af2a50fe0199335d0b0f7fb4b84489ccfd12f21ecb7b1327acbc87065e7e87363308fd0caad5748a657aac13 +DIST clhep-2.4.4.0.tgz 1541722 BLAKE2B 077048ea3ce94de88f08a1ae51ab9af892385d6747ed9f875e13b5aacc725e85f723031d42f526ca53050c07dad621053008c71d0f255f32893724f3e8189e52 SHA512 3ae88c8f31877c6e2cac7f7612946e9989186876c66015e6bfeab19260814c8a8bfb21fa28dd251cd2c43e4e3f63f336249c430c984f84810441603e949ecb5d diff --git a/sci-physics/clhep/clhep-2.2.0.5.ebuild b/sci-physics/clhep/clhep-2.2.0.5.ebuild deleted file mode 100644 index 2c12b7fa1861..000000000000 --- a/sci-physics/clhep/clhep-2.2.0.5.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="High Energy Physics C++ library" -HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" -SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz" -LICENSE="GPL-3 LGPL-3" -SLOT="2/${PV}" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos" - -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -BDEPEND="doc? ( virtual/latex-base )" - -S="${WORKDIR}/${PV}/CLHEP" - -src_prepare() { - cmake-utils_src_prepare - - # respect flags - sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die - # no batch mode to allow parallel building (bug #437482) - sed -i \ - -e 's:-interaction=batchmode::g' \ - cmake/Modules/ClhepBuildTex.cmake || die - # gentoo doc directory - sed -i \ - -e "/DESTINATION/s:doc:share/doc/${PF}:" \ - cmake/Modules/ClhepBuildTex.cmake */doc/CMakeLists.txt || die - # dont build test if not asked - if ! use test; then - sed -i \ - -e '/add_subdirectory(test)/d' \ - */CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DCLHEP_BUILD_DOCS=$(usex doc) - ) - DESTDIR="${ED}" cmake-utils_src_configure - use doc && MAKEOPTS+=" -j1" -} - -src_install() { - cmake-utils_src_install - if ! use static-libs; then - rm "${ED}"/usr/$(get_libdir)/*.a || die - fi -} diff --git a/sci-physics/clhep/clhep-2.4.0.4.ebuild b/sci-physics/clhep/clhep-2.4.0.4.ebuild deleted file mode 100644 index b72155c7a620..000000000000 --- a/sci-physics/clhep/clhep-2.4.0.4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="High Energy Physics C++ library" -HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" -SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz" -LICENSE="GPL-3 LGPL-3" -SLOT="2/${PV}" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" - -IUSE="doc test threads" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( - app-doc/doxygen - dev-texlive/texlive-bibtexextra - dev-texlive/texlive-fontsextra - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) -" - -S="${WORKDIR}/${PV}/CLHEP" - -src_prepare() { - cmake-utils_src_prepare - - # respect flags - sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die - # dont build test if not asked - if ! use test; then - sed -i \ - -e '/add_subdirectory(test)/d' \ - */CMakeLists.txt || die - fi - # gentoo doc directory - if use doc; then - grep -rl 'share/doc/CLHEP' | - xargs sed -i \ - -e "s:share/doc/CLHEP:share/doc/${PF}:" \ - {.,*}/CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DCLHEP_BUILD_DOCS=$(usex doc) - -DCLHEP_SINGLE_THREAD=$(usex threads no yes) - ) - DESTDIR="${ED}" cmake-utils_src_configure -} diff --git a/sci-physics/clhep/clhep-2.4.1.2.ebuild b/sci-physics/clhep/clhep-2.4.1.3-r2.ebuild similarity index 82% rename from sci-physics/clhep/clhep-2.4.1.2.ebuild rename to sci-physics/clhep/clhep-2.4.1.3-r2.ebuild index d1e22595d8af..d2ec26241032 100644 --- a/sci-physics/clhep/clhep-2.4.1.2.ebuild +++ b/sci-physics/clhep/clhep-2.4.1.3-r2.ebuild @@ -3,14 +3,14 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="High Energy Physics C++ library" HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/dist1/${P}.tgz" LICENSE="GPL-3 LGPL-3" SLOT="2/${PV}" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="doc test threads" RESTRICT="!test? ( test )" @@ -26,18 +26,18 @@ BDEPEND=" ) " +PATCHES=( "${FILESDIR}"/clhep-fix-testThreaded.patch ) + S="${WORKDIR}/${PV}/CLHEP" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # respect flags sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die # dont build test if not asked if ! use test; then - sed -i \ - -e '/add_subdirectory(test)/d' \ - */CMakeLists.txt || die + cmake_comment_add_subdirectory test fi # gentoo doc directory if use doc; then @@ -53,5 +53,5 @@ src_configure() { -DCLHEP_BUILD_DOCS=$(usex doc) -DCLHEP_SINGLE_THREAD=$(usex threads no yes) ) - DESTDIR="${ED}" cmake-utils_src_configure + DESTDIR="${ED}" cmake_src_configure } diff --git a/sci-physics/clhep/clhep-2.4.1.3-r1.ebuild b/sci-physics/clhep/clhep-2.4.4.0.ebuild similarity index 87% rename from sci-physics/clhep/clhep-2.4.1.3-r1.ebuild rename to sci-physics/clhep/clhep-2.4.4.0.ebuild index 817da604300f..1938b34ce53a 100644 --- a/sci-physics/clhep/clhep-2.4.1.3-r1.ebuild +++ b/sci-physics/clhep/clhep-2.4.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="High Energy Physics C++ library" HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" @@ -26,10 +26,15 @@ BDEPEND=" ) " +PATCHES=( + "${FILESDIR}"/clhep-fix-testThreaded.patch + "${FILESDIR}"/clhep-modulemap.patch +) + S="${WORKDIR}/${PV}/CLHEP" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # respect flags sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die @@ -51,5 +56,5 @@ src_configure() { -DCLHEP_BUILD_DOCS=$(usex doc) -DCLHEP_SINGLE_THREAD=$(usex threads no yes) ) - DESTDIR="${ED}" cmake-utils_src_configure + DESTDIR="${ED}" cmake_src_configure } diff --git a/sci-physics/clhep/files/clhep-fix-testThreaded.patch b/sci-physics/clhep/files/clhep-fix-testThreaded.patch new file mode 100644 index 000000000000..58010dc726da --- /dev/null +++ b/sci-physics/clhep/files/clhep-fix-testThreaded.patch @@ -0,0 +1,90 @@ +From 849f0250076ac3cce672e925c232bd6b96a018e0 Mon Sep 17 00:00:00 2001 +From: Guilherme Amadio +Date: Wed, 18 Nov 2020 17:33:17 +0100 +Subject: [PATCH] Fix testThreaded on x86 + +--- + Random/test/testThreaded.cc | 53 ++++++++++++++++++++++++++----------- + 1 file changed, 38 insertions(+), 15 deletions(-) + +diff --git a/Random/test/testThreaded.cc b/Random/test/testThreaded.cc +index a835ce19..0a6352c3 100644 +--- a/Random/test/testThreaded.cc ++++ b/Random/test/testThreaded.cc +@@ -65,23 +65,38 @@ void testRandGauss(std::vector const& reference, bool& result) { + + result = true; + ++ std::vector v; ++ v.push_back(dist.fire()); ++ v.push_back(dist.fire()); ++ v.push_back(dist.fire()); ++ v.push_back(dist.fire()); ++ v.push_back(dist.fire()); ++ + // Just a sanity check first. The fire method reproduces + // itself. +- if (reference[0] != dist.fire() || +- reference[1] != dist.fire() || +- reference[2] != dist.fire() || +- reference[3] != dist.fire() || +- reference[4] != dist.fire()) { ++ if (reference[0] != v[0] || ++ reference[1] != v[1] || ++ reference[2] != v[2] || ++ reference[3] != v[3] || ++ reference[4] != v[4]) { + result = false; + } + + // check the shoot method where we pass in an engine + CLHEP::HepJamesRandom engine1(seedL1); +- if (reference[0] != CLHEP::RandGauss::shoot(&engine1) || +- reference[1] != CLHEP::RandGauss::shoot(&engine1) || +- reference[2] != CLHEP::RandGauss::shoot(&engine1) || +- reference[3] != CLHEP::RandGauss::shoot(&engine1) || +- reference[4] != CLHEP::RandGauss::shoot(&engine1)) { ++ ++ v.clear(); ++ v.push_back(CLHEP::RandGauss::shoot(&engine1)); ++ v.push_back(CLHEP::RandGauss::shoot(&engine1)); ++ v.push_back(CLHEP::RandGauss::shoot(&engine1)); ++ v.push_back(CLHEP::RandGauss::shoot(&engine1)); ++ v.push_back(CLHEP::RandGauss::shoot(&engine1)); ++ ++ if (reference[0] != v[0] || ++ reference[1] != v[1] || ++ reference[2] != v[2] || ++ reference[3] != v[3] || ++ reference[4] != v[4]) { + result = false; + } + +@@ -93,11 +108,19 @@ void testRandGauss(std::vector const& reference, bool& result) { + // setFlag causes it to not use the cached value + // and generate a new pair of random numbers + CLHEP::RandGauss::setFlag(false); +- if (reference[0] != CLHEP::RandGauss::shoot() || +- reference[1] != CLHEP::RandGauss::shoot() || +- reference[2] != CLHEP::RandGauss::shoot() || +- reference[3] != CLHEP::RandGauss::shoot() || +- reference[4] != CLHEP::RandGauss::shoot()) { ++ ++ v.clear(); ++ v.push_back(CLHEP::RandGauss::shoot()); ++ v.push_back(CLHEP::RandGauss::shoot()); ++ v.push_back(CLHEP::RandGauss::shoot()); ++ v.push_back(CLHEP::RandGauss::shoot()); ++ v.push_back(CLHEP::RandGauss::shoot()); ++ ++ if (reference[0] != v[0] || ++ reference[1] != v[1] || ++ reference[2] != v[2] || ++ reference[3] != v[3] || ++ reference[4] != v[4]) { + result = false; + } + CLHEP::HepRandom::setTheEngine(savedEngine); +-- +2.29.2 + diff --git a/sci-physics/clhep/files/clhep-modulemap.patch b/sci-physics/clhep/files/clhep-modulemap.patch new file mode 100644 index 000000000000..31b1eda620a7 --- /dev/null +++ b/sci-physics/clhep/files/clhep-modulemap.patch @@ -0,0 +1,24 @@ +From ade5d82b54d2c72660b6b2c478323ac741ea7c01 Mon Sep 17 00:00:00 2001 +From: Guilherme Amadio +Date: Thu, 19 Nov 2020 09:55:12 +0100 +Subject: [PATCH] Install modulemap along with other header files + +--- + cmake/Modules/ClhepCopyHeaders.cmake | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/cmake/Modules/ClhepCopyHeaders.cmake b/cmake/Modules/ClhepCopyHeaders.cmake +index bd38b8a2..c6483c3a 100644 +--- a/cmake/Modules/ClhepCopyHeaders.cmake ++++ b/cmake/Modules/ClhepCopyHeaders.cmake +@@ -49,6 +49,6 @@ macro (clhep_copy_headers ) + # handle the module.modulemap file + CONFIGURE_FILE( ${CLHEP_SOURCE_DIR}/module.modulemap ${CLHEP_BINARY_DIR}/module.modulemap COPYONLY ) + INSTALL (FILES ${CLHEP_BINARY_DIR}/module.modulemap +- DESTINATION include ) ++ DESTINATION include/CLHEP ) + + endmacro (clhep_copy_headers) +-- +2.29.2 + diff --git a/sci-physics/geant-data/Manifest b/sci-physics/geant-data/Manifest index 3320b2ce4c8c..537b15f1d655 100644 --- a/sci-physics/geant-data/Manifest +++ b/sci-physics/geant-data/Manifest @@ -1,18 +1,12 @@ DIST G4ABLA.3.1.tar.gz 107286 BLAKE2B ff60665b01dcdb85a76028af472e6f71068b8132187701c46e5c4e8509125d34853d3c574561be22f34cc5f35503ec0808f2964888cd19259392de8054f19647 SHA512 4178870783ca015dade0b07006afc27fed095ff195251c672a0812f9c8e13908b5dfa9a127e8f3ec473f242bf7faf6d49a3371a75e669a06245722924b7c4278 -DIST G4EMLOW.7.7.tar.gz 107307909 BLAKE2B dc97ecadc6f17e789e781e90531e09131641e9d2e4cfa06adcf9913ec9720f92d23b18871d06bd090cf036e35af7b0d1a80fb41e816ebb41cc23d8c18d0ba647 SHA512 de8b942cfe009ebd614a1c0824ab889183b319bd3fb835d1f0fd98076e50f1372bb318ede30a7a936d9c64ba039231be5fcb74b4ca6c813691e9d5ceb862fdb0 DIST G4EMLOW.7.9.1.tar.gz 119756769 BLAKE2B 67be0b7ac34beb995ad4132883927fb99a78f93e7c99390c93fe897b4208a94a3ea5faaab1d04def5c248151c82d46431b411cb22303ffe941c6fe8a57d30423 SHA512 7f52ad5a3935323b60e5ea5196a64a2209337ca3d208109bceb648b95a5a3b0aa33f9a46f878884cb398e49302733c6f5b6316254261d350d038af8ec412952f DIST G4EMLOW.7.9.tar.gz 118027817 BLAKE2B 3456d07a0d87accbdf90049626e653488bb592f113e898e364638924259ce889940a20b7c84e40f16e654ca3fbb9e892050ce7e66a62a9e267706c5750bcd313 SHA512 6c5ae214915b273d20bec1483267279d53a015a13ed30ba1de325d489b5b34e65b227f8fd6caeb5fef28c2a582b7285002338e866f32c7f151fb1508ee55c54d DIST G4ENSDFSTATE.2.2.tar.gz 290632 BLAKE2B aff44d0b6512e4a227fa61a33045023652699843f80d1e90e236d491afd90be828a7bb393a4bb5b224b296d6e3f899a11027340b9e1ebffe705d08708af283fa SHA512 4feaa4229ac520d0e81ab0e31691ee899fa1f10b1a57f66b986fbe19729f7548000b8bac3519d09e91a1f7e116aa7a5bfeae5a3f5b6c3364168b51f4b5bb88c3 DIST G4INCL.1.0.tar.gz 95840 BLAKE2B 2c264b7563620cdbdb8a5e529f21766a5b5ea3e2e51047362518714d01854de8d9ca2ca2a0183ab672cc2f8a4d951327b0e1a7298799695fd48233fa5e529686 SHA512 9d769566d1728674bd6d1e59fc05882943cd240d2f0a9e47dff37fa64fe27720b20b66f6dea6d300c3c9082a22f7f71bb416df8c7d2b5bae87251c4a0113f49b -DIST G4NDL.4.5.tar.gz 421710294 BLAKE2B dab13b4c4ad9406e91172e1f8ec343a9be7c6c64f82e6a3b42a6fb19dec3d52b07a7a4848136af29e0cc82daff0ff02aa9e252d57e667c1a1e1a050039fff2fd SHA512 166d0189693f14c08fa9c48e4212c1cb275a848fdf0be3dfc4240bd01d1d4816f3ec3c85149995192e7055b58fd56c7e078e9d6819e01fdeafc13457bfa90470 DIST G4NDL.4.6.tar.gz 599862135 BLAKE2B 78e30dd0f02f3b7d7fce12a3a4dcb83e1405ba45f19ed2a743ee7e72be426e09a31cedb521a62a116a8a580a39c83987d4e39ab621b73e0d7a41e7dab8f36d41 SHA512 29b7d933d3e691b03cf45db0c4a9335c03f34ce57149a37b66a0f85e41d500d985f86bc8becc206d85202f129f60ea9fb1ef16bc4a9eef48cde593ffd5a85f24 -DIST G4PARTICLEXS.1.1.tar.gz 3388648 BLAKE2B ed179d003a84007dc26319f2b3e7349586f8e1ef58de8acb8e8560867195ada039cb62b763afc58e5e234425db39297a9f586a0249c59bca5199e78d5f219861 SHA512 feaf86d0382c199f7a443bffd4d083e635ab3e9c535b535b426c447a8e25f2ddbaac39965038eb1b9cac12132a9c19c7b86c5670863dc4e93d3aa1f4ecebf369 -DIST G4PARTICLEXS.2.0.tar.gz 4597118 BLAKE2B bc93da5bd9d8384c84056092ff404b93d5f28c88777365e514b6e8f17504a836036e98a469fe5e56123ea34f2846351b9441a01e9711ceef4f392438011bf4c3 SHA512 c3bff7f60f9ed7b0ebfecfc71a2415980b94b924827c5bbc964257d522318743765ebe826e9ab4d41cc856c65ceb7be6e2033a5d47bac036b50a21b51f7e8416 DIST G4PARTICLEXS.2.1.tar.gz 4600435 BLAKE2B 7132411824d9d3f47b5a4b1fced0a4099baed6a91596661d74ba540b91b5d12e475eb5bb364b8be7457592136fe2c629c98a9f8015a7b6fbd380c8c720078cd5 SHA512 b96c62a4cfd654381cf57eddcff10902ce42327a500eee007dc01ce4fbda6da44905d00ed9731740f6ff2ad2177194d7098b675bb7b72deba16394add81028c1 DIST G4PII.1.3.tar.gz 4293607 BLAKE2B 1ddf90c0e49ea51129b08bf6eb3cdf62f88abe19325e8aec76f156da32602c0498ddee36d1598035fa21df95f9d86b99137f9a6f49d7c9ef2b8eb6081db233b1 SHA512 dc458f5845948f54315477886d28fd51ea2d45f3675f45d42e8352cc5961705d920d200097dc9b55ad826ff426a655258b970ddd5a96867f706eb14e9ebbfd1a -DIST G4PhotonEvaporation.5.3.tar.gz 9877289 BLAKE2B a7c76c2b85f1006f2336b37d743f76fb8eaa1730d3d1f34b15ee34a7af09b4811c0a57cd661ad4a627f0424edb94b6126cdc7ef63dc4beb2ad3ea0f24b096de6 SHA512 19038cc64eaa07a996f5ae2a73b82cb3b02996880ae3b72a0d24c2b9058a53683b99b4ed1f265fd1d4d37fe9e72329d0fbe08e40f7b9d007b69aa68a3b6eb719 DIST G4PhotonEvaporation.5.5.tar.gz 10087354 BLAKE2B c336b015c0fe8471e899b95d66c3feb3a1b9aeac01010bd840a9d9bf88b7e91924c9f2d17e5626451be8841f5b95ddf10540e05305269a97608b339d6cd5cf78 SHA512 50c27edbcc271e5af353addc08132470df9b5efdeeece8c980d8d449adea6996109b880cd9cac0abab6e0a65e8c3f5c32ac7dc998a7760196bc862ccfc87f0bd -DIST G4RadioactiveDecay.5.3.tar.gz 1022013 BLAKE2B a9470e3cf1eb50c0e79d5c136e88b94c83123a1ed7f88da7eada669a7c3497ab54a647f6a4b84a11904ffcfb4194503bd6fa660127351c958f3b18dcd2919a29 SHA512 a11169de1044eae15e4f5ca43ec25e917aa31b901ab1bdc3055cb999281124f4b98a8c20e53043c012f1e7572172467209ec306c21770f66e7039f7199cffc5a DIST G4RadioactiveDecay.5.4.tar.gz 1059968 BLAKE2B 5093ca0c7e529c1f1ddb732f6d2ddb24b7533d266a325601271a73fff23fe05b57a591a5ca229e1c479c5d85dfe3a40aa00869231976e9ecf2976679030a8027 SHA512 2462c8f1503a4dde96c62d9644155a5c7de4430251c06f76b8e3dd35df98d96e34687c77cc11a9be198b918ad64585a10a81a0fef4ff26d63f0737b5b1254f17 DIST G4RealSurface.2.1.1.tar.gz 133386050 BLAKE2B 68fb3ebadabe0c04a34279c9ff3a15545cfcf05ea18324d0fa776f4616feaeea2cd26af61d0078204c95c819d247963b416326433fda1e96a2918f23d4b2ff02 SHA512 f7755b41e30f8728710cf878d8783df9ac07d5394d0cf3358d9f4f6f4f73b9563c22657bdd9cf4ee7bebb9823fa530d86a64d2e0acbca77a80a411786c6b7202 DIST G4SAIDDATA.2.0.tar.gz 38502 BLAKE2B 349608f8f8f57b091579b4892f1547c25f0c730fe8b22de3a7355f45ea08232c3ab12af64583cf4d48528b54489d0c71c724066715592766a2a51a1a6d4eb745 SHA512 cb192c10cc9805ab8d57d5f6dca595f85ac628ccac5b975b5d8ff965ed3841b9b01071ffa76469c9a03f9ca564267f5c4a300f13d8df5056b43cd71c669bd35c diff --git a/sci-physics/geant-data/geant-data-4.10.05.ebuild b/sci-physics/geant-data/geant-data-4.10.05.ebuild deleted file mode 100644 index df59a575cc3f..000000000000 --- a/sci-physics/geant-data/geant-data-4.10.05.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Data files for Geant4 physical processes" -HOMEPAGE="http://geant4.cern.ch/" - -GEANT4_DATA=" - G4NDL.4.5 - G4EMLOW.7.7 - G4PhotonEvaporation.5.3 - G4RadioactiveDecay.5.3 - G4SAIDDATA.2.0 - G4PARTICLEXS.1.1 - G4ABLA.3.1 - G4INCL.1.0 - G4PII.1.3 - G4ENSDFSTATE.2.2 - G4RealSurface.2.1.1 - G4TENDL.1.3.2" - -SRC_COM="http://geant4.cern.ch/support/source" -for d in ${GEANT4_DATA}; do - SRC_URI="${SRC_URI} ${SRC_COM}/${d}.tar.gz" -done -unset d - -LICENSE="geant4" -SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=">=sci-physics/geant-${PV}:4" -DEPEND="${RDEPEND}" - -S="${WORKDIR}" - -src_unpack() { - # unpack in destination only to avoid copy - return -} - -src_install() { - sed -n "s,export \(G4.\+DATA=\"\).*\(/share/Geant.\+/data/.\+\) > /dev/null ; pwd\`,\1${EPREFIX}/usr\2,p" \ - "${EPREFIX}/usr/bin/geant4.sh" > 99geant-data || die - doenvd 99geant-data - local g4dir=/usr/$(sed -n 's|.*/\(share/Geant4.*/data\).*|\1|p' "${EPREFIX}/usr/bin/geant4.sh" | tail -n 1) - dodir ${g4dir} - cd "${ED%/}/${g4dir}" || die - unpack ${A} -} diff --git a/sci-physics/geant-data/geant-data-4.10.6-r1.ebuild b/sci-physics/geant-data/geant-data-4.10.6-r1.ebuild index 7ad85c9daf0b..807a0dc104e8 100644 --- a/sci-physics/geant-data/geant-data-4.10.6-r1.ebuild +++ b/sci-physics/geant-data/geant-data-4.10.6-r1.ebuild @@ -32,7 +32,7 @@ unset DATASET FILENAME VERSION ENVVAR LICENSE="geant4" SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}" diff --git a/sci-physics/geant-data/geant-data-4.10.6_beta1-r1.ebuild b/sci-physics/geant-data/geant-data-4.10.6.3.ebuild similarity index 80% rename from sci-physics/geant-data/geant-data-4.10.6_beta1-r1.ebuild rename to sci-physics/geant-data/geant-data-4.10.6.3.ebuild index ae4afb781774..ae7c1d2b919d 100644 --- a/sci-physics/geant-data/geant-data-4.10.6_beta1-r1.ebuild +++ b/sci-physics/geant-data/geant-data-4.10.6.3.ebuild @@ -10,11 +10,11 @@ SRC_DATA="https://geant4-data.web.cern.ch/geant4-data/datasets" declare -A DATASETS DATASETS=( - [G4NDL]="G4NDL 4.5 G4NEUTRONHPDATA" - [G4EMLOW]="G4EMLOW 7.7 G4LEDATA" - [PhotonEvaporation]="G4PhotonEvaporation 5.3 G4LEVELGAMMADATA" - [RadioactiveDecay]="G4RadioactiveDecay 5.3 G4RADIOACTIVEDATA" - [G4PARTICLEXS]="G4PARTICLEXS 2.0 G4PARTICLEXSDATA" + [G4NDL]="G4NDL 4.6 G4NEUTRONHPDATA" + [G4EMLOW]="G4EMLOW 7.9.1 G4LEDATA" + [PhotonEvaporation]="G4PhotonEvaporation 5.5 G4LEVELGAMMADATA" + [RadioactiveDecay]="G4RadioactiveDecay 5.4 G4RADIOACTIVEDATA" + [G4PARTICLEXS]="G4PARTICLEXS 2.1 G4PARTICLEXSDATA" [G4PII]="G4PII 1.3 G4PIIDATA" [RealSurface]="G4RealSurface 2.1.1 G4REALSURFACEDATA" [G4SAIDDATA]="G4SAIDDATA 2.0 G4SAIDXSDATA" @@ -32,7 +32,7 @@ unset DATASET FILENAME VERSION ENVVAR LICENSE="geant4" SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}" diff --git a/sci-physics/geant-data/geant-data-4.10.6_p1-r1.ebuild b/sci-physics/geant-data/geant-data-4.10.6_p1-r1.ebuild index 23e22d50b309..ae7c1d2b919d 100644 --- a/sci-physics/geant-data/geant-data-4.10.6_p1-r1.ebuild +++ b/sci-physics/geant-data/geant-data-4.10.6_p1-r1.ebuild @@ -32,7 +32,7 @@ unset DATASET FILENAME VERSION ENVVAR LICENSE="geant4" SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}" diff --git a/sci-physics/geant-data/metadata.xml b/sci-physics/geant-data/metadata.xml index 511a1b08ef9e..9d7f4b218bef 100644 --- a/sci-physics/geant-data/metadata.xml +++ b/sci-physics/geant-data/metadata.xml @@ -1,16 +1,16 @@ - - amadio@gentoo.org - Guilherme Amadio - - - sci-physics@gentoo.org - Gentoo Physics Project - - - For specific, optional physics processes, Geant4 uses extra data - which are being installed with this package. - + + amadio@gentoo.org + Guilherme Amadio + + + sci-physics@gentoo.org + Gentoo Physics Project + + + For specific, optional physics processes, Geant4 uses extra data + which are being installed with this package. + diff --git a/sci-physics/geant/Manifest b/sci-physics/geant/Manifest index e011c6b858f1..b3df16fbb6b6 100644 --- a/sci-physics/geant/Manifest +++ b/sci-physics/geant/Manifest @@ -1,5 +1,4 @@ -DIST geant4.10.05.p01.tar.gz 34413415 BLAKE2B d98a9308e37f166dccf8f9640a54ee74ab2b1d07275609666aec6d929b0193269a18075762cebaa154abcad5c8359a128b6629ff973cb6cdc8f54535151997a3 SHA512 ace2097251ee4cdda3511c3dd8191c97e1001f73d421797e3cd517ed41fa5adc73efcddfb2c8b6fb75231e5af8ddb4bd63a402ccb99b40ce2c140588d328b582 -DIST geant4.10.06.b01.tar.gz 34511064 BLAKE2B d20bd338ea0ac47b11464b581aa0dec3725da56902dbaab233fcaad28ba6b3ce302a8d7e2c27f4532bed2db991467b4bde837675f3837f066c9e7e3d78c7acd6 SHA512 3916a0ad13891fc5a189c0be6c2e57abe29281696c9d16c0c54fd11940146586feb550a61403ab6451e6575d2ad1f4349590d9c564d7b5d7fc5ab9e9b2356ccb DIST geant4.10.06.p01.tar.gz 34869969 BLAKE2B 0a27f34df213a0dcc2d87c6001c100269be7496519c614fa5b51cd6502d98232d09de0f3c44216c34b6788ec8a1f626d22a53cb7329027006c614a10777b6896 SHA512 d9bca66b086a309a577dcf018c0ca52f5d786b1ebe5ce9d30c29c579c342399816c34efbcb34af60871145b6713cb8151f5517c5a0aa9d24d00e4257a5c1c6c0 DIST geant4.10.06.p02.tar.gz 34833550 BLAKE2B c1a3b51cf5fc135edd8f547e5a88c80f8f6ed991be92439e161225afa0447473b67c0ef0757011e1e3a22a370f43ad9b14c9fe9cb3d5f5f0a78a762c86e0dd80 SHA512 bcfbea05c88a6021898e361ffa0c8e28637631e65b2f9ae2d694deae36a67c6af78785569c5971d1c63a4692a3dfbfc082cf14d7af209cb9f36efff9bec9bc20 +DIST geant4.10.06.p03.tar.gz 35099426 BLAKE2B 75668b87eb3f1d8be00c46dc3e6e2131707ad89f4d077d2c55b7c985803709da565dbddd2ebd6ee7b6a3f4d58dc84a41bcded3b1db926127b480fb8e9fab2765 SHA512 844769991e20f4397a336a8e94bb82434b4ce44c84c956935659d2407ebf29b388b672650466f9683d3c99f9c7fa4f2c81e3f27075427f1613d825f38a74df69 DIST geant4.10.06.tar.gz 34834510 BLAKE2B 48f50c734186e444f5ef2fd02b013565db7f404b7fbaeb3127d7dd67ede76196fd5fa4512a5482cceb7696305eb72dbe819fe43fa26ac63ded49259d804f5ccf SHA512 e03d69cb66947ddc71d20b9065fd5db384dfc8b2b8e905ddab9ebb992c642dc33f369d7eba5f2338487da5d9d28f20f3078917f222d187c65e5af1a0112ee044 diff --git a/sci-physics/geant/geant-4.10.05_p01.ebuild b/sci-physics/geant/geant-4.10.05_p01.ebuild deleted file mode 100644 index b8111ecf55c6..000000000000 --- a/sci-physics/geant/geant-4.10.05_p01.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils eapi7-ver - -MY_P=${PN}${PV/_/.} -SPV="$(ver_cut 1-2).$(printf %1d $(ver_cut 3))" - -DESCRIPTION="Toolkit for simulation of passage of particles through matter" -HOMEPAGE="http://geant4.web.cern.ch/" -SRC_URI="http://geant4.cern.ch/support/source/${MY_P}.tar.gz" - -LICENSE="geant4" -SLOT="4" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+data dawn doc examples gdml geant3 inventor motif opengl - qt5 raytracerx static-libs threads vrml zlib" - -RDEPEND=" - dev-libs/expat - >=sci-physics/clhep-2.3.3.0:2= - dawn? ( media-gfx/dawn ) - gdml? ( dev-libs/xerces-c ) - inventor? ( media-libs/SoXt ) - motif? ( x11-libs/motif:0 ) - opengl? ( virtual/opengl ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5 - dev-qt/qtwidgets:5 - opengl? ( dev-qt/qtopengl:5 ) - ) - raytracerx? ( - x11-libs/libX11 - x11-libs/libXmu - ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} prefix? ( app-shells/tcsh )" -PDEPEND=" - data? ( ~sci-physics/geant-data-${PV/_p*/} ) - doc? ( ~app-doc/geant-docs-${PV/_p*/} )" - -HTML_DOCS=( ReleaseNotes/ReleaseNotes${SPV}.html ) - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - cmake-utils_src_prepare - - if ! use examples; then - sed -i '/install(DIRECTORY examples/,/)/d' CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DGEANT4_USE_SYSTEM_CLHEP=ON - -DGEANT4_INSTALL_DATA=OFF - -DGEANT4_BUILD_MULTITHREADED=$(usex threads) - -DGEANT4_BUILD_TLS_MODEL=$(usex threads global-dynamic initial-exec) - -DGEANT4_USE_NETWORKDAWN=$(usex dawn) - -DGEANT4_USE_GDML=$(usex gdml) - -DGEANT4_USE_G3TOG4=$(usex geant3) - -DGEANT4_USE_XM=$(usex motif) - -DGEANT4_USE_OPENGL_X11=$(usex opengl) - -DGEANT4_USE_INVENTOR=$(usex inventor) - -DGEANT4_USE_QT=$(usex qt5) - -DGEANT4_USE_RAYTRACER_X11=$(usex raytracerx) - -DGEANT4_USE_NETWORKVRML=$(usex vrml) - -DGEANT4_USE_SYSTEM_ZLIB=$(usex zlib) - -DBUILD_STATIC_LIBS=$(usex static-libs) - ) - if use inventor; then - mycmakeargs+=( - -DINVENTOR_INCLUDE_DIR="$(coin-config --includedir)" - -DINVENTOR_SOXT_INCLUDE_DIR="$(coin-config --includedir)" - ) - fi - cmake-utils_src_configure -} - -src_install() { - # adjust clhep linking flags for system clhep - # binmake.gmk is only useful for legacy build systems - sed -i -e 's/-lG4clhep/-lCLHEP/' config/binmake.gmk || die - cmake-utils_src_install - [[ -f ReleaseNotes/Patch${SPV}-1.txt ]] && DOCS+=( ReleaseNotes/Patch${SPV}-*.txt ) - einstalldocs -} - -pkg_postinst() { - elog "The following scripts are provided for backward compatibility:" - elog "$(ls -1 ${EROOT%/}/usr/share/${PN^}${SPV}.*/geant4make/*sh)" -} diff --git a/sci-physics/geant/geant-4.10.6_beta1-r1.ebuild b/sci-physics/geant/geant-4.10.6.3.ebuild similarity index 89% rename from sci-physics/geant/geant-4.10.6_beta1-r1.ebuild rename to sci-physics/geant/geant-4.10.6.3.ebuild index 59fedc8d7cc8..2f580bb7015f 100644 --- a/sci-physics/geant/geant-4.10.6_beta1-r1.ebuild +++ b/sci-physics/geant/geant-4.10.6.3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake MY_P=${PN}$(ver_cut 1-2).$(printf %02d $(ver_cut 3)) @@ -12,12 +12,11 @@ case ${PV} in MY_P+=.b$(printf %02d $(ver_cut 5)) DOCS="ReleaseNotes/Beta$(ver_cut 1-3)-*.txt" ;; -*_p*) - MY_P+=.p$(printf %02d $(ver_cut 5)) - DOCS="ReleaseNotes/Patch$(ver_cut 1-3)-*.txt" - HTML_DOCS="ReleaseNotes/ReleaseNotes$(ver_cut 1-3).html" - ;; *) + if [[ $(ver_cut 4) -gt 0 ]]; then + MY_P+=.p$(printf %02d $(ver_cut 4)) + DOCS="ReleaseNotes/Patch$(ver_cut 1-3)-*.txt" + fi HTML_DOCS="ReleaseNotes/ReleaseNotes$(ver_cut 1-3).html" ;; esac @@ -39,7 +38,7 @@ RDEPEND=" >=sci-physics/clhep-2.4.1.3:2=[threads?] data? ( ~sci-physics/geant-data-${PV} ) dawn? ( media-gfx/dawn ) - doc? ( ~app-doc/geant-docs-$(ver_cut 1-3) ) + doc? ( =app-doc/geant-docs-$(ver_cut 1-3)* ) gdml? ( dev-libs/xerces-c ) hdf5? ( sci-libs/hdf5[threads?] ) inventor? ( media-libs/SoXt ) @@ -57,8 +56,6 @@ RDEPEND=" x11-libs/libXmu )" -PATCHES=( "${FILESDIR}"/geant-4.10.6-datadir.patch ) - S="${WORKDIR}/${MY_P}" src_configure() { @@ -66,10 +63,13 @@ src_configure() { -DCMAKE_INSTALL_DATADIR="${EPREFIX}/usr/share/geant4" -DGEANT4_BUILD_CXXSTD=$((usev c++11 || usev c++14 || usev c++17) | cut -c4-) -DGEANT4_BUILD_MULTITHREADED=$(usex threads) + -DGEANT4_BUILD_STORE_TRAJECTORY=OFF -DGEANT4_BUILD_TLS_MODEL=$(usex threads global-dynamic initial-exec) + -DGEANT4_BUILD_VERBOSE_CODE=OFF -DGEANT4_INSTALL_DATA=OFF -DGEANT4_INSTALL_DATADIR="${EPREFIX}/usr/share/geant4/data" -DGEANT4_INSTALL_EXAMPLES=$(usex examples) + -DGEANT4_INSTALL_PACKAGE_CACHE=OFF -DGEANT4_USE_FREETYPE=$(usex freetype) -DGEANT4_USE_G3TOG4=$(usex geant3) -DGEANT4_USE_GDML=$(usex gdml) @@ -94,14 +94,14 @@ src_configure() { -DINVENTOR_SOXT_INCLUDE_DIR="$(coin-config --includedir)" ) fi - cmake-utils_src_configure + cmake_src_configure } src_install() { # adjust clhep linking flags for system clhep # binmake.gmk is only useful for legacy build systems sed -i -e 's/-lG4clhep/-lCLHEP/' config/binmake.gmk || die - cmake-utils_src_install + cmake_src_install rm "${ED}"/usr/bin/*.{sh,csh} || die "failed to remove obsolete shell scripts" einstalldocs diff --git a/sci-physics/root/Manifest b/sci-physics/root/Manifest index 0f54fac2c5ff..6f3ae9026c0e 100644 --- a/sci-physics/root/Manifest +++ b/sci-physics/root/Manifest @@ -1,5 +1,2 @@ -DIST root_v6.18.04.source.tar.gz 165938450 BLAKE2B d6545dfa95817940f2bb6b5b49252eca1958df518a4bc05c4857df60a015a39d0df09ea077465533e6ebc815d04e1742da19d18b7af02b5446f9e73dc92e3c16 SHA512 cfcbdd2db4edf55845a7cd1e6ec0cdf714a7ceacb039fa6fb627d7300d6f849b3b462bab724e33b1d6b08eb22ba42c43b7d64c0c6c47dc8a3bb652f86979f2c6 -DIST root_v6.20.06.source.tar.gz 168216335 BLAKE2B a0a51f11e6dcc3a6ba657a8b946507bb857088bce3102f5330a0df455fec468ee4228f5394795f3e3b1ee3434b7ddda85f08039bf603a531154c28b335ff803c SHA512 232fd5253e83eb02ad33d03941c7c83d39d5f6b0162bd42594e44a0c1c08deade42ae5793e571db767ce4fa0a582aa332b9d1869e621b825d1eb1162819c98c6 DIST root_v6.20.08.source.tar.gz 168218062 BLAKE2B 79b1eb89f1003c140a60d47e9d447576ad215e66321a265ed047b069d05f008cf8f0d23df99ed35a8ee5a802e5de5a42122e8f1c075b01ef74eb11926a1b31d7 SHA512 205d5ae94a6c1b6e1a479a8631d5a9bab4a9f76c396cf3ed2c23a26c767a5a892a087b872a69853ada0f84e60a6015f732342c5f48acc696cb626528748f81fe -DIST root_v6.22.00.source.tar.gz 173014392 BLAKE2B a59071ee5b13466505323fca30fe656668a243006239e7f9ebc71bb21a7fe244cafe6d33ff4579b67920c9102eb36344f20415079bb627834fb8a57d9117476d SHA512 9e3c54bbc146b0abb0a2d960af380255ec59d0b3a11a4a97a2a25cb7ac567b07280c4eb48dddf99c1fa2e692881f6396a842ce125d3a253037e52f719739f01e -DIST root_v6.22.02.source.tar.gz 173033408 BLAKE2B c7e3719b612093386fddecbfd098c428345d3562537c2dc546e12b9da62fa6f2cc776a5314ae1257eeaaa498af29236520931ea3f6dd5ad3e03095bc117da125 SHA512 0a0ffbcee2ef971bebf32bc38a247ea981f56721314bc2eab69cfe66ae86eafb00568c475b41b2ae7db7ad25f0c8b0953e10f1841316a49cf62fbad664ccee17 +DIST root_v6.22.04.source.tar.gz 173070733 BLAKE2B 7f2f2c2c01c4144656c517186b64479ad3ac2a8262da3e55ad8c3f446677d3ce00165d182dec33a744351c666fedc9adb87c0fa0f7165eba3400a40d80214bda SHA512 aad5901f0c621fd0fa3865da93348420545c86f75bef5459240d6de63bf3312906a329537bc93c35d58a20d1bb90205bb6fff2d88e8c83ff61a30209fd77416b diff --git a/sci-physics/root/metadata.xml b/sci-physics/root/metadata.xml index 85a5b09bdff4..453df091a133 100644 --- a/sci-physics/root/metadata.xml +++ b/sci-physics/root/metadata.xml @@ -32,9 +32,7 @@ Enable GDML writer and reader Enable http server support including but not limited to fastcgi support Build ROOT against sys-libs/libcxx - Build memory statistics library, helps to detect memory leaks Build ROOT's internal versions of minuit (fortran) and minuit2 (C++) - Disable ROOT's splash screen by default Build the interface for sci-physics/pythia version 6.x Build the interface for sci-physics/pythia version 8.x Enable support for dev-lang/R diff --git a/sci-physics/root/root-6.18.04-r3.ebuild b/sci-physics/root/root-6.18.04-r3.ebuild deleted file mode 100644 index 45eb62c6d7da..000000000000 --- a/sci-physics/root/root-6.18.04-r3.ebuild +++ /dev/null @@ -1,304 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# ninja does not work due to fortran -CMAKE_MAKEFILE_GENERATOR=emake -FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{6,7} ) - -inherit cmake-utils cuda eapi7-ver elisp-common eutils fortran-2 \ - prefix python-single-r1 toolchain-funcs - -DESCRIPTION="C++ data analysis framework and interpreter from CERN" -HOMEPAGE="https://root.cern" -SRC_URI="https://root.cern/download/${PN}_v${PV}.source.tar.gz" - -IUSE="+X aqua +asimage +c++11 c++14 c++17 cuda +davix debug emacs - +examples fits fftw fortran +gdml graphviz +gsl http jemalloc - libcxx memstat +minuit mysql nosplash odbc +opengl oracle postgres - prefix pythia6 pythia8 +python qt5 R +roofit root7 shadow sqlite - +ssl +tbb test +threads +tiff +tmva +unuran vc +vmc +xml xrootd" -RESTRICT="!test? ( test )" - -SLOT="$(ver_cut 1-2)/$(ver_cut 3)" -LICENSE="LGPL-2.1 freedist MSttfEULA LGPL-3 libpng UoI-NCSA" -KEYWORDS="amd64 x86" - -REQUIRED_USE=" - ^^ ( c++11 c++14 c++17 ) - cuda? ( tmva !c++17 ) - !X? ( !asimage !opengl !qt5 !tiff ) - davix? ( ssl xml ) - python? ( ${PYTHON_REQUIRED_USE} ) - qt5? ( root7 ) - root7? ( || ( c++14 c++17 ) ) - tmva? ( gsl ) -" - -CDEPEND=" - app-arch/lz4 - app-arch/xz-utils - fortran? ( dev-lang/cfortran ) - dev-libs/libpcre:3 - dev-libs/xxhash - media-fonts/dejavu - media-libs/freetype:2 - media-libs/libpng:0= - sys-libs/ncurses:= - sys-libs/zlib - X? ( - x11-libs/libX11:0 - x11-libs/libXext:0 - x11-libs/libXft:0 - x11-libs/libXpm:0 - opengl? ( - media-libs/ftgl:0= - media-libs/glew:0= - virtual/opengl - virtual/glu - x11-libs/gl2ps:0= - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwebengine:5[widgets] - ) - ) - asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff?] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) - davix? ( net-libs/davix ) - emacs? ( >=app-editors/emacs-23.1:* ) - fftw? ( sci-libs/fftw:3.0= ) - fits? ( sci-libs/cfitsio:0= ) - graphviz? ( media-gfx/graphviz ) - gsl? ( sci-libs/gsl:= ) - http? ( dev-libs/fcgi:0= ) - jemalloc? ( dev-libs/jemalloc ) - libcxx? ( sys-libs/libcxx ) - unuran? ( sci-mathematics/unuran:0= ) - minuit? ( !sci-libs/minuit ) - mysql? ( dev-db/mysql-connector-c ) - odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) - oracle? ( dev-db/oracle-instantclient-basic ) - postgres? ( dev-db/postgresql:= ) - pythia6? ( sci-physics/pythia:6 ) - pythia8? ( sci-physics/pythia:8 ) - python? ( ${PYTHON_DEPS} ) - R? ( dev-lang/R ) - shadow? ( sys-apps/shadow ) - sqlite? ( dev-db/sqlite:3 ) - ssl? ( dev-libs/openssl:0= ) - tbb? ( >=dev-cpp/tbb-2018 ) - tmva? ( - $(python_gen_cond_dep ' - dev-python/numpy[${PYTHON_MULTI_USEDEP}] - ') - ) - vc? ( dev-libs/vc:= ) - xml? ( dev-libs/libxml2:2= ) - xrootd? ( 100MB in total) that don't -# really belong there, we install it into another directory to avoid -# making /etc too big. - -src_configure() { - local mycmakeargs=( - -DCMAKE_C_FLAGS="${CFLAGS}" - -DCMAKE_CXX_FLAGS="${CXXFLAGS}" - -DCMAKE_CXX_STANDARD=$((usev c++11 || usev c++14 || usev c++17) | cut -c4-) - -DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)/share/man" - -DCMAKE_INSTALL_LIBDIR="lib" - -DDEFAULT_SYSROOT="${EPREFIX}" - -DCLING_BUILD_PLUGINS=OFF - -Dexplicitlink=ON - -Dexceptions=ON - -Dfail-on-missing=ON - -Dgnuinstall=OFF - -Dshared=ON - -Dsoversion=ON - -Dbuiltin_llvm=ON - -Dbuiltin_clang=ON - -Dbuiltin_afterimage=OFF - -Dbuiltin_cfitsio=OFF - -Dbuiltin_davix=OFF - -Dbuiltin_fftw3=OFF - -Dbuiltin_freetype=OFF - -Dbuiltin_ftgl=OFF - -Dbuiltin_gl2ps=OFF - -Dbuiltin_glew=OFF - -Dbuiltin_gsl=OFF - -Dbuiltin_lz4=OFF - -Dbuiltin_lzma=OFF - -Dbuiltin_openssl=OFF - -Dbuiltin_pcre=OFF - -Dbuiltin_tbb=OFF - -Dbuiltin_unuran=OFF - -Dbuiltin_vc=OFF - -Dbuiltin_vdt=OFF - -Dbuiltin_veccore=OFF - -Dbuiltin_xrootd=OFF - -Dbuiltin_xxhash=OFF - -Dbuiltin_zlib=OFF - -Dx11=$(usex X) - -Dxft=$(usex X) - -Dalien=OFF - -Darrow=OFF - -Dasimage=$(usex asimage) - -Dastiff=$(usex tiff) - -Dlibcxx=$(usex libcxx) - -Dccache=OFF # use ccache via portage - -Dcefweb=OFF - -Dchirp=OFF - -Dclad=OFF - -Dcling=ON # cling=OFF is broken - -Dcocoa=$(usex aqua) - -Dcuda=$(usex cuda) - -Dcxxmodules=OFF # requires clang, unstable - -Ddavix=$(usex davix) - -Ddcache=OFF - -Dfftw3=$(usex fftw) - -Dfitsio=$(usex fits) - -Dfortran=$(usex fortran) - -Dftgl=$(usex opengl) - -Dgdml=$(usex gdml) - -Dgenvector=ON # genvector=OFF ignored - -Dgeocad=OFF - -Dgfal=OFF - -Dgl2ps=$(usex opengl) - -Dgminimal=OFF - -Dgsl_shared=$(usex gsl) - -Dgviz=$(usex graphviz) - -Dhttp=$(usex http) - -Dimt=$(usex tbb) - -Djemalloc=$(usex jemalloc) - -Dmathmore=$(usex gsl) - -Dmemstat=$(usex memstat) - -Dminimal=OFF - -Dminuit2=$(usex minuit) - -Dminuit=$(usex minuit) - -Dmonalisa=OFF - -Dmysql=$(usex mysql) - -Dodbc=$(usex odbc) - -Dopengl=$(usex opengl) - -Doracle=$(usex oracle) - -Dpch=ON # pch=OFF is broken - -Dpgsql=$(usex postgres) - -Dpythia6=$(usex pythia6) - -Dpythia8=$(usex pythia8) - -Dpython=$(usex python) - -Dqt5web=$(usex qt5) - -Droofit=$(usex roofit) - -Droot7=$(usex root7) - -Drootbench=OFF - -Droottest=OFF - -Drpath=OFF - -Druntime_cxxmodules=OFF # does not work yet - -Dr=$(usex R) - -Dshadowpw=$(usex shadow) - -Dsqlite=$(usex sqlite) - -Dssl=$(usex ssl) - -Dtcmalloc=OFF - -Dtesting=$(usex test) - -Dthread=$(usex threads) - -Dtmva=$(usex tmva) - -Dtmva-cpu=$(usex tmva) - -Dtmva-gpu=$(usex cuda) - -Dunuran=$(usex unuran) - -Dvc=$(usex vc) - -Dvmc=$(usex vmc) - -Dvdt=OFF - -Dveccore=OFF - -Dxml=$(usex xml) - -Dxrootd=$(usex xrootd) - ${EXTRA_ECONF} - ) - - CMAKE_BUILD_TYPE=$(usex debug Debug Release) \ - cmake-utils_src_configure -} - -src_compile() { - # needed for hsimple.root - addwrite /dev/random - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - - ROOTSYS=${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2) - ROOTENV=$((9999 - $(ver_cut 2)))${PN}-$(ver_cut 1-2) - - cat > ${ROOTENV} <<- EOF || die - MANPATH="${ROOTSYS}/share/man" - PATH="${ROOTSYS}/bin" - ROOTPATH="${ROOTSYS}/bin" - LDPATH="${ROOTSYS}/lib" - EOF - - if use python; then - echo "PYTHONPATH=\"${ROOTSYS}/lib\"" >> ${ROOTENV} || die - fi - - doenvd ${ROOTENV} - - if use emacs; then - elisp-install ${PN}-$(ver_cut 1-2) "${BUILD_DIR}"/root-help.el - fi - - pushd "${D}/${ROOTSYS}" > /dev/null - - rm -r emacs bin/*.{csh,sh,fish} || die - - if ! use examples; then - rm -r tutorials || die - fi - - # create versioned symlinks for binaries - cd bin; - for exe in *; do - dosym "${exe}" "/usr/lib/${PN}/$(ver_cut 1-2)/bin/${exe}-$(ver_cut 1-2)" - done -} diff --git a/sci-physics/root/root-6.20.06.ebuild b/sci-physics/root/root-6.20.06.ebuild deleted file mode 100644 index b87d8f13f490..000000000000 --- a/sci-physics/root/root-6.20.06.ebuild +++ /dev/null @@ -1,306 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# ninja does not work due to fortran -CMAKE_MAKEFILE_GENERATOR=emake -FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake cuda elisp-common fortran-2 prefix python-single-r1 toolchain-funcs - -DESCRIPTION="C++ data analysis framework and interpreter from CERN" -HOMEPAGE="https://root.cern" -SRC_URI="https://root.cern/download/${PN}_v${PV}.source.tar.gz" - -IUSE="+X aqua +asimage +c++11 c++14 c++17 cuda cudnn +davix debug emacs - +examples fits fftw fortran +gdml graphviz +gsl http libcxx +minuit - mpi mysql odbc +opengl oracle postgres prefix pythia6 pythia8 +python - qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva +unuran vc - vmc +xml xrootd" -RESTRICT="!test? ( test )" - -SLOT="$(ver_cut 1-2)/$(ver_cut 3)" -LICENSE="LGPL-2.1 freedist MSttfEULA LGPL-3 libpng UoI-NCSA" -KEYWORDS="~amd64 ~x86" - -REQUIRED_USE=" - ^^ ( c++11 c++14 c++17 ) - cuda? ( tmva ) - cudnn? ( cuda ) - !X? ( !asimage !opengl !qt5 ) - davix? ( ssl xml ) - python? ( ${PYTHON_REQUIRED_USE} ) - qt5? ( root7 ) - root7? ( || ( c++14 c++17 ) ) - tmva? ( gsl ) -" - -CDEPEND=" - app-arch/lz4 - app-arch/zstd - app-arch/xz-utils - fortran? ( dev-lang/cfortran ) - dev-libs/libpcre:3 - dev-libs/xxhash - media-fonts/dejavu - media-libs/freetype:2 - media-libs/libpng:0= - sys-libs/ncurses:= - sys-libs/zlib - X? ( - x11-libs/libX11:0 - x11-libs/libXext:0 - x11-libs/libXft:0 - x11-libs/libXpm:0 - opengl? ( - media-libs/ftgl:0= - media-libs/glew:0= - virtual/opengl - virtual/glu - x11-libs/gl2ps:0= - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwebengine:5[widgets] - ) - ) - asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) - cudnn? ( dev-libs/cudnn ) - davix? ( net-libs/davix ) - emacs? ( >=app-editors/emacs-23.1:* ) - fftw? ( sci-libs/fftw:3.0= ) - fits? ( sci-libs/cfitsio:0= ) - graphviz? ( media-gfx/graphviz ) - gsl? ( sci-libs/gsl:= ) - http? ( dev-libs/fcgi:0= ) - libcxx? ( sys-libs/libcxx ) - unuran? ( sci-mathematics/unuran:0= ) - minuit? ( !sci-libs/minuit ) - mpi? ( virtual/mpi ) - mysql? ( dev-db/mysql-connector-c ) - odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) - oracle? ( dev-db/oracle-instantclient-basic ) - postgres? ( dev-db/postgresql:= ) - pythia6? ( sci-physics/pythia:6 ) - pythia8? ( sci-physics/pythia:8 ) - python? ( ${PYTHON_DEPS} ) - R? ( dev-lang/R ) - shadow? ( sys-apps/shadow ) - sqlite? ( dev-db/sqlite:3 ) - ssl? ( dev-libs/openssl:0= ) - tbb? ( >=dev-cpp/tbb-2018 ) - tmva? ( - $(python_gen_cond_dep ' - dev-python/numpy[${PYTHON_MULTI_USEDEP}] - ') - ) - vc? ( dev-libs/vc:= ) - xml? ( dev-libs/libxml2:2= ) - xrootd? ( 100MB in total) that don't -# really belong there, we install it into another directory to avoid -# making /etc too big. - -src_configure() { - local mycmakeargs=( - -DCMAKE_C_COMPILER=$(tc-getCC) - -DCMAKE_CXX_COMPILER=$(tc-getCXX) - -DCMAKE_CUDA_HOST_COMPILER=$(tc-getCXX) - -DCMAKE_C_FLAGS="${CFLAGS}" - -DCMAKE_CXX_FLAGS="${CXXFLAGS}" - -DCMAKE_CXX_STANDARD=$((usev c++11 || usev c++14 || usev c++17) | cut -c4-) - -DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)/share/man" - -DCMAKE_INSTALL_LIBDIR="lib" - -DDEFAULT_SYSROOT="${EPREFIX}" - -DCLING_BUILD_PLUGINS=OFF - -Dexceptions=ON - -Dfail-on-missing=ON - -Dgnuinstall=OFF - -Dshared=ON - -Dsoversion=ON - -Dbuiltin_llvm=ON - -Dbuiltin_clang=ON - -Dbuiltin_afterimage=OFF - -Dbuiltin_cfitsio=OFF - -Dbuiltin_davix=OFF - -Dbuiltin_fftw3=OFF - -Dbuiltin_freetype=OFF - -Dbuiltin_ftgl=OFF - -Dbuiltin_gl2ps=OFF - -Dbuiltin_glew=OFF - -Dbuiltin_gsl=OFF - -Dbuiltin_lz4=OFF - -Dbuiltin_lzma=OFF - -Dbuiltin_openssl=OFF - -Dbuiltin_pcre=OFF - -Dbuiltin_tbb=OFF - -Dbuiltin_unuran=OFF - -Dbuiltin_vc=OFF - -Dbuiltin_vdt=OFF - -Dbuiltin_veccore=OFF - -Dbuiltin_xrootd=OFF - -Dbuiltin_xxhash=OFF - -Dbuiltin_zlib=OFF - -Dbuiltin_zstd=OFF - -Dalien=OFF - -Darrow=OFF - -Dasimage=$(usex asimage) - -Dccache=OFF # use ccache via portage - -Dcefweb=OFF - -Dclad=OFF - -Dcocoa=$(usex aqua) - -Dcuda=$(usex cuda) - -Dcudnn=$(usex cudnn) - -Dcxxmodules=OFF # requires clang, unstable - -Ddataframe=ON - -Ddavix=$(usex davix) - -Ddcache=OFF - -Dfcgi=$(usex http) - -Dfftw3=$(usex fftw) - -Dfitsio=$(usex fits) - -Dfortran=$(usex fortran) - -Dgdml=$(usex gdml) - -Dgfal=OFF - -Dgminimal=OFF - -Dgsl_shared=$(usex gsl) - -Dgviz=$(usex graphviz) - -Dhttp=$(usex http) - -Dimt=$(usex tbb) - -Dlibcxx=$(usex libcxx) - -Dmathmore=$(usex gsl) - -Dmemstat=OFF # deprecated - -Dminimal=OFF - -Dminuit2=$(usex minuit) - -Dminuit=$(usex minuit) - -Dmlp=$(usex tmva) - -Dmonalisa=OFF - -Dmpi=$(usex mpi) - -Dmysql=$(usex mysql) - -Dodbc=$(usex odbc) - -Dopengl=$(usex opengl) - -Doracle=$(usex oracle) - -Dpgsql=$(usex postgres) - -Dpyroot=$(usex python) # python was renamed to pyroot - -Dpyroot_experimental=OFF # use standard PyROOT for now - -Dpythia6=$(usex pythia6) - -Dpythia8=$(usex pythia8) - -Dqt5web=$(usex qt5) - -Dr=$(usex R) - -Droofit=$(usex roofit) - -Droot7=$(usex root7) - -Drootbench=OFF - -Droottest=OFF - -Drpath=OFF - -Druntime_cxxmodules=OFF - -Dshadowpw=$(usex shadow) - -Dspectrum=ON - -Dsqlite=$(usex sqlite) - -Dssl=$(usex ssl) - -Dtcmalloc=OFF - -Dtesting=$(usex test) - -Dtmva=$(usex tmva) - -Dtmva-cpu=$(usex tmva) - -Dtmva-gpu=$(usex cuda) - -Dtmva-pymva=$(usex tmva) - -Dtmva-rmva=$(usex R) - -Dunuran=$(usex unuran) - -Dvc=$(usex vc) - -Dvdt=OFF - -Dveccore=OFF - -Dvecgeom=OFF - -Dvmc=$(usex vmc) - -Dx11=$(usex X) - -Dxml=$(usex xml) - -Dxrootd=$(usex xrootd) - ${EXTRA_ECONF} - ) - - CMAKE_BUILD_TYPE=$(usex debug Debug Release) \ - cmake_src_configure -} - -src_compile() { - # needed for hsimple.root - addwrite /dev/random - cmake_src_compile -} - -src_install() { - cmake_src_install - - ROOTSYS=${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2) - ROOTENV="$((9999 - $(ver_cut 2)))${PN}-$(ver_cut 1-2)" - - cat > ${ROOTENV} <<- EOF || die - MANPATH="${ROOTSYS}/share/man" - PATH="${ROOTSYS}/bin" - ROOTPATH="${ROOTSYS}/bin" - LDPATH="${ROOTSYS}/lib" - EOF - - if use python; then - echo "PYTHONPATH=\"${ROOTSYS}/lib\"" >> ${ROOTENV} || die - fi - - doenvd ${ROOTENV} - - if use emacs; then - elisp-install ${PN}-$(ver_cut 1-2) "${BUILD_DIR}"/root-help.el - fi - - pushd "${D}/${ROOTSYS}" > /dev/null - - rm -r emacs bin/*.{csh,sh,fish} || die - - if ! use examples; then - rm -r tutorials || die - fi - - # create versioned symlinks for binaries - cd bin; - for exe in *; do - dosym "${exe}" "/usr/lib/${PN}/$(ver_cut 1-2)/bin/${exe}-$(ver_cut 1-2)" - done -} diff --git a/sci-physics/root/root-6.22.00.ebuild b/sci-physics/root/root-6.22.00.ebuild deleted file mode 100644 index 6d38269415d8..000000000000 --- a/sci-physics/root/root-6.22.00.ebuild +++ /dev/null @@ -1,307 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# ninja does not work due to fortran -CMAKE_MAKEFILE_GENERATOR=emake -FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake cuda elisp-common fortran-2 prefix python-single-r1 toolchain-funcs - -DESCRIPTION="C++ data analysis framework and interpreter from CERN" -HOMEPAGE="https://root.cern" -SRC_URI="https://root.cern/download/${PN}_v${PV}.source.tar.gz" - -IUSE="+X aqua +asimage +c++11 c++14 c++17 cuda cudnn +davix debug emacs - +examples fits fftw fortran +gdml graphviz +gsl http libcxx +minuit - mpi mysql odbc +opengl oracle postgres prefix pythia6 pythia8 +python - qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva +unuran vc - vmc +xml xrootd" -RESTRICT="!test? ( test )" - -SLOT="$(ver_cut 1-2)/$(ver_cut 3)" -LICENSE="LGPL-2.1 freedist MSttfEULA LGPL-3 libpng UoI-NCSA" -KEYWORDS="~amd64 ~x86" - -REQUIRED_USE=" - ^^ ( c++11 c++14 c++17 ) - cuda? ( tmva ) - cudnn? ( cuda ) - !X? ( !asimage !opengl !qt5 ) - davix? ( ssl xml ) - python? ( ${PYTHON_REQUIRED_USE} ) - qt5? ( root7 ) - root7? ( || ( c++14 c++17 ) ) - tmva? ( gsl ) -" - -CDEPEND=" - app-arch/lz4 - app-arch/zstd - app-arch/xz-utils - fortran? ( dev-lang/cfortran ) - dev-libs/libpcre:3 - dev-libs/xxhash - media-fonts/dejavu - media-libs/freetype:2 - media-libs/libpng:0= - sys-libs/ncurses:= - sys-libs/zlib - X? ( - x11-libs/libX11:0 - x11-libs/libXext:0 - x11-libs/libXft:0 - x11-libs/libXpm:0 - opengl? ( - media-libs/ftgl:0= - media-libs/glew:0= - virtual/opengl - virtual/glu - x11-libs/gl2ps:0= - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwebengine:5[widgets] - ) - ) - asimage? ( media-libs/libafterimage[gif,jpeg,png,tiff] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-9.0 ) - cudnn? ( dev-libs/cudnn ) - davix? ( net-libs/davix ) - emacs? ( >=app-editors/emacs-23.1:* ) - fftw? ( sci-libs/fftw:3.0= ) - fits? ( sci-libs/cfitsio:0= ) - graphviz? ( media-gfx/graphviz ) - gsl? ( sci-libs/gsl:= ) - http? ( dev-libs/fcgi:0= ) - libcxx? ( sys-libs/libcxx ) - unuran? ( sci-mathematics/unuran:0= ) - minuit? ( !sci-libs/minuit ) - mpi? ( virtual/mpi ) - mysql? ( dev-db/mysql-connector-c ) - odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) - oracle? ( dev-db/oracle-instantclient-basic ) - postgres? ( dev-db/postgresql:= ) - pythia6? ( sci-physics/pythia:6 ) - pythia8? ( sci-physics/pythia:8 ) - python? ( ${PYTHON_DEPS} ) - R? ( dev-lang/R ) - shadow? ( sys-apps/shadow ) - sqlite? ( dev-db/sqlite:3 ) - ssl? ( dev-libs/openssl:0= ) - tbb? ( >=dev-cpp/tbb-2018 ) - tmva? ( - $(python_gen_cond_dep ' - dev-python/numpy[${PYTHON_MULTI_USEDEP}] - ') - ) - vc? ( dev-libs/vc:= ) - xml? ( dev-libs/libxml2:2= ) - xrootd? ( 100MB in total) that don't -# really belong there, we install it into another directory to avoid -# making /etc too big. - -src_configure() { - local mycmakeargs=( - -DCMAKE_C_COMPILER=$(tc-getCC) - -DCMAKE_CXX_COMPILER=$(tc-getCXX) - -DCMAKE_CUDA_HOST_COMPILER=$(tc-getCXX) - -DCMAKE_C_FLAGS="${CFLAGS}" - -DCMAKE_CXX_FLAGS="${CXXFLAGS}" - -DCMAKE_CXX_STANDARD=$((usev c++11 || usev c++14 || usev c++17) | cut -c4-) - -DPYTHON_EXECUTABLE="${EPREFIX}/usr/bin/${EPYTHON}" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)" - -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2)/share/man" - -DCMAKE_INSTALL_LIBDIR="lib" - -DDEFAULT_SYSROOT="${EPREFIX}" - -DCLING_BUILD_PLUGINS=OFF - -Dexceptions=ON - -Dfail-on-missing=ON - -Dgnuinstall=OFF - -Dshared=ON - -Dsoversion=ON - -Dbuiltin_llvm=ON - -Dbuiltin_clang=ON - -Dbuiltin_afterimage=OFF - -Dbuiltin_cfitsio=OFF - -Dbuiltin_davix=OFF - -Dbuiltin_fftw3=OFF - -Dbuiltin_freetype=OFF - -Dbuiltin_ftgl=OFF - -Dbuiltin_gl2ps=OFF - -Dbuiltin_glew=OFF - -Dbuiltin_gsl=OFF - -Dbuiltin_lz4=OFF - -Dbuiltin_lzma=OFF - -Dbuiltin_openssl=OFF - -Dbuiltin_pcre=OFF - -Dbuiltin_tbb=OFF - -Dbuiltin_unuran=OFF - -Dbuiltin_vc=OFF - -Dbuiltin_vdt=OFF - -Dbuiltin_veccore=OFF - -Dbuiltin_xrootd=OFF - -Dbuiltin_xxhash=OFF - -Dbuiltin_zlib=OFF - -Dbuiltin_zstd=OFF - -Dalien=OFF - -Darrow=OFF - -Dasimage=$(usex asimage) - -Dccache=OFF # use ccache via portage - -Dcefweb=OFF - -Dclad=OFF - -Dcocoa=$(usex aqua) - -Dcuda=$(usex cuda) - -Dcudnn=$(usex cudnn) - -Dcxxmodules=OFF # requires clang, unstable - -Ddataframe=ON - -Ddavix=$(usex davix) - -Ddcache=OFF - -Dfcgi=$(usex http) - -Dfftw3=$(usex fftw) - -Dfitsio=$(usex fits) - -Dfortran=$(usex fortran) - -Dgdml=$(usex gdml) - -Dgfal=OFF - -Dgminimal=OFF - -Dgsl_shared=$(usex gsl) - -Dgviz=$(usex graphviz) - -Dhttp=$(usex http) - -Dimt=$(usex tbb) - -Dlibcxx=$(usex libcxx) - -Dmathmore=$(usex gsl) - -Dmemstat=OFF # deprecated - -Dminimal=OFF - -Dminuit2=$(usex minuit) - -Dminuit=$(usex minuit) - -Dmlp=$(usex tmva) - -Dmonalisa=OFF - -Dmpi=$(usex mpi) - -Dmysql=$(usex mysql) - -Dodbc=$(usex odbc) - -Dopengl=$(usex opengl) - -Doracle=$(usex oracle) - -Dpgsql=$(usex postgres) - -Dpyroot=$(usex python) # python was renamed to pyroot - -Dpyroot_legacy=OFF - -Dpythia6=$(usex pythia6) - -Dpythia8=$(usex pythia8) - -Dqt5web=$(usex qt5) - -Dr=$(usex R) - -Droofit=$(usex roofit) - -Droot7=$(usex root7) - -Drootbench=OFF - -Droottest=OFF - -Drpath=OFF - -Druntime_cxxmodules=OFF - -Dshadowpw=$(usex shadow) - -Dspectrum=ON - -Dsqlite=$(usex sqlite) - -Dssl=$(usex ssl) - -Dtcmalloc=OFF - -Dtesting=$(usex test) - -Dtmva=$(usex tmva) - -Dtmva-cpu=$(usex tmva) - -Dtmva-gpu=$(usex cuda) - -Dtmva-pymva=$(usex tmva) - -Dtmva-rmva=$(usex R) - -Dunuran=$(usex unuran) - -Dvc=$(usex vc) - -Dvdt=OFF - -Dveccore=OFF - -Dvecgeom=OFF - -Dvmc=$(usex vmc) - -Dx11=$(usex X) - -Dxml=$(usex xml) - -Dxrootd=$(usex xrootd) - ${EXTRA_ECONF} - ) - - CMAKE_BUILD_TYPE=$(usex debug Debug Release) \ - cmake_src_configure -} - -src_compile() { - # needed for hsimple.root - addwrite /dev/random - cmake_src_compile -} - -src_install() { - cmake_src_install - - ROOTSYS=${EPREFIX}/usr/lib/${PN}/$(ver_cut 1-2) - ROOTENV="$((9999 - $(ver_cut 2)))${PN}-$(ver_cut 1-2)" - - cat > ${ROOTENV} <<- EOF || die - MANPATH="${ROOTSYS}/share/man" - PATH="${ROOTSYS}/bin" - ROOTPATH="${ROOTSYS}/bin" - LDPATH="${ROOTSYS}/lib" - EOF - - if use python; then - echo "PYTHONPATH=\"${ROOTSYS}/lib\"" >> ${ROOTENV} || die - fi - - doenvd ${ROOTENV} - - if use emacs; then - elisp-install ${PN}-$(ver_cut 1-2) "${BUILD_DIR}"/root-help.el - fi - - pushd "${D}/${ROOTSYS}" > /dev/null - - rm -r emacs bin/*.{csh,sh,fish} || die - - if ! use examples; then - rm -r tutorials || die - fi - - # create versioned symlinks for binaries - cd bin; - for exe in *; do - dosym "${exe}" "/usr/lib/${PN}/$(ver_cut 1-2)/bin/${exe}-$(ver_cut 1-2)" - done -} diff --git a/sci-physics/root/root-6.22.02-r1.ebuild b/sci-physics/root/root-6.22.04.ebuild similarity index 99% rename from sci-physics/root/root-6.22.02-r1.ebuild rename to sci-physics/root/root-6.22.04.ebuild index 0e959e9f8eb6..ecc426ffdc88 100644 --- a/sci-physics/root/root-6.22.02-r1.ebuild +++ b/sci-physics/root/root-6.22.04.ebuild @@ -6,7 +6,7 @@ EAPI=7 # ninja does not work due to fortran CMAKE_MAKEFILE_GENERATOR=emake FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit cmake cuda elisp-common fortran-2 prefix python-single-r1 toolchain-funcs @@ -100,7 +100,7 @@ CDEPEND=" ) vc? ( dev-libs/vc:= ) xml? ( dev-libs/libxml2:2= ) - xrootd? ( /dev/null ; then - dpkg --info "$1" - dpkg --contents "$1" - else - ar tv "$1" - ar p "$1" data.tar.gz | tar tzvvf - - fi - ;; - - ### Filesystems ### - *.squashfs) unsquashfs -s "$1" && unsquashfs -ll "$1" ;; - - ### Media ### - *.bmp|*.gif|*.jpeg|*.jpg|*.ico|*.pcd|*.pcx|*.png|*.ppm|*.tga|*.tiff|*.tif|*.webp) - identify -verbose -- "$1" || file -L -- "$1" - ;; - *.asf|*.avi|*.flv|*.mkv|*.mov|*.mp4|*.mpeg|*.mpg|*.qt|*.ram|*.rm|*.webm|*.wmv) - midentify "$1" || file -L -- "$1" - ;; - *.mp3) mp3info "$1" || id3info "$1" ;; - *.ogg) ogginfo "$1" ;; - *.flac) metaflac --list "$1" ;; - *.torrent) torrentinfo "$1" || torrentinfo-console "$1" || ctorrent -x "$1" ;; - *.bin|*.cue|*.raw) - # not all .bin/.raw files are cd images #285507 - # fall back to lesspipe_file if .cue doesn't exist, or if - # cd-info failed to parse things sanely - [[ -e ${1%.*}.cue ]] \ - && cd-info --no-header --no-device-info "$1" \ - || lesspipe_file "$1" - ;; - *.iso) - iso_info=$(isoinfo -d -i "$1") - echo "${iso_info}" - # Joliet output overrides Rock Ridge, so prefer the better Rock - case ${iso_info} in - *$'\n'"Rock Ridge"*) iso_opts="-R";; - *$'\n'"Joliet"*) iso_opts="-J";; - *) iso_opts="";; - esac - isoinfo -l ${iso_opts} -i "$1" - ;; - - ### Encryption stuff ### - *.crl) openssl crl -hash -text -noout -in "$1" ;; - *.csr) openssl req -text -noout -in "$1" ;; - *.crt|*.pem) openssl x509 -hash -text -noout -in "$1" ;; - -# May not be such a good idea :) -# ### Device nodes ### -# /dev/[hs]d[a-z]*) -# fdisk -l "${1:0:8}" -# [[ $1 == *hd* ]] && hdparm -I "${1:0:8}" -# ;; - - ### Everything else ### - *) - case $(( recur++ )) in - # Maybe we didn't match due to case issues ... - 0) lesspipe "$1" "$(echo "$1" | LC_ALL=C tr '[:upper:]' '[:lower:]')" ;; - - # Maybe we didn't match because the file is named weird ... - 1) lesspipe_file "$1" ;; - esac - - # So no matches from above ... finally fall back to an external - # coloring package. No matching here so we don't have to worry - # about keeping in sync with random packages. Any coloring tool - # you use should not output errors about unsupported files to - # stdout. If it does, it's your problem. - - # Allow people to flip color off if they dont want it - case ${LESSCOLOR} in - always) LESSCOLOR=2;; - [yY][eE][sS]|[yY]|1|true) LESSCOLOR=1;; - [nN][oO]|[nN]|0|false) LESSCOLOR=0;; - *) LESSCOLOR=0;; # default to no color #188835 - esac - if [[ ${LESSCOLOR} != "0" ]] && [[ -n ${LESSCOLORIZER=code2color} ]] ; then - # 2: Only colorize if user forces it ... - # 1: ... or we know less will handle raw codes -- this will - # not detect -seiRM, so set LESSCOLORIZER yourself - if [[ ${LESSCOLOR} == "2" ]] || [[ " ${LESS} " == *" -"[rR]" "* ]] ; then - LESSQUIET=true ${LESSCOLORIZER} "$1" - fi - fi - - # Nothing left to do but let less deal - exit 0 - ;; - esac -} - -if [[ $# -eq 0 ]] ; then - echo "Usage: lesspipe " -elif [[ $1 == "-V" || $1 == "--version" ]] ; then - cat <<-EOF - lesspipe (git) - Copyright 1999-2019 Gentoo Authors - Mike Frysinger - (with plenty of ideas stolen from other projects/distros) - - EOF - less -V -elif [[ $1 == "-h" || $1 == "--help" ]] ; then - cat <<-EOF - lesspipe: preprocess files before sending them to less - - Usage: lesspipe - - lesspipe specific settings: - LESSCOLOR env - toggle colorizing of output (no/yes/always; default: no) - LESSCOLORIZER env - program used to colorize output (default: code2color) - LESSIGNORE - list of extensions to ignore (don't do anything fancy) - - You can create per-user filters as well by creating the executable file: - ~/.lessfilter - One argument is passed to it: the file to display. The script should exit 0 - to indicate it handled the file, or non-zero to tell lesspipe to handle it. - - To use lesspipe, simply add to your environment: - export LESSOPEN="|lesspipe %s" - - Run 'less --help' or 'man less' for more info. - EOF -else - recur=0 - [[ -z ${LESSDEBUG+set} ]] && exec 2>/dev/null - lesspipe "$1" -fi diff --git a/sys-apps/less/less-551.ebuild b/sys-apps/less/less-551.ebuild deleted file mode 100644 index cfc0e10bf5e8..000000000000 --- a/sys-apps/less/less-551.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Excellent text file viewer" -HOMEPAGE="http://www.greenwoodsoftware.com/less/" -SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz" - -LICENSE="|| ( GPL-3 BSD-2 )" -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" -IUSE="pcre unicode" - -DEPEND=">=app-misc/editor-wrapper-3 - >=sys-libs/ncurses-5.2:0= - pcre? ( dev-libs/libpcre2 )" -RDEPEND="${DEPEND}" - -src_configure() { - export ac_cv_lib_ncursesw_initscr=$(usex unicode) - export ac_cv_lib_ncurses_initscr=$(usex !unicode) - local myeconfargs=( - --with-regex=$(usex pcre pcre2 posix) - --with-editor="${EPREFIX}"/usr/libexec/editor - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - newbin "${FILESDIR}"/lesspipe.sh lesspipe - newenvd "${FILESDIR}"/less.envd 70less -} - -pkg_preinst() { - if has_version "<${CATEGORY}/${PN}-483-r1" ; then - elog "The lesspipe.sh symlink has been dropped. If you are still setting" - elog "LESSOPEN to that, you will need to update it to '|lesspipe %s'." - elog "Colorization support has been dropped. If you want that, check out" - elog "the new app-text/lesspipe package." - fi -} diff --git a/sys-apps/less/less-562.ebuild b/sys-apps/less/less-562.ebuild deleted file mode 100644 index 375e2585ca5b..000000000000 --- a/sys-apps/less/less-562.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Excellent text file viewer" -HOMEPAGE="http://www.greenwoodsoftware.com/less/" -SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz" - -LICENSE="|| ( GPL-3 BSD-2 )" -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" -IUSE="pcre unicode" - -DEPEND=">=app-misc/editor-wrapper-3 - >=sys-libs/ncurses-5.2:0= - pcre? ( dev-libs/libpcre2 )" -RDEPEND="${DEPEND}" - -src_configure() { - export ac_cv_lib_ncursesw_initscr=$(usex unicode) - export ac_cv_lib_ncurses_initscr=$(usex !unicode) - local myeconfargs=( - --with-regex=$(usex pcre pcre2 posix) - --with-editor="${EPREFIX}"/usr/libexec/editor - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - newbin "${FILESDIR}"/lesspipe.sh lesspipe - newenvd "${FILESDIR}"/less.envd 70less -} - -pkg_preinst() { - if has_version "<${CATEGORY}/${PN}-483-r1" ; then - elog "The lesspipe.sh symlink has been dropped. If you are still setting" - elog "LESSOPEN to that, you will need to update it to '|lesspipe %s'." - elog "Colorization support has been dropped. If you want that, check out" - elog "the new app-text/lesspipe package." - fi -} diff --git a/sys-apps/less/less-563.ebuild b/sys-apps/less/less-563.ebuild deleted file mode 100644 index 375e2585ca5b..000000000000 --- a/sys-apps/less/less-563.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Excellent text file viewer" -HOMEPAGE="http://www.greenwoodsoftware.com/less/" -SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz" - -LICENSE="|| ( GPL-3 BSD-2 )" -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" -IUSE="pcre unicode" - -DEPEND=">=app-misc/editor-wrapper-3 - >=sys-libs/ncurses-5.2:0= - pcre? ( dev-libs/libpcre2 )" -RDEPEND="${DEPEND}" - -src_configure() { - export ac_cv_lib_ncursesw_initscr=$(usex unicode) - export ac_cv_lib_ncurses_initscr=$(usex !unicode) - local myeconfargs=( - --with-regex=$(usex pcre pcre2 posix) - --with-editor="${EPREFIX}"/usr/libexec/editor - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - newbin "${FILESDIR}"/lesspipe.sh lesspipe - newenvd "${FILESDIR}"/less.envd 70less -} - -pkg_preinst() { - if has_version "<${CATEGORY}/${PN}-483-r1" ; then - elog "The lesspipe.sh symlink has been dropped. If you are still setting" - elog "LESSOPEN to that, you will need to update it to '|lesspipe %s'." - elog "Colorization support has been dropped. If you want that, check out" - elog "the new app-text/lesspipe package." - fi -} diff --git a/sys-apps/portage/portage-3.0.9.ebuild b/sys-apps/portage/portage-3.0.9.ebuild index ef9fe0a12bbb..7625b8e90651 100644 --- a/sys-apps/portage/portage-3.0.9.ebuild +++ b/sys-apps/portage/portage-3.0.9.ebuild @@ -13,7 +13,7 @@ DESCRIPTION="Portage is the package management and distribution system for Gento HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" LICENSE="GPL-2" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" SLOT="0" IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr" RESTRICT="!test? ( test )" diff --git a/sys-apps/sysvinit/sysvinit-2.97.ebuild b/sys-apps/sysvinit/sysvinit-2.97.ebuild index fac49377c027..f5e30f5d70dc 100644 --- a/sys-apps/sysvinit/sysvinit-2.97.ebuild +++ b/sys-apps/sysvinit/sysvinit-2.97.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://nongnu/${PN}/${P/_/-}.tar.xz" LICENSE="GPL-2" SLOT="0" [[ "${PV}" == *beta* ]] || \ -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86" IUSE="selinux ibm static kernel_FreeBSD" CDEPEND=" diff --git a/sys-boot/Manifest.gz b/sys-boot/Manifest.gz index 670daf59f108..d5bbb84a8667 100644 Binary files a/sys-boot/Manifest.gz and b/sys-boot/Manifest.gz differ diff --git a/sys-boot/unetbootin/Manifest b/sys-boot/unetbootin/Manifest index 583b45c47dc7..fd507164f4dd 100644 --- a/sys-boot/unetbootin/Manifest +++ b/sys-boot/unetbootin/Manifest @@ -1,3 +1 @@ -DIST unetbootin-661-qt5.patch.tar.xz 8060 BLAKE2B 58cb323166e344ecabf5d372e80ff0367a1344866a6e8dea4b2677a85ea6ae0b5591480a3bcbbfc3a51d391b07adf0d5f370ee77e4c7e1d6f2b727aedf274cf0 SHA512 c1226575484fa63c94ca4da875a26c7bd64bcb27d8e07ea5b67bb3f2546f31d1360d10c363cd7301476811e332c9524c96d6ba482c894b86a5b28ca8a1c8b385 -DIST unetbootin-661.tar.gz 16257579 BLAKE2B 2f92cf286c8010a80d4d4cc48a7ece55e159af9f3729277d97eb99ef2ebe8945023d03c51d6e97d7101d8547240e3c2152004222ec4c825ef4ab954c4018e7b0 SHA512 bbf74a4c4ca9b52f4da672eb54524b7fcb796c65ba80700dc3c6f2677bde37574f42a11c213cc4d4eee38783aed650beee1e2894f60185745e509a2e9571f70a DIST unetbootin-700.tar.gz 16694955 BLAKE2B d8c00b56c5ae2daac696b62ef207c62dc91f67699c8823e2a751eff536d03fd0a50a931e9a4598b05d99be968b7e895ab521f605b4e0080d591a34c9e67f685e SHA512 0d1b23dddf0e0e3eca81f8ef07fe375f0867ee3fa631c3a3cfe33a846b8d704b36e0efe4c947d7c68e5c1bff370ba87c34aa52c5bf8fc414cd89777f9f1858b7 diff --git a/sys-boot/unetbootin/files/unetbootin-581-desktop.patch b/sys-boot/unetbootin/files/unetbootin-581-desktop.patch deleted file mode 100644 index ab1912b2e8a0..000000000000 --- a/sys-boot/unetbootin/files/unetbootin-581-desktop.patch +++ /dev/null @@ -1,24 +0,0 @@ - * unetbootin.desktop: error: key "GenericName[en_US]" in group "Desktop Entry" - is a localized key, but there is no non-localized key "GenericName" - * unetbootin.desktop: warning: value "Application;System;" for key - "Categories" in group "Desktop Entry" contains a deprecated value - * "Application" - - - ---- a/unetbootin.desktop -+++ b/unetbootin.desktop -@@ -2,11 +2,11 @@ - Version=1.0 - Name=UNetbootin - Comment=Tool for creating Live USB drives --Categories=Application;System; -+Categories=System; - Exec=/usr/bin/unetbootin - Terminal=false - Type=Application - Name[en_US]=UNetbootin --GenericName[en_US]=UNetbootin -+GenericName=UNetbootin - Comment[en_US]=Tool for creating Live USB drives - Icon=unetbootin diff --git a/sys-boot/unetbootin/unetbootin-661.ebuild b/sys-boot/unetbootin/unetbootin-661.ebuild deleted file mode 100644 index e91aabaaf4d8..000000000000 --- a/sys-boot/unetbootin/unetbootin-661.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PATCHSET="${P}-qt5.patch.tar.xz" -inherit desktop qmake-utils - -DESCRIPTION="UNetbootin installs Linux/BSD distributions to a partition or USB drive" -HOMEPAGE="https://github.com/unetbootin/unetbootin" -SRC_URI="https://github.com/unetbootin/unetbootin/archive/${PV}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 x86" - -UNBI_LINGUAS=" - am ar ast be bg bn ca cs da de el eo es et eu fa fi fo fr gl he hr hu id it - ja lt lv ml ms nan nb nl nn pl pt_BR pt ro ru si sk sl sr sv sw tr uk ur vi - zh_CN zh_TW -" - -for lingua in ${UNBI_LINGUAS}; do - IUSE="${IUSE} l10n_${lingua/_/-}" -done - -S=${WORKDIR}/${P}/src/${PN} - -COMMON_DEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 -" -DEPEND="${COMMON_DEPEND} - dev-qt/linguist-tools:5 -" -RDEPEND="${COMMON_DEPEND} - app-arch/p7zip - sys-boot/syslinux - sys-fs/mtools -" - -PATCHES=( - "${FILESDIR}/${PN}-581-desktop.patch" - "${WORKDIR}"/${PATCHSET/.tar.xz/} -) - -src_prepare() { - default - - # QA check in case linguas are added or removed - enum() { - echo ${#} - } - [[ $(enum ${UNBI_LINGUAS}) -eq $(( $(enum $(echo ${PN}_*.ts) ) -1 )) ]] \ - || die "Numbers of recorded and actual linguas do not match" - unset enum - - # Remove localisations - local lingua - for lingua in ${UNBI_LINGUAS}; do - if ! use l10n_${lingua/_/-}; then - sed -i ${PN}.pro -e "/\.*${PN}_${lingua}\.ts.*/d" || die - rm ${PN}_${lingua}.ts || die - fi - done -} - -src_configure() { - sed -i -e '/^RESOURCES/d' unetbootin.pro || die - - UNBN_QTPATH="$(qt5_get_bindir)/" - "${UNBN_QTPATH}"lrelease ${PN}.pro || die - - eqmake5 ${PN}.pro || die -} - -src_install() { - dobin ${PN} - - domenu ${PN}.desktop - - for file in ${PN}*.png; do - size="${file/${PN}_}" - size="${size/.png}x${size/.png}" - insinto /usr/share/icons/hicolor/${size}/apps - newins ${file} ${PN}.png - done - - local lingua - for lingua in ${UNBI_LINGUAS}; do - if use l10n_${lingua/_/-}; then - insinto /usr/share/${PN} - doins ${PN}_${lingua}.qm - fi - done -} diff --git a/sys-boot/unetbootin/unetbootin-700.ebuild b/sys-boot/unetbootin/unetbootin-700.ebuild index 8f28fc70455f..59c833f0e6d9 100644 --- a/sys-boot/unetbootin/unetbootin-700.ebuild +++ b/sys-boot/unetbootin/unetbootin-700.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/unetbootin/unetbootin/archive/${PV}.tar.gz -> ${P}.t LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" UNBI_LINGUAS=" am ar ast be bg bn ca cs da de el eo es et eu fa fi fo fr gl he hr hu id it diff --git a/sys-boot/yaboot/files/yaboot-nopiessp-gcc4.patch b/sys-boot/yaboot/files/yaboot-nopiessp-gcc4.patch deleted file mode 100644 index ed1755b72b33..000000000000 --- a/sys-boot/yaboot/files/yaboot-nopiessp-gcc4.patch +++ /dev/null @@ -1,38 +0,0 @@ -disable ssp usage in yaboot itself - -unfortunately, since we link against external libs that themselves were built -with ssp turned on, we have to provide stubs to keep the linking from failing - ---- yaboot-1.3.13/Config.gentoo -+++ yaboot-1.3.13/Config.gentoo -@@ -0,0 +1,6 @@ -+check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ -+ then echo "$(1)"; else echo "$(2)"; fi) -+ -+CFLAGS += $(call check_gcc, -fno-stack-protector) -+CFLAGS += $(call check_gcc, --nopie) -+ ---- yaboot-1.3.13/Makefile -+++ yaboot-1.3.13/Makefile -@@ -1,6 +1,7 @@ - ## Setup - - include Config -+include Config.gentoo - - VERSION = 1.3.13 - # Debug mode (spam/verbose) -@@ -79,7 +80,7 @@ HOSTCFLAGS = -O2 $(CFLAGS) -Wall -I/usr/ - OBJS = second/crt0.o second/yaboot.o second/cache.o second/prom.o second/file.o \ - second/partition.o second/fs.o second/cfg.o second/setjmp.o second/cmdline.o \ - second/fs_of.o second/fs_ext2.o second/fs_iso.o second/iso_util.o \ -- lib/nosys.o lib/string.o lib/strtol.o lib/vsprintf.o lib/ctype.o lib/malloc.o lib/strstr.o -+ lib/nosys.o lib/string.o lib/strtol.o lib/vsprintf.o lib/ctype.o lib/malloc.o lib/strstr.o lib/ssp.o - - ifeq ($(USE_MD5_PASSWORDS),y) - OBJS += second/md5.o ---- yaboot-1.3.14/lib/ssp.c -+++ yaboot-1.3.14/lib/ssp.c -@@ -0,0 +1,2 @@ -+void __stack_chk_fail(void) {} -+void __stack_chk_fail_local(void) {} diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index 40bbe664e192..abf6e0cf420b 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest index 0cb0d95787dd..3dfdc5719b1d 100644 --- a/sys-cluster/ceph/Manifest +++ b/sys-cluster/ceph/Manifest @@ -1,5 +1,5 @@ -DIST ceph-12.2.12.tar.gz 77467762 BLAKE2B a5224432121db9ef49c1e22771d847399df2f7881cd9c2e185eca12096efb79d21578659d248eb5bae678924983d57452d370e23ab7e78663764d7bea834a461 SHA512 e694c9a8c1f9836c08fb74b54423bdc16d4900252e34643c56cf1a615d4dacddfb13df06a6a9f68bb9d438f5f07069ed358f9fa4b5a362640a3046f9c7722dcc DIST ceph-14.2.11.tar.gz 129327263 BLAKE2B fb04f3fde6642905dd21836c7472cf3b6cb484f69367ecf01b7d427c757e0fd1db4bd483bf9b0e485e1f8924a8e9201e8d47713a1de9281d5d96e45939bd1078 SHA512 765e8982d457cfd900acddc8f82c23824b32dc6d925d45e7693cba48c06fab798b6d57991dc9ad18a9ace9aff6fb2b917bd97f2d6435a7caceb03c9733e9602a DIST ceph-14.2.13.tar.gz 129255298 BLAKE2B 32d12ede10ff657e9341e2fc31412018041a327a4c62219105a4e9576fa46643c12b936c3eaa003a78677c4ef401ef6bd73fe150604e8031482f1d237d483ff1 SHA512 3d51b729ccf26aa9a40c1320f4051755ec405abc714ae5257ec5433a13549e34fed0945f3091525fd8118d00c36fe4ae793125728d9e17f4221cdd1ee7de5b12 -DIST ceph-15.2.4.tar.gz 148011928 BLAKE2B c0222725227cf922ed10bb19840b8cbfe0c0b8ae77a4f83f03a95c3fc198165740f7a1dee5e1983e9403634ce389c858e71ed3f2731202630e19961a5de0247a SHA512 94e9b4c87d9f27dbfc9961b853f2cf159d65b614bf50ac3dabad9d801a181c547550ab4bca1f48c7a6e11aa6188e5858b110a9023dc214a043ed5ba375b3dee2 +DIST ceph-14.2.14.tar.gz 129258764 BLAKE2B a25ad78f607de33f3d87c96bf41d614266a0737ca855dbdc7dd88354cddc90037de8bf98e09392fba858f9224f98eaddae0943814a3b23a8a7e00181e5b91607 SHA512 4d5c11108cf42dc3bcf810d119329ba6e4cda02506215202d3b173bad8a9638d1fb2dff7c440d935efe8cd008e7d6e7bb02f681d2da06fccfb6d1d47078287dc DIST ceph-15.2.5.tar.gz 149219528 BLAKE2B 8f2cea9a258b7c530bff72a46d45fabf5364cf919f098c7d77857afa0dfdbcd7c290aa5a0d88cce1d99923588cc303d27c0b85179378ff1c394d9ce0f135a1b1 SHA512 55de068886c48293e92ef95cf8343ae44825fd2bf9c3fa7d47cda92907a47bae79e0af730cd34d0155b0777901d0fd6f9d1f30537c66c54c95098df7368fca2e +DIST ceph-15.2.6.tar.gz 148124143 BLAKE2B 4132a2c50037839f712a796cf428190b0e450f0f8b6f157b3d983ca596d9e9e521f1f991c66e14455122c927ddaafada387ef780fd438b2506cfe56194177648 SHA512 0bbbbc532fb9f29437c094a86a1e58040f03b679e4d52ea9cc752ecf411c594c8ec37dc5e9f0ee47712d32b93b4e60b0f3fded280867d41c41b8db806b375e4e diff --git a/sys-cluster/ceph/ceph-12.2.12-r3.ebuild b/sys-cluster/ceph/ceph-12.2.12-r3.ebuild deleted file mode 100644 index 029b309f0095..000000000000 --- a/sys-cluster/ceph/ceph-12.2.12-r3.ebuild +++ /dev/null @@ -1,320 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_6 ) -DISTUTILS_OPTIONAL=1 - -inherit check-reqs cmake-utils distutils-r1 flag-o-matic multiprocessing \ - python-r1 udev readme.gentoo-r1 systemd - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/ceph/ceph.git" - SRC_URI="" -else - SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz" - # currently broken (bug #708294) - #KEYWORDS="~amd64 ~arm64 ~x86" -fi - -DESCRIPTION="Ceph distributed filesystem" -HOMEPAGE="https://ceph.com/" - -LICENSE="LGPL-2.1 CC-BY-SA-3.0 GPL-2 BSD Boost-1.0 MIT" -SLOT="0" - -CPU_FLAGS_X86=(sse{,2,3,4_1,4_2} ssse3) - -IUSE="babeltrace cephfs fuse jemalloc ldap lttng +mgr nss +radosgw +ssl" -IUSE+=" +system-boost systemd +tcmalloc test xfs zfs" -IUSE+=" $(printf "cpu_flags_x86_%s\n" ${CPU_FLAGS_X86[@]})" - -# unbundling code commented out pending bugs 584056 and 584058 -#>=dev-libs/jerasure-2.0.0-r1 -#>=dev-libs/gf-complete-2.0.0 -COMMON_DEPEND=" - acct-group/ceph - acct-user/ceph - virtual/libudev:= - app-arch/bzip2:= - app-arch/lz4:= - app-arch/snappy:= - app-arch/zstd:= - app-misc/jq:= - =dev-util/google-perftools-2.4:= ) - ${PYTHON_DEPS} - " -DEPEND="${COMMON_DEPEND} - app-arch/cpio - amd64? ( dev-lang/yasm ) - x86? ( dev-lang/yasm ) - dev-python/cython[${PYTHON_USEDEP}] - dev-python/sphinx - dev-util/gperf - dev-util/valgrind - sys-apps/which - sys-devel/bc - virtual/pkgconfig - test? ( - dev-python/virtualenv[${PYTHON_USEDEP}] - sys-apps/grep[pcre] - sys-fs/btrfs-progs - )" -RDEPEND="${COMMON_DEPEND} - net-misc/socat - sys-apps/gptfdisk - sys-block/parted - sys-fs/e2fsprogs - sys-fs/cryptsetup - sys-fs/lvm2 - !/dev/null || die - emake VERBOSE=1 all - - # python modules are only compiled with "make install" so we need to do this to - # prevent doing a bunch of compilation in src_install - DESTDIR="${T}" emake VERBOSE=1 install - popd >/dev/null || die -} - -src_compile() { - cmake-utils_src_make all - - # we have to do this here to prevent from building everything multiple times - python_copy_sources - python_foreach_impl python_compile -} - -src_test() { - make check || die "make check failed" -} - -python_install() { - local CMAKE_USE_DIR="${S}" - pushd "${BUILD_DIR}/src/pybind" >/dev/null || die - DESTDIR="${ED}" emake install - popd >/dev/null || die -} - -src_install() { - cmake-utils_src_install - python_foreach_impl python_install - - find "${D}" -name '*.la' -delete || die - - exeinto /usr/$(get_libdir)/ceph - newexe "${BUILD_DIR}/bin/init-ceph" ceph_init.sh - - insinto /etc/logrotate.d/ - newins "${FILESDIR}"/ceph.logrotate-r2 ${PN} - - keepdir /var/lib/${PN}{,/tmp} /var/log/${PN}/stat - - fowners -R ceph:ceph /var/lib/ceph /var/log/ceph - - newinitd "${FILESDIR}/rbdmap.initd" rbdmap - newinitd "${FILESDIR}/${PN}.initd-r12" ${PN} - newconfd "${FILESDIR}/${PN}.confd-r5" ${PN} - - insinto /etc/sysctl.d - newins "${FILESDIR}"/sysctld 90-${PN}.conf - - use tcmalloc && newenvd "${FILESDIR}"/envd-tcmalloc 99${PN}-tcmalloc - - # units aren't installed by the build system unless systemd is enabled - # so no point installing these with the USE flag disabled - if use systemd; then - systemd_install_serviced "${FILESDIR}/ceph-mds_at.service.conf" \ - "ceph-mds@.service" - - systemd_install_serviced "${FILESDIR}/ceph-osd_at.service.conf" \ - "ceph-osd@.service" - fi - - udev_dorules udev/*.rules - - readme.gentoo_create_doc - - python_setup 'python2*' - - # bug #630232 - sed -i -r "s:${T//:/\\:}/${EPYTHON}:/usr:" "${ED}"/usr/bin/ceph \ - || die "sed failed" - - python_fix_shebang "${ED}"/usr/{,s}bin/ - - # python_fix_shebang apparently is not idempotent - sed -i -r 's:(/usr/lib/python-exec/python[0-9]\.[0-9]/python)[0-9]\.[0-9]:\1:' \ - "${ED}"/usr/{sbin/ceph-disk,bin/ceph-detect-init} || die "sed failed" - - local -a rados_classes=( "${D}/usr/$(get_libdir)/rados-classes"/* ) - dostrip -x "${rados_classes[@]#${D}}" -} - -pkg_postinst() { - readme.gentoo_print_elog -} diff --git a/sys-cluster/ceph/ceph-14.2.14.ebuild b/sys-cluster/ceph/ceph-14.2.14.ebuild new file mode 100644 index 000000000000..2731b083d38b --- /dev/null +++ b/sys-cluster/ceph/ceph-14.2.14.ebuild @@ -0,0 +1,402 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +CMAKE_MAKEFILE_GENERATOR=emake + +DISTUTILS_OPTIONAL=1 + +inherit check-reqs bash-completion-r1 cmake distutils-r1 flag-o-matic \ + python-r1 udev readme.gentoo-r1 toolchain-funcs systemd tmpfiles + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ceph/ceph.git" + SRC_URI="" +else + SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Ceph distributed filesystem" +HOMEPAGE="https://ceph.com/" + +LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 GPL-3 BSD Boost-1.0 MIT public-domain" +SLOT="0" + +CPU_FLAGS_X86=(sse{,2,3,4_1,4_2} ssse3) + +IUSE="babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana jemalloc + kafka kerberos ldap libressl lttng +mgr numa +openssl rabbitmq +radosgw +ssl + spdk system-boost systemd +tcmalloc test xfs zfs" +IUSE+=" $(printf "cpu_flags_x86_%s\n" ${CPU_FLAGS_X86[@]})" + +DEPEND=" + acct-group/ceph + acct-user/ceph + virtual/libudev:= + app-arch/bzip2:= + app-arch/lz4:= + app-arch/snappy:= + app-arch/zstd:= + app-shells/bash:0 + app-misc/jq:= + dev-libs/crypto++:= + dev-libs/rocksdb:= + dev-libs/leveldb:=[snappy,tcmalloc(-)?] + dev-libs/libaio:= + dev-libs/libnl:3= + dev-libs/libxml2:= + dev-libs/xmlsec:=[!openssl?,!libressl?] + dev-cpp/yaml-cpp:= + dev-libs/nss:= + dev-libs/protobuf:= + net-dns/c-ares:= + net-libs/gnutls:= + sys-auth/oath-toolkit:= + sys-apps/coreutils + sys-apps/grep + sys-apps/hwloc:= + sys-apps/keyutils:= + sys-apps/util-linux:= + sys-apps/sed + sys-apps/util-linux + sys-libs/libcap-ng:= + sys-libs/ncurses:0= + sys-libs/zlib:= + sys-process/numactl:= + x11-libs/libpciaccess:= + babeltrace? ( dev-util/babeltrace ) + fuse? ( sys-fs/fuse:0= ) + jemalloc? ( dev-libs/jemalloc:= ) + !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) + kafka? ( dev-libs/librdkafka:= ) + kerberos? ( virtual/krb5 ) + ldap? ( net-nds/openldap:= ) + lttng? ( dev-util/lttng-ust:= ) + rabbitmq? ( net-libs/rabbitmq-c:= ) + radosgw? ( + dev-libs/expat:= + openssl? ( + dev-libs/openssl:= + net-misc/curl:=[curl_ssl_openssl] + ) + libressl? ( + dev-libs/libressl:= + net-misc/curl:=[curl_ssl_libressl] + ) + ) + ssl? ( + openssl? ( dev-libs/openssl:= ) + libressl? ( dev-libs/libressl:= ) + ) + system-boost? ( =dev-libs/boost-1.72*[threads,context,python,${PYTHON_USEDEP}] ) + xfs? ( sys-fs/xfsprogs:= ) + zfs? ( sys-fs/zfs:= ) + ${PYTHON_DEPS} +" +BDEPEND=" + amd64? ( dev-lang/yasm ) + x86? ( dev-lang/yasm ) + app-arch/cpio + >=dev-util/cmake-3.5.0 + dev-python/cython[${PYTHON_USEDEP}] + dev-python/sphinx + dev-util/cunit + dev-util/gperf + dev-util/ragel + dev-util/valgrind + sys-apps/coreutils + sys-apps/findutils + sys-apps/grep + sys-apps/sed + sys-apps/which + sys-devel/bc + sys-devel/patch + virtual/pkgconfig + test? ( + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + dev-python/requests-mock[${PYTHON_USEDEP}] + sys-apps/grep[pcre] + sys-fs/btrfs-progs + ) +" +RDEPEND="${DEPEND} + app-admin/sudo + net-misc/socat + sys-apps/gptfdisk + >=sys-apps/smartmontools-7.0 + sys-block/parted + sys-fs/cryptsetup + sys-fs/lsscsi + sys-fs/lvm2[-device-mapper-only(-)] + virtual/awk + dev-python/bcrypt[${PYTHON_USEDEP}] + dev-python/cherrypy[${PYTHON_USEDEP}] + dev-python/flask[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/pecan[${PYTHON_USEDEP}] + dev-python/prettytable[${PYTHON_USEDEP}] + dev-python/pyopenssl[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/werkzeug[${PYTHON_USEDEP}] + mgr? ( + dev-python/more-itertools[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pyjwt[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/routes[${PYTHON_USEDEP}] + diskprediction? ( + $(python_gen_cond_dep '=glibc-2.32 + has_version '>=sys-libs/glibc-2.32' && mycmakeargs+=(-DWITH_REENTRANT_STRSIGNAL:BOOL=ON) + + rm -f "${BUILD_DIR:-${S}}/CMakeCache.txt" \ + || die "failed to remove cmake cache" + + cmake_src_configure + + # bug #630232 + sed -i "s:\"${T//:\\:}/${EPYTHON}/bin/python\":\"${PYTHON}\":" \ + "${BUILD_DIR:-${S}}"/include/acconfig.h \ + || die "sed failed" +} + +src_configure() { + use custom-cflags || strip-flags + ceph_src_configure +} + +python_compile() { + local CMAKE_USE_DIR="${S}" + ceph_src_configure + + pushd "${BUILD_DIR}/src/pybind" >/dev/null || die + emake VERBOSE=1 clean + emake VERBOSE=1 all + + # python modules are only compiled with "make install" so we need to do this to + # prevent doing a bunch of compilation in src_install + DESTDIR="${T}" emake VERBOSE=1 install + popd >/dev/null || die +} + +src_compile() { + cmake_build VERBOSE=1 all + + # we have to do this here to prevent from building everything multiple times + python_copy_sources + python_foreach_impl python_compile +} + +src_test() { + make check || die "make check failed" +} + +python_install() { + local CMAKE_USE_DIR="${S}" + pushd "${BUILD_DIR}/src/pybind" >/dev/null || die + DESTDIR="${ED}" emake VERBOSE=1 install + popd >/dev/null || die + + python_optimize +} + +src_install() { + cmake_src_install + python_foreach_impl python_install + + find "${ED}" -name '*.la' -type f -delete || die + + exeinto /usr/$(get_libdir)/ceph + newexe "${BUILD_DIR}/bin/init-ceph" init-ceph + + insinto /etc/logrotate.d/ + newins "${FILESDIR}"/ceph.logrotate-r2 ${PN} + + keepdir /var/lib/${PN}{,/tmp} /var/log/${PN}/stat + + fowners -R ceph:ceph /var/log/ceph + + newinitd "${FILESDIR}/rbdmap.initd" rbdmap + newinitd "${FILESDIR}/${PN}.initd-r12" ${PN} + newconfd "${FILESDIR}/${PN}.confd-r5" ${PN} + + insinto /etc/sysctl.d + newins "${FILESDIR}"/sysctld 90-${PN}.conf + + use tcmalloc && newenvd "${FILESDIR}"/envd-tcmalloc 99${PN}-tcmalloc + + # units aren't installed by the build system unless systemd is enabled + # so no point installing these with the USE flag disabled + if use systemd; then + systemd_install_serviced "${FILESDIR}/ceph-mds_at.service.conf" \ + "ceph-mds@.service" + + systemd_install_serviced "${FILESDIR}/ceph-osd_at.service.conf" \ + "ceph-osd@.service" + + fi + + udev_dorules udev/*.rules + newtmpfiles "${FILESDIR}"/ceph-tmpfilesd ${PN}.conf + + readme.gentoo_create_doc + + python_setup + + # bug #630232 + sed -i -r "s:${T//:/\\:}/${EPYTHON}:/usr:" "${ED}"/usr/bin/ceph{,-crash} \ + || die "sed failed" + + python_fix_shebang "${ED}"/usr/{,s}bin/ + + # python_fix_shebang apparently is not idempotent + local shebang_regex='(/usr/lib/python-exec/python[0-9]\.[0-9]/python)[0-9]\.[0-9]' + grep -r -E -l --null "${shebang_regex}" "${ED}"/usr/{s,}bin/ \ + | xargs --null --no-run-if-empty -- sed -i -r "s:${shebang_regex}:\1:" || die + + local -a rados_classes=( "${ED}/usr/$(get_libdir)/rados-classes"/* ) + dostrip -x "${rados_classes[@]#${ED}}" +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/sys-cluster/ceph/ceph-15.2.4-r3.ebuild b/sys-cluster/ceph/ceph-15.2.6.ebuild similarity index 97% rename from sys-cluster/ceph/ceph-15.2.4-r3.ebuild rename to sys-cluster/ceph/ceph-15.2.6.ebuild index 3c6f8a003fc5..f8190628700f 100644 --- a/sys-cluster/ceph/ceph-15.2.4-r3.ebuild +++ b/sys-cluster/ceph/ceph-15.2.6.ebuild @@ -3,6 +3,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend CMAKE_MAKEFILE_GENERATOR=emake DISTUTILS_OPTIONAL=1 @@ -16,7 +17,7 @@ if [[ ${PV} == *9999* ]]; then SRC_URI="" else SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~ppc64" + KEYWORDS="~amd64" fi DESCRIPTION="Ceph distributed filesystem" @@ -44,6 +45,7 @@ DEPEND=" app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] + dev-libs/rocksdb:= dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= @@ -197,8 +199,9 @@ PATCHES=( "${FILESDIR}/ceph-15.2.0-rocksdb-cmake.patch" "${FILESDIR}/ceph-15.2.2-systemd-unit.patch" "${FILESDIR}/ceph-15.2.3-spdk-compile.patch" - "${FILESDIR}/ceph-14.2.10-python-warnings.patch" "${FILESDIR}/ceph-15.2.4-system-uring.patch" + "${FILESDIR}/ceph-15.2.5-missing-includes.patch" + "${FILESDIR}/ceph-15.2.5-systemd-unit-fix.patch" "${FILESDIR}/ceph-15.2.5-glibc-2.32.patch" ) @@ -274,6 +277,7 @@ ceph_src_configure() { -DALLOCATOR=$(usex tcmalloc 'tcmalloc' "$(usex jemalloc 'jemalloc' 'libc')") -DWITH_SYSTEM_BOOST=$(usex system-boost) -DBOOST_J=$(makeopts_jobs) + -DWITH_SYSTEM_ROCKSDB=ON -DWITH_RDMA=OFF -DWITH_TBB=OFF -DSYSTEMD_UNITDIR=$(systemd_get_systemunitdir) @@ -289,6 +293,9 @@ ceph_src_configure() { done fi + # needed for >=glibc-2.32 + has_version '>=sys-libs/glibc-2.32' && mycmakeargs+=(-DWITH_REENTRANT_STRSIGNAL:BOOL=ON) + rm -f "${BUILD_DIR:-${S}}/CMakeCache.txt" \ || die "failed to remove cmake cache" diff --git a/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch b/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch deleted file mode 100644 index 0f02e6e6d433..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.0-cflags.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/cmake/modules/Distutils.cmake b/cmake/modules/Distutils.cmake -index 24d1a50654..a9fac61196 100644 ---- a/cmake/modules/Distutils.cmake -+++ b/cmake/modules/Distutils.cmake -@@ -43,7 +43,7 @@ function(distutils_add_cython_module name src) - CC=${PY_CC} - CXX=${PY_CXX} - LDSHARED=${PY_LDSHARED} -- OPT=\"-DNDEBUG -g -fwrapv -O2 -w\" -+ OPT=\"-DNDEBUG -fwrapv -w\" - LDFLAGS=-L${CMAKE_LIBRARY_OUTPUT_DIRECTORY} - CYTHON_BUILD_DIR=${CMAKE_CURRENT_BINARY_DIR} - CEPH_LIBDIR=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} diff --git a/sys-cluster/ceph/files/ceph-12.2.1-systemd-unitdir.patch b/sys-cluster/ceph/files/ceph-12.2.1-systemd-unitdir.patch deleted file mode 100644 index 28d1a02d711b..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.1-systemd-unitdir.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff --git a/systemd/CMakeLists.txt b/systemd/CMakeLists.txt -index 3b03b6e613..c359ad2df9 100644 ---- a/systemd/CMakeLists.txt -+++ b/systemd/CMakeLists.txt -@@ -17,4 +17,4 @@ install(FILES - ceph-disk@.service - ceph-volume@.service - rbdmap.service -- DESTINATION ${CMAKE_INSTALL_LIBEXECDIR}/systemd/system) -+ DESTINATION ${SYSTEMD_UNITDIR}) diff --git a/sys-cluster/ceph/files/ceph-12.2.11-boost-sonames.patch b/sys-cluster/ceph/files/ceph-12.2.11-boost-sonames.patch deleted file mode 100644 index bd17686bd9a4..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.11-boost-sonames.patch +++ /dev/null @@ -1,214 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5403de8f4c..ee3336ee27 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -563,7 +563,7 @@ set(BOOST_COMPONENTS - set(BOOST_HEADER_COMPONENTS container) - - if(WITH_MGR) -- list(APPEND BOOST_COMPONENTS python) -+ list(APPEND BOOST_COMPONENTS python-${EPYTHON_VERSION}) - endif() - if(WITH_BOOST_CONTEXT) - list(APPEND BOOST_COMPONENTS context coroutine) -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index b0837ab1d9..e12cecf354 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -623,13 +623,13 @@ set(ceph_common_objs - $) - set(ceph_common_deps - json_spirit erasure_code rt ${LIB_RESOLV} -- Boost::thread -- Boost::system -- Boost::regex -- Boost::random -- Boost::program_options -- Boost::date_time -- Boost::iostreams -+ boost_thread -+ boost_system -+ boost_regex -+ boost_random -+ boost_program_options -+ boost_date_time -+ boost_iostreams - ${BLKID_LIBRARIES} - ${Backtrace_LIBRARIES} - ${BLKIN_LIBRARIES} -@@ -727,7 +727,7 @@ if (WITH_MGR) - $) - target_include_directories(ceph-mgr PRIVATE "${PYTHON_INCLUDE_DIRS}") - target_link_libraries(ceph-mgr osdc client global-static common -- Boost::python ${PYTHON_LIBRARIES} ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS} ${ALLOC_LIBS}) -+ boost_python-${EPYTHON_VERSION} ${PYTHON_LIBRARIES} ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS} ${ALLOC_LIBS}) - install(TARGETS ceph-mgr DESTINATION bin) - endif (WITH_MGR) - -@@ -901,7 +901,7 @@ set(ceph_mds_srcs - ceph_mds.cc) - add_executable(ceph-mds ${ceph_mds_srcs}) - target_link_libraries(ceph-mds mds ${CMAKE_DL_LIBS} global-static common -- Boost::thread) -+ boost_thread) - install(TARGETS ceph-mds DESTINATION bin) - - add_subdirectory(erasure-code) -diff --git a/src/rgw/CMakeLists.txt b/src/rgw/CMakeLists.txt -index 57cb2a5b94..971af8ebec 100644 ---- a/src/rgw/CMakeLists.txt -+++ b/src/rgw/CMakeLists.txt -@@ -156,7 +156,7 @@ if (WITH_CURL_OPENSSL OR (WITH_RADOSGW_BEAST_FRONTEND AND WITH_RADOSGW_BEAST_OPE - endif() - if (WITH_RADOSGW_BEAST_FRONTEND) - target_compile_definitions(rgw_a PUBLIC BOOST_COROUTINES_NO_DEPRECATION_WARNING) -- target_link_libraries(rgw_a Boost::coroutine Boost::context) -+ target_link_libraries(rgw_a boost_coroutine boost_context) - endif() - - set(radosgw_srcs -diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt -index 66e24b8bc9..0f659c98e2 100644 ---- a/src/test/CMakeLists.txt -+++ b/src/test/CMakeLists.txt -@@ -145,7 +145,7 @@ add_executable(ceph_omapbench - ) - target_link_libraries(ceph_omapbench - librados -- Boost::program_options -+ boost_program_options - global - ${BLKID_LIBRARIES} - ${CMAKE_DL_LIBS} -@@ -199,7 +199,7 @@ if(${WITH_RADOSGW}) - cls_rgw_client - cls_user_client - cls_lock_client -- Boost::regex -+ boost_regex - ${BLKID_LIBRARIES} - ${CURL_LIBRARIES} - ${EXPAT_LIBRARIES} -@@ -229,7 +229,7 @@ if(${WITH_RADOSGW}) - cls_rgw_client - cls_user_client - cls_lock_client -- Boost::regex -+ boost_regex - ${BLKID_LIBRARIES} - ${CURL_LIBRARIES} - ${EXPAT_LIBRARIES} -diff --git a/src/test/bench/CMakeLists.txt b/src/test/bench/CMakeLists.txt -index 9fba701e05..da3cbcfe96 100644 ---- a/src/test/bench/CMakeLists.txt -+++ b/src/test/bench/CMakeLists.txt -@@ -8,7 +8,7 @@ set(smalliobench_srcs - add_executable(ceph_smalliobench - ${smalliobench_srcs} - ) --target_link_libraries(ceph_smalliobench librados Boost::program_options global -+target_link_libraries(ceph_smalliobench librados boost_program_options global - ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS}) - - # ceph_smalliobenchrbd -@@ -27,7 +27,7 @@ if(WITH_RBD) - librados - os - global -- Boost::program_options -+ boost_program_options - ${BLKID_LIBRARIES} - ${CMAKE_DL_LIBS} - ) -@@ -50,7 +50,7 @@ set(ceph_smalliobenchfs_srcs - add_executable(ceph_smalliobenchfs - ${ceph_smalliobenchfs_srcs} - ) --target_link_libraries(ceph_smalliobenchfs librados Boost::program_options os global -+target_link_libraries(ceph_smalliobenchfs librados boost_program_options os global - ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS}) - - # ceph_smalliobenchdumb -@@ -63,7 +63,7 @@ set(smalliobenchdumb_srcs - add_executable(ceph_smalliobenchdumb - ${smalliobenchdumb_srcs} - ) --target_link_libraries(ceph_smalliobenchdumb librados Boost::program_options os global -+target_link_libraries(ceph_smalliobenchdumb librados boost_program_options os global - ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS}) - - # ceph_tpbench -@@ -73,7 +73,7 @@ set(tpbench_srcs - add_executable(ceph_tpbench - ${tpbench_srcs} - ) --target_link_libraries(ceph_tpbench librados Boost::program_options global -+target_link_libraries(ceph_tpbench librados boost_program_options global - ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS}) - - install(TARGETS -diff --git a/src/test/erasure-code/CMakeLists.txt b/src/test/erasure-code/CMakeLists.txt -index dc4e0865d0..69502342bb 100644 ---- a/src/test/erasure-code/CMakeLists.txt -+++ b/src/test/erasure-code/CMakeLists.txt -@@ -2,15 +2,15 @@ - add_executable(ceph_erasure_code_benchmark - ${CMAKE_SOURCE_DIR}/src/erasure-code/ErasureCode.cc - ceph_erasure_code_benchmark.cc) --target_link_libraries(ceph_erasure_code_benchmark ceph-common Boost::program_options global ${CMAKE_DL_LIBS}) -+target_link_libraries(ceph_erasure_code_benchmark ceph-common boost_program_options global ${CMAKE_DL_LIBS}) - install(TARGETS ceph_erasure_code_benchmark - DESTINATION bin) - - add_executable(ceph_erasure_code_non_regression ceph_erasure_code_non_regression.cc) --target_link_libraries(ceph_erasure_code_non_regression ceph-common Boost::program_options global ${CMAKE_DL_LIBS}) -+target_link_libraries(ceph_erasure_code_non_regression ceph-common boost_program_options global ${CMAKE_DL_LIBS}) - - add_executable(ceph_erasure_code ceph_erasure_code.cc) --target_link_libraries(ceph_erasure_code ceph-common Boost::program_options global ${CMAKE_DL_LIBS}) -+target_link_libraries(ceph_erasure_code ceph-common boost_program_options global ${CMAKE_DL_LIBS}) - install(TARGETS ceph_erasure_code - DESTINATION bin) - -diff --git a/src/test/librados/CMakeLists.txt b/src/test/librados/CMakeLists.txt -index c35ddb3d8f..3916544259 100644 ---- a/src/test/librados/CMakeLists.txt -+++ b/src/test/librados/CMakeLists.txt -@@ -137,7 +137,7 @@ add_executable(ceph_test_rados_api_tier - set_target_properties(ceph_test_rados_api_tier PROPERTIES COMPILE_FLAGS - ${UNITTEST_CXX_FLAGS}) - target_link_libraries(ceph_test_rados_api_tier -- global rados_a ${UNITTEST_LIBS} Boost::system radostest) -+ global rados_a ${UNITTEST_LIBS} boost_system radostest) - - # ceph_test_rados_api_snapshots - add_executable(ceph_test_rados_api_snapshots -diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt -index 9f72fa3b48..665c977606 100644 ---- a/src/tools/CMakeLists.txt -+++ b/src/tools/CMakeLists.txt -@@ -24,13 +24,13 @@ target_link_libraries(ceph_radosacl librados global) - install(TARGETS ceph_radosacl DESTINATION bin) - - add_executable(ceph-osdomap-tool ceph_osdomap_tool.cc) --target_link_libraries(ceph-osdomap-tool os global Boost::program_options) -+target_link_libraries(ceph-osdomap-tool os global boost_program_options) - install(TARGETS ceph-osdomap-tool DESTINATION bin) - - add_executable(ceph-monstore-tool - ceph_monstore_tool.cc - ../mgr/mgr_commands.cc) --target_link_libraries(ceph-monstore-tool os global Boost::program_options) -+target_link_libraries(ceph-monstore-tool os global boost_program_options) - install(TARGETS ceph-monstore-tool DESTINATION bin) - install(PROGRAMS - ceph-monstore-update-crush.sh -@@ -41,7 +41,7 @@ add_executable(ceph-objectstore-tool - ceph_objectstore_tool.cc - rebuild_mondb.cc - RadosDump.cc) --target_link_libraries(ceph-objectstore-tool osd os global Boost::program_options ${CMAKE_DL_LIBS}) -+target_link_libraries(ceph-objectstore-tool osd os global boost_program_options ${CMAKE_DL_LIBS}) - if(WITH_FUSE) - target_link_libraries(ceph-objectstore-tool fuse) - endif(WITH_FUSE) diff --git a/sys-cluster/ceph/files/ceph-12.2.11-fix-min-call.patch b/sys-cluster/ceph/files/ceph-12.2.11-fix-min-call.patch deleted file mode 100644 index cd9eb4891cb5..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.11-fix-min-call.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/osd/PrimaryLogPG.cc b/src/osd/PrimaryLogPG.cc -index 0074c7964b..98991be7d2 100644 ---- a/src/osd/PrimaryLogPG.cc -+++ b/src/osd/PrimaryLogPG.cc -@@ -1582,7 +1582,7 @@ void PrimaryLogPG::calc_trim_to() - if (limit != eversion_t() && - limit != pg_trim_to && - pg_log.get_log().approx_size() > target) { -- size_t num_to_trim = std::min(pg_log.get_log().approx_size() - target, -+ size_t num_to_trim = std::min((uint64_t)(pg_log.get_log().approx_size() - target), - cct->_conf->osd_pg_log_trim_max); - if (num_to_trim < cct->_conf->osd_pg_log_trim_min && - cct->_conf->osd_pg_log_trim_max >= cct->_conf->osd_pg_log_trim_min) { diff --git a/sys-cluster/ceph/files/ceph-12.2.12-civetweb-openssl-1.1.1.patch b/sys-cluster/ceph/files/ceph-12.2.12-civetweb-openssl-1.1.1.patch deleted file mode 100644 index a21bcc9325d8..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.12-civetweb-openssl-1.1.1.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/civetweb/src/civetweb.c 2017-11-02 10:58:06.000000000 -0700 -+++ b/src/civetweb/src/civetweb.c 2019-04-11 17:23:30.736346783 -0700 -@@ -851,6 +851,7 @@ - #include - #include - #include -+#include - #else - /* SSL loaded dynamically from DLL. - * I put the prototypes here to be independent from OpenSSL source diff --git a/sys-cluster/ceph/files/ceph-12.2.12-dont-use-bad-namespace.patch b/sys-cluster/ceph/files/ceph-12.2.12-dont-use-bad-namespace.patch deleted file mode 100644 index 9a23e1ee60a4..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.12-dont-use-bad-namespace.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/rgw/rgw_crypt.cc b/src/rgw/rgw_crypt.cc -index cf4e38995e..7a4089fca9 100644 ---- a/src/rgw/rgw_crypt.cc -+++ b/src/rgw/rgw_crypt.cc -@@ -31,7 +31,7 @@ using namespace CryptoPP; - #define dout_subsys ceph_subsys_rgw - - using namespace rgw; --using ceph::crypto::PK11_ImportSymKey_FIPS; -+//using ceph::crypto::PK11_ImportSymKey_FIPS; - - /** - * Encryption in CTR mode. offset is used as IV for each block. diff --git a/sys-cluster/ceph/files/ceph-12.2.12-ncurses-tinfo.patch b/sys-cluster/ceph/files/ceph-12.2.12-ncurses-tinfo.patch deleted file mode 100644 index 1b72e5447dbe..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.12-ncurses-tinfo.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/src/tools/rbd/CMakeLists.txt b/src/tools/rbd/CMakeLists.txt -index 7aa42e9efd..66186b159f 100644 ---- a/src/tools/rbd/CMakeLists.txt -+++ b/src/tools/rbd/CMakeLists.txt -@@ -1,3 +1,6 @@ -+set(CURSES_NEED_NCURSES TRUE) -+find_package(Curses REQUIRED) -+ - set(rbd_srcs - rbd.cc - ArgumentTypes.cc -@@ -46,7 +49,7 @@ target_link_libraries(rbd librbd librados - cls_journal_client cls_rbd_client - rbd_types - journal -- ceph-common global -+ ceph-common global ${CURSES_LIBRARIES} - ${BLKID_LIBRARIES} ${CMAKE_DL_LIBS}) - if(WITH_KRBD) - target_link_libraries(rbd diff --git a/sys-cluster/ceph/files/ceph-12.2.12-qa-warning.patch b/sys-cluster/ceph/files/ceph-12.2.12-qa-warning.patch deleted file mode 100644 index 1b63d6e21ba5..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.12-qa-warning.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/common/blkdev.cc b/src/common/blkdev.cc -index d95a397a84..d2cbf4b7b9 100644 ---- a/src/common/blkdev.cc -+++ b/src/common/blkdev.cc -@@ -225,7 +225,7 @@ int get_device_by_uuid(uuid_d dev_uuid, const char* label, char* partition, - rc = get_block_device_base(partition, basename, - sizeof(basename)); - if (rc >= 0) { -- strncpy(device, basename, sizeof(basename)); -+ strncpy(device, basename, sizeof(device)); - rc = 0; - } else { - rc = -ENODEV; diff --git a/sys-cluster/ceph/files/ceph-12.2.4-cflags.patch b/sys-cluster/ceph/files/ceph-12.2.4-cflags.patch deleted file mode 100644 index 3535d8cf4369..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.4-cflags.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/cmake/modules/BuildBoost.cmake b/cmake/modules/BuildBoost.cmake -index c7cd39a110..e7b8115485 100644 ---- a/cmake/modules/BuildBoost.cmake -+++ b/cmake/modules/BuildBoost.cmake -@@ -29,7 +29,7 @@ function(do_build_boost version) - else() - list(APPEND boost_features "address-model=32") - endif() -- set(BOOST_CXXFLAGS "-fPIC -w") # check on arm, etc <---XXX -+ set(BOOST_CXXFLAGS "${CMAKE_CXX_FLAGS} -fPIC -w") # check on arm, etc <---XXX - list(APPEND boost_features "cxxflags=${BOOST_CXXFLAGS}") - - string(REPLACE ";" "," boost_with_libs "${Boost_BUILD_COMPONENTS}") -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 7aa8a4392e..c7543a62bd 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -808,6 +808,7 @@ install(TARGETS ceph-mon DESTINATION bin) - - if (NOT WITH_SYSTEM_ROCKSDB) - set(ROCKSDB_CMAKE_ARGS -DCMAKE_POSITION_INDEPENDENT_CODE=ON) -+ list(APPEND ROCKSDB_CMAKE_ARGS -DDISABLE_WARNING_AS_ERROR=ON) - - if(ALLOCATOR STREQUAL "jemalloc") - list(APPEND ROCKSDB_CMAKE_ARGS -DWITH_JEMALLOC=ON) -diff --git a/src/compressor/zstd/CMakeLists.txt b/src/compressor/zstd/CMakeLists.txt -index d9d2b6e560..1b2099fcbd 100644 ---- a/src/compressor/zstd/CMakeLists.txt -+++ b/src/compressor/zstd/CMakeLists.txt -@@ -1,7 +1,7 @@ - # zstd - - # libzstd - build it statically --set(ZSTD_C_FLAGS -fPIC -Wno-unused-variable -O3) -+set(ZSTD_C_FLAGS -fPIC -Wno-unused-variable $ENV{CFLAGS}) - - include(ExternalProject) - ExternalProject_Add(zstd_ext diff --git a/sys-cluster/ceph/files/ceph-12.2.4-rocksdb-cflags.patch b/sys-cluster/ceph/files/ceph-12.2.4-rocksdb-cflags.patch deleted file mode 100644 index d744318cd111..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.4-rocksdb-cflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ceph-12.2.4.orig/src/rocksdb/CMakeLists.txt 2018-03-05 19:06:21.016923872 -0800 -+++ ceph-12.2.4/src/rocksdb/CMakeLists.txt 2018-03-05 19:09:01.798721666 -0800 -@@ -147,7 +147,7 @@ - endif() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") - if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2 -fno-omit-frame-pointer") -+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-omit-frame-pointer") - include(CheckCXXCompilerFlag) - CHECK_CXX_COMPILER_FLAG("-momit-leaf-frame-pointer" HAVE_OMIT_LEAF_FRAME_POINTER) - if(HAVE_OMIT_LEAF_FRAME_POINTER) diff --git a/sys-cluster/ceph/files/ceph-12.2.5-no-werror.patch b/sys-cluster/ceph/files/ceph-12.2.5-no-werror.patch deleted file mode 100644 index dd24e7819fe0..000000000000 --- a/sys-cluster/ceph/files/ceph-12.2.5-no-werror.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -ur ceph-12.2.5.orig/src/rapidjson/CMakeLists.txt ceph-12.2.5/src/rapidjson/CMakeLists.txt ---- ceph-12.2.5.orig/src/rapidjson/CMakeLists.txt 2018-07-09 11:18:09.188115751 -0700 -+++ ceph-12.2.5/src/rapidjson/CMakeLists.txt 2018-07-09 11:36:56.848639110 -0700 -@@ -50,7 +50,7 @@ - endif(CCACHE_FOUND) - - if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wall -Wextra -Werror") -+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wall -Wextra") - if (RAPIDJSON_BUILD_CXX11) - if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7.0") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") -@@ -73,7 +73,7 @@ - endif() - endif() - elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang") -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wall -Wextra -Werror -Wno-missing-field-initializers") -+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -Wall -Wextra -Wno-missing-field-initializers") - if (RAPIDJSON_BUILD_CXX11) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") - endif() -diff -ur ceph-12.2.5.orig/src/rocksdb/CMakeLists.txt ceph-12.2.5/src/rocksdb/CMakeLists.txt ---- ceph-12.2.5.orig/src/rocksdb/CMakeLists.txt 2018-07-09 11:18:09.219115543 -0700 -+++ ceph-12.2.5/src/rocksdb/CMakeLists.txt 2018-07-09 11:34:58.843411195 -0700 -@@ -174,15 +174,6 @@ - PROPERTIES COMPILE_FLAGS "-msse4.2") - endif() - --option(FAIL_ON_WARNINGS "Treat compile warnings as errors" ON) --if(FAIL_ON_WARNINGS) -- if(MSVC) -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX") -- else() # assume GCC -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") -- endif() --endif() -- - option(WITH_ASAN "build with ASAN" OFF) - if(WITH_ASAN) - add_definitions(-DROCKSDB_TSAN_RUN) -diff -ur ceph-12.2.5.orig/src/rocksdb/Makefile ceph-12.2.5/src/rocksdb/Makefile ---- ceph-12.2.5.orig/src/rocksdb/Makefile 2018-03-11 18:58:51.000000000 -0700 -+++ ceph-12.2.5/src/rocksdb/Makefile 2018-07-09 11:35:53.847049123 -0700 -@@ -243,11 +243,6 @@ - WARNING_FLAGS = -W -Wextra -Wall -Wsign-compare -Wshadow \ - -Wno-unused-parameter - --ifndef DISABLE_WARNING_AS_ERROR -- WARNING_FLAGS += -Werror --endif -- -- - ifdef LUA_PATH - - ifndef LUA_INCLUDE diff --git a/sys-cluster/ceph/metadata.xml b/sys-cluster/ceph/metadata.xml index b29a383d9b5a..141b26fdddb2 100644 --- a/sys-cluster/ceph/metadata.xml +++ b/sys-cluster/ceph/metadata.xml @@ -27,7 +27,6 @@ Rados Gateway's pubsub support for Kafka push endpoint Add support for LTTng Build the ceph-mgr daemon - Use dev-libs/nss for cryptography Use sys-process/numactl for numa support in rocksdb Use dev-libs/openssl Enable PMDK libraries diff --git a/sys-cluster/libqb/libqb-2.0.1.ebuild b/sys-cluster/libqb/libqb-2.0.1.ebuild index 385c29d12209..e8500802eaa8 100644 --- a/sys-cluster/libqb/libqb-2.0.1.ebuild +++ b/sys-cluster/libqb/libqb-2.0.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ClusterLabs/${PN}/releases/download/v${PV}/${P}.tar. LICENSE="LGPL-2.1" SLOT="0/100" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~x86" IUSE="debug doc examples systemd test" RESTRICT="!test? ( test )" diff --git a/sys-cluster/nomad/Manifest b/sys-cluster/nomad/Manifest index 270d3c07c087..6e34eeeba82b 100644 --- a/sys-cluster/nomad/Manifest +++ b/sys-cluster/nomad/Manifest @@ -1,3 +1,4 @@ DIST nomad-0.12.3.tar.gz 51432205 BLAKE2B 77090f387e25f226c8d05b6ea16abfac0f4b710a40a3e7e5455bd6c8b7992080980967d4ebb92257348968dddbb45d2e5c3b58f143ae1205742bf08f0dec2a71 SHA512 17d361db11104ddbbae12a17301005c8eca3650e3fdda8f2fd6db8474728f31a2b6f828f2fba7e7d9d132b08cfb070799273353a17f5f66baa4dc5a0492562f8 DIST nomad-0.12.4.tar.gz 51468076 BLAKE2B 42ca90649263dae6aaa29921853816b6172b285f2675a3fe68aca423bd15213924263433e01d870fa502cfc53372cb6f30f810c7aaadfe63970f91c4bb630912 SHA512 2fb12f96a14772d0a382f40aa686d61823630d49778365447410e7c4a4d7f3cbff275fdeea823f3c397642ce7aeae3618c295d4b08ea884dc51190960f33110e DIST nomad-0.12.5.tar.gz 51464001 BLAKE2B 825160a751481972335c4f37ef0514ddeb676a13a210f0faa43d06f1601bb794edf72402b0dfcf96426611e20eb530a5f077b97b331ce07e5fb6b3d3c7598130 SHA512 a3ffff37f3342de041696b1d6e39661d809e5cb82d27d9b2ba67a33a8698eb4afca929679093ec0d23f364a41307e669a6948e58429b97f49ec046d01f8d97f7 +DIST nomad-0.12.8.tar.gz 51472616 BLAKE2B 17316e4305edc5a74d640d1bd46e1f997ae43727a6c6dcc5df19af64c659a9b00e4fa2c45c92d70ff70b465278b1bb5c03d81d041facf89549faba17d86efa96 SHA512 c4615043bd1ce3c28cc9a564d58cc0ebbd197b4761763f4d4106fc8d36678c1d8b5b697a38c5ec1093d7d3973b700cd5f32415ec10b8c00546aa1707dea25231 diff --git a/sys-cluster/nomad/nomad-0.12.8.ebuild b/sys-cluster/nomad/nomad-0.12.8.ebuild new file mode 100644 index 000000000000..3b9472c5d179 --- /dev/null +++ b/sys-cluster/nomad/nomad-0.12.8.ebuild @@ -0,0 +1,45 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module systemd +GIT_COMMIT=99fa2774301199ee20e661c7c1832a6ee1d5c553 + +DESCRIPTION="A simple and flexible workload orchestrator " +HOMEPAGE="https://nomadproject.io" +SRC_URI="https://github.com/hashicorp/nomad/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="nvidia" + +RESTRICT+=" test" + +src_compile() { + local go_ldflags go_tags + go_ldflags="-X github.com/hashicorp/nomad/version.GitCommit=${GIT_COMMIT}" + go_tags="codegen_generated $(usex nvidia '' 'nonvidia')" + CGO_ENABLED=1 \ + go build \ + -trimpath \ + -ldflags "${go_ldflags}" \ + -mod=vendor \ + -tags "${go_tags}" \ + -o bin/${PN} || die "compile failed" +} + +src_install() { + dobin bin/${PN} + systemd_dounit dist/systemd/nomad.service + insinto /etc/nomad.d + newins dist/client.hcl client.hcl.example + newins dist/server.hcl server.hcl.example + einstalldocs +dodoc CHANGELOG.md + keepdir /var/lib/nomad /var/log/nomad + newconfd "${FILESDIR}/nomad.confd" nomad + newinitd "${FILESDIR}/nomad.initd" nomad + insinto /etc/logrotate.d + newins "${FILESDIR}/nomad.logrotated" nomad +} diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 3cfa7e5bed1f..42688d6893ec 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/automake/Manifest b/sys-devel/automake/Manifest index f32953b5b1c8..5cd3ba98c842 100644 --- a/sys-devel/automake/Manifest +++ b/sys-devel/automake/Manifest @@ -6,6 +6,7 @@ DIST automake-1.14.1.tar.xz 1488984 BLAKE2B a4c9b1f2c5ca35fba62e57423be2b6c060c6 DIST automake-1.15.1.tar.xz 1509496 BLAKE2B e6ade31089f969140472004cd9854318470228c64e4f8e829d48c5379f62d2c5f8ef9509131c577653e81868d94544ecf6520f86b5d582ebb6ed65c832039f30 SHA512 02f661b2676f1d44334ce1c7188f9913a6874bf46ba487708ad8090ad57905f14aead80fefed815e21effacfbb925e23b944ea7dd32563dca39c1a4174eda688 DIST automake-1.16.1.tar.xz 1534936 BLAKE2B 0a3b42375361ff3c07e861eb2974fa094f8e76e4c6fcad02d6413402d201506b1cd660a187ffa1d2b29d8955ef60088f7b07d96405d803895b593b35b78f443a SHA512 4013bd31f4903b10875caa7d6ac16a14623a4eb91aa758924dee5b990e234fb50848d131e2dbdbbbc32f89c41a14f9c52a0064c37aa6760c524d607b354b13c3 DIST automake-1.16.2.tar.xz 1545912 BLAKE2B 88e12fc7792c1a3a9c3b9095760145c2ebf3799602320efe5885a0cac16ced2cfb95865abf0a96b6969aa4652eb2b3d2ac8dae550d721392be45fc10c2458b67 SHA512 a4aa0e41ceaa7df5bc303a6004597fb158f4198594017cd2c586fd9f5a29233e081766bf22b7e4ef0d4c8c3d45a8591009427efa319b362922a958ac1ef6e27b +DIST automake-1.16.3.tar.xz 1590708 BLAKE2B ab6001a1b09e171ec83bac07155a77ab0fc29f5185116616aa3080b27e8bbf759472cd0dfb75630b26f7ad8d0741e668662d00b370ef79cf5ef6c62e945c94da SHA512 7265aeb7f82a8a205761d76e6ade7b7e97831c283349fd80f86e511f4b0b3e17f429d1506fca84c76079f63781e5dbf5ca81455d6bf6cda27d2e5c3d23b0d1aa DIST automake-1.4-p6.tar.gz 375060 BLAKE2B 681c70a2932ae1697d0b9907c8a8d12ed0d506be4a2812dff93af7c3b659ee1ed24a97f0a653f9a49c0d4a78a70965482b39f1297e9f6d6099d3857a2d451f69 SHA512 3f3235e68ab6703668deac015926124c7eeeea6925e830c6820cb156f15f8ee3febd0fd0cc2ab4f4b5c405b528e4ce12b2459347f62ed6a1a862bc9969163d9e DIST automake-1.5.tar.gz 526934 BLAKE2B 4b613c81f933d550cc9e5e40dd9ce1160f49c388f4e9292b1a8843b0f4cfc57d72a3dc10bce03260cffa61ab8d67a5b27d781bd7a4c2d842764135158dc2b54f SHA512 b9dbece18935b6c08f7d17c456b0359a17362dc030692629cf5d66db675e46a5f24d60dfd20a50780e4096163454f1922d4281c4bb7af336d61e527b579e3bfc DIST automake-1.6.3.tar.bz2 476275 BLAKE2B 5d0b7f69cbf9fda3b1f1426548fae45c631375898568b442cc5d3561a618ad3f15b6103f55539487dcbf4088a6f75887dce5d00851bc4c09c5db45012d6bc2f1 SHA512 8407ea7d51a238622326d89c22777050c2a49d456e3e33c53985f40e4108094ef149693568d926cd1e9b2ddbdb5693c0d0ec6220e0f7bbae4341b6be9f0d060f diff --git a/sys-devel/automake/automake-1.16.2-r1.ebuild b/sys-devel/automake/automake-1.16.2-r1.ebuild new file mode 100644 index 000000000000..b43cfe295120 --- /dev/null +++ b/sys-devel/automake/automake-1.16.2-r1.ebuild @@ -0,0 +1,126 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_6 python3_7 ) + +inherit python-any-r1 + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.savannah.gnu.org/r/${PN}.git" + + inherit git-r3 +else + 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" + if [[ ${PV/_beta} == ${PV} ]]; then + MY_P="${P}" + SRC_URI="mirror://gnu/${PN}/${P}.tar.xz + https://alpha.gnu.org/pub/gnu/${PN}/${MY_P}.tar.xz" + else + MY_PV="$(ver_cut 1).$(($(ver_cut 2)-1))b" + MY_P="${PN}-${MY_PV}" + + # Alpha/beta releases are not distributed on the usual mirrors. + SRC_URI="https://alpha.gnu.org/pub/gnu/${PN}/${MY_P}.tar.xz" + fi + S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="Used to generate Makefile.in from Makefile.am" +HOMEPAGE="https://www.gnu.org/software/automake/" + +LICENSE="GPL-2" +# Use Gentoo versioning for slotting. +SLOT="${PV:0:4}" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-lang/perl + >=sys-devel/automake-wrapper-11 + >=sys-devel/autoconf-2.69:* + sys-devel/gnuconfig" +DEPEND="${RDEPEND}" +BDEPEND=" + app-arch/gzip + sys-apps/help2man + test? ( ${PYTHON_DEPS} ) +" + +PATCHES=( + "${FILESDIR}"/automake-1.16.2-py3-compile.patch + "${FILESDIR}"/automake-1.16.2-fix-instmany-python.sh-test.patch + "${FILESDIR}"/automake-1.16.2-fix-py-compile-basedir.sh-test.patch + "${FILESDIR}"/automake-1.16.2-skip-tags-lisp-space-without-etags.patch +) + +pkg_setup() { + use test && python-any-r1_pkg_setup +} + +src_prepare() { + default + export WANT_AUTOCONF=2.5 + # Don't try wrapping the autotools this thing runs as it tends + # to be a bit esoteric, and the script does `set -e` itself. + ./bootstrap || die + sed -i -e "/APIVERSION=/s:=.*:=${SLOT}:" configure || die + + # Bug 628912 + if ! has_version sys-apps/texinfo ; then + touch doc/{stamp-vti,version.texi,automake.info} || die + fi +} + +# slot the info pages. do this w/out munging the source so we don't have +# to depend on texinfo to regen things. #464146 (among others) +slot_info_pages() { + pushd "${ED}"/usr/share/info >/dev/null || die + rm -f dir + + # Rewrite all the references to other pages. + # before: * aclocal-invocation: (automake)aclocal Invocation. Generating aclocal.m4. + # after: * aclocal-invocation v1.13: (automake-1.13)aclocal Invocation. Generating aclocal.m4. + local p pages=( *.info ) args=() + for p in "${pages[@]/%.info}" ; do + args+=( + -e "/START-INFO-DIR-ENTRY/,/END-INFO-DIR-ENTRY/s|: (${p})| v${SLOT}&|" + -e "s:(${p}):(${p}-${SLOT}):g" + ) + done + sed -i "${args[@]}" * || die + + # Rewrite all the file references, and rename them in the process. + local f d + for f in * ; do + d=${f/.info/-${SLOT}.info} + mv "${f}" "${d}" || die + sed -i -e "s:${f}:${d}:g" * || die + done + + popd >/dev/null || die +} + +src_install() { + default + + slot_info_pages + rm "${ED}"/usr/share/aclocal/README || die + rmdir "${ED}"/usr/share/aclocal || die + rm \ + "${ED}"/usr/bin/{aclocal,automake} \ + "${ED}"/usr/share/man/man1/{aclocal,automake}.1 || die + + # remove all config.guess and config.sub files replacing them + # w/a symlink to a specific gnuconfig version + local x + for x in guess sub ; do + dosym ../gnuconfig/config.${x} \ + /usr/share/${PN}-${SLOT}/config.${x} + done + + # Avoid QA message about pre-compressed file in docs + local tarfile="${ED}/usr/share/doc/${PF}/amhello-1.0.tar.gz" + if [[ -f "${tarfile}" ]] ; then + gunzip "${tarfile}" || die + fi +} diff --git a/sys-devel/automake/automake-1.16.2.ebuild b/sys-devel/automake/automake-1.16.3-r1.ebuild similarity index 96% rename from sys-devel/automake/automake-1.16.2.ebuild rename to sys-devel/automake/automake-1.16.3-r1.ebuild index fc05add3e373..361141a285ab 100644 --- a/sys-devel/automake/automake-1.16.2.ebuild +++ b/sys-devel/automake/automake-1.16.3-r1.ebuild @@ -48,8 +48,9 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/automake-1.16.2-py3-compile.patch + "${FILESDIR}"/automake-1.16.2-fix-instmany-python.sh-test.patch + "${FILESDIR}"/automake-1.16.2-fix-py-compile-basedir.sh-test.patch ) -# All patches have been submitted upstream. pkg_setup() { use test && python-any-r1_pkg_setup diff --git a/sys-devel/automake/files/automake-1.16.2-fix-instmany-python.sh-test.patch b/sys-devel/automake/files/automake-1.16.2-fix-instmany-python.sh-test.patch new file mode 100644 index 000000000000..5cddb4cfb83f --- /dev/null +++ b/sys-devel/automake/files/automake-1.16.2-fix-instmany-python.sh-test.patch @@ -0,0 +1,26 @@ +From 50daac4f15d207b6b69011b9cdde62b56c1c8b10 Mon Sep 17 00:00:00 2001 +From: Thomas Deutschmann +Date: Fri, 20 Nov 2020 02:17:31 +0100 +Subject: [PATCH 2/2] tests: fix instmany-python.sh: increase limit + +Still failing with 4500 on Gentoo. Passing with 7000... +--- + t/instmany-python.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/t/instmany-python.sh b/t/instmany-python.sh +index dce3594b5..1c482520d 100644 +--- a/t/instmany-python.sh ++++ b/t/instmany-python.sh +@@ -21,7 +21,7 @@ + required='python' + . test-init.sh + +-limit=4500 ++limit=7000 + subdir=long_subdir_name_with_many_characters + nfiles=81 + list=$(seq_ 1 $nfiles) +-- +2.29.2 + diff --git a/sys-devel/automake/files/automake-1.16.2-fix-py-compile-basedir.sh-test.patch b/sys-devel/automake/files/automake-1.16.2-fix-py-compile-basedir.sh-test.patch new file mode 100644 index 000000000000..f49dd253c2d6 --- /dev/null +++ b/sys-devel/automake/files/automake-1.16.2-fix-py-compile-basedir.sh-test.patch @@ -0,0 +1,26 @@ +From e3db5b8038a902501a354b6921dcebcb4180f50a Mon Sep 17 00:00:00 2001 +From: Thomas Deutschmann +Date: Fri, 20 Nov 2020 02:13:56 +0100 +Subject: [PATCH 1/2] tests: fix py-compile-basedir.sh: add missing test call + +Fixes: b279a0d46 ("tests: in python tests, do not require .pyo files (for python3)") +--- + t/py-compile-basedir.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/t/py-compile-basedir.sh b/t/py-compile-basedir.sh +index 13a22ff1d..1a16ee2d7 100644 +--- a/t/py-compile-basedir.sh ++++ b/t/py-compile-basedir.sh +@@ -43,7 +43,7 @@ for d in foo foo/bar "$(pwd)/foo" . .. ../foo ''; do + py_installed "$d2/sub/$f.pyc" + files=$(find "$d2" | grep '\.py[co]$') + # with new-enough Python3, there are six files. +- test $(echo "$files" | wc -l) -eq 4 || $(echo "$files" | wc -l) -eq 6 ++ test $(echo "$files" | wc -l) -eq 4 || test $(echo "$files" | wc -l) -eq 6 + case $d2 in + .|..) rm -f $files;; + *) rm -rf "$d2";; +-- +2.29.2 + diff --git a/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch b/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch new file mode 100644 index 000000000000..70ca8f783c3e --- /dev/null +++ b/sys-devel/automake/files/automake-1.16.2-skip-tags-lisp-space-without-etags.patch @@ -0,0 +1,23 @@ +From 77d39959511295f5a30332d5d03f0a6956bd9460 Mon Sep 17 00:00:00 2001 +From: Karl Berry +Date: Tue, 24 Mar 2020 18:30:18 -0700 +Subject: [PATCH] tests: require etags for tags-lisp-space test. + +* t/tags-lisp-space.sh (required): set to etags. +--- + t/tags-lisp-space.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/t/tags-lisp-space.sh b/t/tags-lisp-space.sh +index d0a940ba3..44312b0b7 100755 +--- a/t/tags-lisp-space.sh ++++ b/t/tags-lisp-space.sh +@@ -18,7 +18,7 @@ + # if there are CONFIG_HEADERS. + # See automake bug#38139. + +-required='' ++required=etags + . test-init.sh + + # some AC_CONFIG_FILES header is needed to trigger the bug. diff --git a/sys-devel/gcc-config/gcc-config-2.3.2.ebuild b/sys-devel/gcc-config/gcc-config-2.3.2-r1.ebuild similarity index 93% rename from sys-devel/gcc-config/gcc-config-2.3.2.ebuild rename to sys-devel/gcc-config/gcc-config-2.3.2-r1.ebuild index c2ff9c8d49d4..f2c2954c4d2b 100644 --- a/sys-devel/gcc-config/gcc-config-2.3.2.ebuild +++ b/sys-devel/gcc-config/gcc-config-2.3.2-r1.ebuild @@ -17,14 +17,15 @@ DESCRIPTION="Utility to manage compilers" HOMEPAGE="https://gitweb.gentoo.org/proj/gcc-config.git/" LICENSE="GPL-2" SLOT="0" -IUSE="+native-symlinks" +IUSE="+cc-wrappers +native-symlinks" RDEPEND=">=sys-apps/gentoo-functions-0.10" _emake() { emake \ - PV="${PV}" \ + PV="${PVR}" \ SUBLIBDIR="$(get_libdir)" \ + USE_CC_WRAPPERS="$(usex cc-wrappers)" \ USE_NATIVE_LINKS="$(usex native-symlinks)" \ TOOLCHAIN_PREFIX="${CHOST}-" \ "$@" diff --git a/sys-devel/gcc-config/gcc-config-9999.ebuild b/sys-devel/gcc-config/gcc-config-9999.ebuild index e7e08f381b4d..2af22f6a6333 100644 --- a/sys-devel/gcc-config/gcc-config-9999.ebuild +++ b/sys-devel/gcc-config/gcc-config-9999.ebuild @@ -23,7 +23,7 @@ RDEPEND=">=sys-apps/gentoo-functions-0.10" _emake() { emake \ - PV="${PV}" \ + PV="${PVR}" \ SUBLIBDIR="$(get_libdir)" \ USE_CC_WRAPPERS="$(usex cc-wrappers)" \ USE_NATIVE_LINKS="$(usex native-symlinks)" \ diff --git a/sys-devel/llvm-roc/files/llvm-roc-3.9.0-tensorflow.patch b/sys-devel/llvm-roc/files/llvm-roc-3.9.0-tensorflow.patch new file mode 100644 index 000000000000..3e1124457ad3 --- /dev/null +++ b/sys-devel/llvm-roc/files/llvm-roc-3.9.0-tensorflow.patch @@ -0,0 +1,35 @@ +--- llvm-project-rocm-3.9.0.orig/CMakeLists.txt 2020-11-12 22:03:09.902293395 +0100 ++++ llvm-project-rocm-3.9.0/CMakeLists.txt 2020-11-12 22:07:28.185294853 +0100 +@@ -824,6 +824,11 @@ + ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def + ) + ++# They are not referenced. See set_output_directory(). ++set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin ) ++set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) ++set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) ++ + # For up-to-date instructions for installing the Tensorflow dependency, refer to + # the bot setup script: https://github.com/google/ml-compiler-opt/blob/master/buildbot/buildbot_init.sh + # In this case, the latest C API library is available for download from +@@ -832,18 +837,13 @@ + # LLVM_HAVE_TF_API, through llvm-config.h, so that a user of the LLVM library may + # also leverage the dependency. + set(TENSORFLOW_C_LIB_PATH "" CACHE PATH "Path to TensorFlow C library install") +-find_library(tensorflow_c_api tensorflow PATHS ${TENSORFLOW_C_LIB_PATH}/lib) + +-if (tensorflow_c_api) ++if (TENSORFLOW_C_LIB_PATH) ++ find_library(tensorflow_c_api tensorflow PATHS ${TENSORFLOW_C_LIB_PATH}/lib NO_DEFAULT_PATH REQUIRED) + set(LLVM_HAVE_TF_API "ON" CACHE BOOL "Full Tensorflow API available") + include_directories(${TENSORFLOW_C_LIB_PATH}/include) + endif() + +-# They are not referenced. See set_output_directory(). +-set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin ) +-set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) +-set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} ) +- + # For up-to-date instructions for installing the Tensorflow dependency, refer to + # the bot setup script: https://github.com/google/ml-compiler-opt/blob/master/buildbot/buildbot_init.sh + # Specifically, assuming python3 is installed: diff --git a/sys-devel/llvm-roc/llvm-roc-3.9.0.ebuild b/sys-devel/llvm-roc/llvm-roc-3.9.0.ebuild index 8bcc3f8ce0eb..bc0fdfcde777 100644 --- a/sys-devel/llvm-roc/llvm-roc-3.9.0.ebuild +++ b/sys-devel/llvm-roc/llvm-roc-3.9.0.ebuild @@ -25,6 +25,7 @@ S="${WORKDIR}/llvm-project-rocm-${PV}/llvm" PATCHES=( "${FILESDIR}/${PN}-3.7.0-current_pos.patch" + "${FILESDIR}/${P}-tensorflow.patch" ) CMAKE_BUILD_TYPE=RelWithDebInfo diff --git a/sys-firmware/Manifest.gz b/sys-firmware/Manifest.gz index 0e6b9b25f54e..502aeed0ba6f 100644 Binary files a/sys-firmware/Manifest.gz and b/sys-firmware/Manifest.gz differ diff --git a/sys-firmware/intel-microcode/Manifest b/sys-firmware/intel-microcode/Manifest index 3373bca79870..20d2f36ff05c 100644 --- a/sys-firmware/intel-microcode/Manifest +++ b/sys-firmware/intel-microcode/Manifest @@ -1,8 +1,3 @@ -DIST intel-microcode-collection-20200617.tar.xz 6097076 BLAKE2B cbd323fb98569c58c3d89f0f7ae3bb4b215c518d90a83086e19fba9f61cfc591908e24a3d8620f93fbd6b6aa418ceb4e8899684dab3bc9450d4af08314d7a243 SHA512 0e99a75c1632da1e80b6d888b313d280e97e2902b51a21d2551444a5b6a332f85e8a008f69553b7154c50e68f90bfe7f86e152e2babd7a2d0b839ff27d18f8c0 -DIST intel-microcode-collection-20200921.tar.xz 6482440 BLAKE2B d8cc478bf61c750fc73f1fd55ce8d8dd6655abc79bea77d2dfa21241ee0ff44c10931e28c6343494433d8dc1784b5bbf6ab47e5c8d5fa7c230749e057e21e33a SHA512 7c34a851b7047640557a2708bf0af9adcb40cffae73aa0c6d4a64dec33ba3df00854b056bb042d9886a9726eccb6053b418a2c515f07faa06d1ed0dfa984db05 -DIST intel-microcode-collection-20201110.tar.xz 6476772 BLAKE2B 9f6bbc568f62a1593eba85a34861b70fd2598b745e1aac58df0ba4c248a9fafd1cda7bc428dfeff5b8da05d8098b7b98c7a64dc16ad4967aa34eff5b25d64a84 SHA512 6cf50f8f3b3531de11231e1f209c667bb715c5d4362ae5d4852ba7b76087e51dca2028b78dd521034013a32daf82c06cb6573f8fefc4acc8b955b42cef2ddea9 DIST intel-microcode-collection-20201116.tar.xz 6506624 BLAKE2B b74ec0ddafe9681ae94d6a0df1de51655004eecae83c413fa824c9ad25cf68a25059627e2809a3b8cd5b3cb18647455385de0be2b2a7fcc6bc6c30e2ccabd1af SHA512 3a1aab0af9ff6dc95778276964b457a4429aa12f13499f6f89fa48285cf8aef9a0990099a80e360b76b2d4b6a836f2528f984aab17f12d905cf237dbab2a8b33 DIST intel-ucode-sig_0x406e3-rev_0xd6.bin 101376 BLAKE2B 66d55867954d69dda1425febd93bb8c89f7aa836d504f8b5fee127f8505bcf2246f4fcc55cc245bc5e532528d60cca2eee278de7ab5174dc2862db7982a2b36f SHA512 248066b521bf512b5d8e4a8c7e921464ce52169c954d6e4ca580d8c172cd789519e22b4cf56c212e452b4191741f0202019f7061d322c9433b5af9ce5413b567 -DIST microcode-20200616.tar.gz 3036726 BLAKE2B c4db887743c916804624683b51306ba1fdb2281c3583a35706edfd5d6fbd7027793bf6fa952ba96dacd0e9b399a8e632d4997e46e13eba89d55f49328e0b5367 SHA512 39c4de3a292da0aeef4f35624d22ca6116dc8baa7f0683b1c16f5e153ba6d9d52f0879263313ef67922eda551d998521d3721af880c22c63083d8ebce81f413f -DIST microcode-20201110.tar.gz 3609989 BLAKE2B e984f6a69d8652f2842c78e62902c1aaca2fa39c2d9079be03ef829e8e9cb7e621bdfa6c5d49a2ad16759b393a7daaa375fe853c4e37a8789e280dfc749c3a9c SHA512 da0a2614fcd651536a2dc64a2207ab02d8b482453e9d2ae18f628f1cbc3da0aa0734f830264fca5541823693d300f74ae60f7014cbf43b87ff55345c8fd80014 DIST microcode-20201112.tar.gz 3610834 BLAKE2B 4212924f1673afded961266a25fe6063ec6cdafaa26c8bee1c42372eb8ab5f278dc2501615b23e09e2f9809bf2792a8db317c98c170bf0c5e1dd62b7dc80a084 SHA512 0875675d065a83ee14fa34a31022ee34e46aee579d1ff192414e79861af157ae269ca7c2c462f03b3accbd45590c76e5cbf4f53d7a6ed237e410213a96459211 diff --git a/sys-firmware/intel-microcode/intel-microcode-20200616_p20200617.ebuild b/sys-firmware/intel-microcode/intel-microcode-20200616_p20200617.ebuild deleted file mode 100644 index d20d0f472faa..000000000000 --- a/sys-firmware/intel-microcode/intel-microcode-20200616_p20200617.ebuild +++ /dev/null @@ -1,259 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit linux-info toolchain-funcs mount-boot - -# Find updates by searching and clicking the first link (hopefully it's the one): -# https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File - -COLLECTION_SNAPSHOT="${PV##*_p}" -INTEL_SNAPSHOT="${PV/_p*}" -#NUM="28087" -#https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM} -#https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz -DESCRIPTION="Intel IA32/IA64 microcode update data" -HOMEPAGE="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/" -SRC_URI="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${INTEL_SNAPSHOT}.tar.gz - https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin - https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz" - -LICENSE="intel-ucode" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="hostonly initramfs +split-ucode vanilla" -REQUIRED_USE="|| ( initramfs split-ucode )" - -BDEPEND=">=sys-apps/iucode_tool-2.3" - -# !/dev/null; then - # new tarball format from GitHub - mv * ../ || die "Failed to move Intel-Linux-Processor-Microcode-Data*" - cd .. || die - rm -r Intel-Linux-Processor-Microcode-Data* || die - fi - - mkdir intel-ucode-old || die - cp "${DISTDIR}"/intel-ucode-sig_0x406e3-rev_0xd6.bin "${S}"/intel-ucode-old/ || die - - # Prevent "invalid file format" errors from iucode_tool - rm -f "${S}"/intel-ucod*/list || die -} - -src_install() { - # This will take ALL of the upstream microcode sources: - # - microcode.dat - # - intel-ucode/ - # In some cases, they have not contained the same content (eg the directory has newer stuff). - MICROCODE_SRC=( - "${S}"/intel-ucode/ - "${S}"/intel-ucode-with-caveats/ - "${S}"/intel-ucode-old/ - ) - - # Allow users who are scared about microcode updates not included in Intel's official - # microcode tarball to opt-out and comply with Intel marketing - if ! use vanilla; then - MICROCODE_SRC+=( "${S}"/intel-microcode-collection-${COLLECTION_SNAPSHOT} ) - fi - - # These will carry into pkg_preinst via env saving. - : ${MICROCODE_BLACKLIST=${MICROCODE_BLACKLIST_DEFAULT}} - : ${MICROCODE_SIGNATURES=${MICROCODE_SIGNATUES_DEFAULT}} - - opts=( - ${MICROCODE_BLACKLIST} - ${MICROCODE_SIGNATURES} - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && dodir /boot && opts+=( --write-earlyfw="${ED}/boot/intel-uc.img" ) - - keepdir /lib/firmware/intel-ucode - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - - iucode_tool \ - "${opts[@]}" \ - "${MICROCODE_SRC[@]}" \ - || die "iucode_tool ${opts[@]} ${MICROCODE_SRC[@]}" - - dodoc releasenote -} - -pkg_preinst() { - if [[ ${MICROCODE_BLACKLIST} != ${MICROCODE_BLACKLIST_DEFAULT} ]]; then - ewarn "MICROCODE_BLACKLIST is set to \"${MICROCODE_BLACKLIST}\" instead of default \"${MICROCODE_BLACKLIST_DEFAULT}\". You are on your own!" - fi - - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "Package was created using advanced options:" - ewarn "MICROCODE_SIGNATURES is set to \"${MICROCODE_SIGNATURES}\" instead of default \"${MICROCODE_SIGNATURES_DEFAULT}\"!" - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst - - local _initramfs_file="${ED}/boot/intel-uc.img" - - if use hostonly; then - # While this output looks redundant we do this check to detect - # rare cases where iucode_tool was unable to detect system's processor(s). - local _detected_processors=$(iucode_tool --scan-system 2>&1) - if [[ -z "${_detected_processors}" ]]; then - ewarn "Looks like iucode_tool was unable to detect any processor!" - else - einfo "Only installing ucode(s) for ${_detected_processors#iucode_tool: system has } due to USE=hostonly ..." - fi - - opts=( - --scan-system - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && opts+=( --write-earlyfw=${_initramfs_file} ) - - if use split-ucode; then - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - fi - - opts+=( "${ED}/lib/firmware/intel-ucode-temp" ) - - mv "${ED}"/lib/firmware/intel-ucode{,-temp} || die - keepdir /lib/firmware/intel-ucode - - iucode_tool "${opts[@]}" || die "iucode_tool ${opts[@]}" - - rm -r "${ED}"/lib/firmware/intel-ucode-temp || die - - elif ! use split-ucode; then # hostonly disabled - rm -r "${ED}"/lib/firmware/intel-ucode || die - fi - - # Because it is possible that this package will install not one single file - # due to user selection which is still somehow unexpected we add the following - # check to inform user so that the user has at least a chance to detect - # a problem/invalid select. - local _has_installed_something= - if use initramfs && [[ -s "${_initramfs_file}" ]]; then - _has_installed_something="yes" - elif use split-ucode; then - _has_installed_something=$(find "${ED}/lib/firmware/intel-ucode" -maxdepth 0 -not -empty -exec echo yes \;) - fi - - if use hostonly && [[ -n "${_has_installed_something}" ]]; then - elog "You only installed ucode(s) for all currently available (=online)" - elog "processor(s). Remember to re-emerge this package whenever you" - elog "change the system's processor model." - elog "" - elif [[ -z "${_has_installed_something}" ]]; then - ewarn "WARNING:" - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "No ucode was installed! Because you have created this package" - ewarn "using MICROCODE_SIGNATURES variable please double check if you" - ewarn "have an invalid select." - ewarn "It's rare but it is also possible that just no ucode update" - ewarn "is available for your processor(s). In this case it is safe" - ewarn "to ignore this warning." - else - ewarn "No ucode was installed! It's rare but it is also possible" - ewarn "that just no ucode update is available for your processor(s)." - ewarn "In this case it is safe to ignore this warning." - fi - - ewarn "" - - if use hostonly; then - ewarn "Unset \"hostonly\" USE flag to install all available ucodes." - ewarn "" - fi - fi -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/intel-uc.img! - use initramfs && mount-boot_pkg_prerm -} - -pkg_postrm() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postrm -} - -pkg_postinst() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst - - # We cannot give detailed information if user is affected or not: - # If MICROCODE_BLACKLIST wasn't modified, user can still use MICROCODE_SIGNATURES - # to to force a specific, otherwise blacklisted, microcode. So we - # only show a generic warning based on running kernel version: - if kernel_is -lt 4 14 34; then - ewarn "${P} contains microcode updates which require" - ewarn "additional kernel patches which aren't yet included in kernel <4.14.34." - ewarn "Loading such a microcode through kernel interface from an unpatched kernel" - ewarn "can crash your system!" - ewarn "" - ewarn "Those microcodes are blacklisted per default. However, if you have altered" - ewarn "MICROCODE_BLACKLIST or MICROCODE_SIGNATURES, you maybe have unintentionally" - ewarn "re-enabled those microcodes...!" - ewarn "" - ewarn "Check \"${EROOT}/usr/share/doc/${PN}-*/releasenot*\" if your microcode update" - ewarn "requires additional kernel patches or not." - fi -} diff --git a/sys-firmware/intel-microcode/intel-microcode-20200616_p20200921.ebuild b/sys-firmware/intel-microcode/intel-microcode-20200616_p20200921.ebuild deleted file mode 100644 index d20d0f472faa..000000000000 --- a/sys-firmware/intel-microcode/intel-microcode-20200616_p20200921.ebuild +++ /dev/null @@ -1,259 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit linux-info toolchain-funcs mount-boot - -# Find updates by searching and clicking the first link (hopefully it's the one): -# https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File - -COLLECTION_SNAPSHOT="${PV##*_p}" -INTEL_SNAPSHOT="${PV/_p*}" -#NUM="28087" -#https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM} -#https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz -DESCRIPTION="Intel IA32/IA64 microcode update data" -HOMEPAGE="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/" -SRC_URI="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${INTEL_SNAPSHOT}.tar.gz - https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin - https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz" - -LICENSE="intel-ucode" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="hostonly initramfs +split-ucode vanilla" -REQUIRED_USE="|| ( initramfs split-ucode )" - -BDEPEND=">=sys-apps/iucode_tool-2.3" - -# !/dev/null; then - # new tarball format from GitHub - mv * ../ || die "Failed to move Intel-Linux-Processor-Microcode-Data*" - cd .. || die - rm -r Intel-Linux-Processor-Microcode-Data* || die - fi - - mkdir intel-ucode-old || die - cp "${DISTDIR}"/intel-ucode-sig_0x406e3-rev_0xd6.bin "${S}"/intel-ucode-old/ || die - - # Prevent "invalid file format" errors from iucode_tool - rm -f "${S}"/intel-ucod*/list || die -} - -src_install() { - # This will take ALL of the upstream microcode sources: - # - microcode.dat - # - intel-ucode/ - # In some cases, they have not contained the same content (eg the directory has newer stuff). - MICROCODE_SRC=( - "${S}"/intel-ucode/ - "${S}"/intel-ucode-with-caveats/ - "${S}"/intel-ucode-old/ - ) - - # Allow users who are scared about microcode updates not included in Intel's official - # microcode tarball to opt-out and comply with Intel marketing - if ! use vanilla; then - MICROCODE_SRC+=( "${S}"/intel-microcode-collection-${COLLECTION_SNAPSHOT} ) - fi - - # These will carry into pkg_preinst via env saving. - : ${MICROCODE_BLACKLIST=${MICROCODE_BLACKLIST_DEFAULT}} - : ${MICROCODE_SIGNATURES=${MICROCODE_SIGNATUES_DEFAULT}} - - opts=( - ${MICROCODE_BLACKLIST} - ${MICROCODE_SIGNATURES} - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && dodir /boot && opts+=( --write-earlyfw="${ED}/boot/intel-uc.img" ) - - keepdir /lib/firmware/intel-ucode - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - - iucode_tool \ - "${opts[@]}" \ - "${MICROCODE_SRC[@]}" \ - || die "iucode_tool ${opts[@]} ${MICROCODE_SRC[@]}" - - dodoc releasenote -} - -pkg_preinst() { - if [[ ${MICROCODE_BLACKLIST} != ${MICROCODE_BLACKLIST_DEFAULT} ]]; then - ewarn "MICROCODE_BLACKLIST is set to \"${MICROCODE_BLACKLIST}\" instead of default \"${MICROCODE_BLACKLIST_DEFAULT}\". You are on your own!" - fi - - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "Package was created using advanced options:" - ewarn "MICROCODE_SIGNATURES is set to \"${MICROCODE_SIGNATURES}\" instead of default \"${MICROCODE_SIGNATURES_DEFAULT}\"!" - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst - - local _initramfs_file="${ED}/boot/intel-uc.img" - - if use hostonly; then - # While this output looks redundant we do this check to detect - # rare cases where iucode_tool was unable to detect system's processor(s). - local _detected_processors=$(iucode_tool --scan-system 2>&1) - if [[ -z "${_detected_processors}" ]]; then - ewarn "Looks like iucode_tool was unable to detect any processor!" - else - einfo "Only installing ucode(s) for ${_detected_processors#iucode_tool: system has } due to USE=hostonly ..." - fi - - opts=( - --scan-system - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && opts+=( --write-earlyfw=${_initramfs_file} ) - - if use split-ucode; then - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - fi - - opts+=( "${ED}/lib/firmware/intel-ucode-temp" ) - - mv "${ED}"/lib/firmware/intel-ucode{,-temp} || die - keepdir /lib/firmware/intel-ucode - - iucode_tool "${opts[@]}" || die "iucode_tool ${opts[@]}" - - rm -r "${ED}"/lib/firmware/intel-ucode-temp || die - - elif ! use split-ucode; then # hostonly disabled - rm -r "${ED}"/lib/firmware/intel-ucode || die - fi - - # Because it is possible that this package will install not one single file - # due to user selection which is still somehow unexpected we add the following - # check to inform user so that the user has at least a chance to detect - # a problem/invalid select. - local _has_installed_something= - if use initramfs && [[ -s "${_initramfs_file}" ]]; then - _has_installed_something="yes" - elif use split-ucode; then - _has_installed_something=$(find "${ED}/lib/firmware/intel-ucode" -maxdepth 0 -not -empty -exec echo yes \;) - fi - - if use hostonly && [[ -n "${_has_installed_something}" ]]; then - elog "You only installed ucode(s) for all currently available (=online)" - elog "processor(s). Remember to re-emerge this package whenever you" - elog "change the system's processor model." - elog "" - elif [[ -z "${_has_installed_something}" ]]; then - ewarn "WARNING:" - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "No ucode was installed! Because you have created this package" - ewarn "using MICROCODE_SIGNATURES variable please double check if you" - ewarn "have an invalid select." - ewarn "It's rare but it is also possible that just no ucode update" - ewarn "is available for your processor(s). In this case it is safe" - ewarn "to ignore this warning." - else - ewarn "No ucode was installed! It's rare but it is also possible" - ewarn "that just no ucode update is available for your processor(s)." - ewarn "In this case it is safe to ignore this warning." - fi - - ewarn "" - - if use hostonly; then - ewarn "Unset \"hostonly\" USE flag to install all available ucodes." - ewarn "" - fi - fi -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/intel-uc.img! - use initramfs && mount-boot_pkg_prerm -} - -pkg_postrm() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postrm -} - -pkg_postinst() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst - - # We cannot give detailed information if user is affected or not: - # If MICROCODE_BLACKLIST wasn't modified, user can still use MICROCODE_SIGNATURES - # to to force a specific, otherwise blacklisted, microcode. So we - # only show a generic warning based on running kernel version: - if kernel_is -lt 4 14 34; then - ewarn "${P} contains microcode updates which require" - ewarn "additional kernel patches which aren't yet included in kernel <4.14.34." - ewarn "Loading such a microcode through kernel interface from an unpatched kernel" - ewarn "can crash your system!" - ewarn "" - ewarn "Those microcodes are blacklisted per default. However, if you have altered" - ewarn "MICROCODE_BLACKLIST or MICROCODE_SIGNATURES, you maybe have unintentionally" - ewarn "re-enabled those microcodes...!" - ewarn "" - ewarn "Check \"${EROOT}/usr/share/doc/${PN}-*/releasenot*\" if your microcode update" - ewarn "requires additional kernel patches or not." - fi -} diff --git a/sys-firmware/intel-microcode/intel-microcode-20201110_p20201110.ebuild b/sys-firmware/intel-microcode/intel-microcode-20201112_p20201116-r1.ebuild similarity index 98% rename from sys-firmware/intel-microcode/intel-microcode-20201110_p20201110.ebuild rename to sys-firmware/intel-microcode/intel-microcode-20201112_p20201116-r1.ebuild index fb5b79ed7459..a162e73196e8 100644 --- a/sys-firmware/intel-microcode/intel-microcode-20201110_p20201110.ebuild +++ b/sys-firmware/intel-microcode/intel-microcode-20201112_p20201116-r1.ebuild @@ -44,6 +44,9 @@ MICROCODE_BLACKLIST_DEFAULT+=" -s !0x000406e3,0xc0,eq:0x00dc" # https://bugs.gentoo.org/722768 MICROCODE_BLACKLIST_DEFAULT+=" -s !0x000406e3,0xc0,eq:0x00da" +# https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/commit/49bb67f32a2e3e631ba1a9a73da1c52e1cac7fd9 +MICROCODE_BLACKLIST_DEFAULT+=" -s !0x000806c1,0x80,eq:0x0068" + # In case we want to set some defaults ... MICROCODE_SIGNATURES_DEFAULT="" diff --git a/sys-firmware/intel-microcode/intel-microcode-20201112_p20201116.ebuild b/sys-firmware/intel-microcode/intel-microcode-20201112_p20201116.ebuild deleted file mode 100644 index fb5b79ed7459..000000000000 --- a/sys-firmware/intel-microcode/intel-microcode-20201112_p20201116.ebuild +++ /dev/null @@ -1,259 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit linux-info toolchain-funcs mount-boot - -# Find updates by searching and clicking the first link (hopefully it's the one): -# https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File - -COLLECTION_SNAPSHOT="${PV##*_p}" -INTEL_SNAPSHOT="${PV/_p*}" -#NUM="28087" -#https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM} -#https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz -DESCRIPTION="Intel IA32/IA64 microcode update data" -HOMEPAGE="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files http://inertiawar.com/microcode/" -SRC_URI="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${INTEL_SNAPSHOT}.tar.gz - https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/raw/437f382b1be4412b9d03e2bbdcda46d83d581242/intel-ucode/06-4e-03 -> intel-ucode-sig_0x406e3-rev_0xd6.bin - https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz" - -LICENSE="intel-ucode" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="hostonly initramfs +split-ucode vanilla" -REQUIRED_USE="|| ( initramfs split-ucode )" - -BDEPEND=">=sys-apps/iucode_tool-2.3" - -# !/dev/null; then - # new tarball format from GitHub - mv * ../ || die "Failed to move Intel-Linux-Processor-Microcode-Data*" - cd .. || die - rm -r Intel-Linux-Processor-Microcode-Data* || die - fi - - mkdir intel-ucode-old || die - cp "${DISTDIR}"/intel-ucode-sig_0x406e3-rev_0xd6.bin "${S}"/intel-ucode-old/ || die - - # Prevent "invalid file format" errors from iucode_tool - rm -f "${S}"/intel-ucod*/list || die -} - -src_install() { - # This will take ALL of the upstream microcode sources: - # - microcode.dat - # - intel-ucode/ - # In some cases, they have not contained the same content (eg the directory has newer stuff). - MICROCODE_SRC=( - "${S}"/intel-ucode/ - "${S}"/intel-ucode-with-caveats/ - "${S}"/intel-ucode-old/ - ) - - # Allow users who are scared about microcode updates not included in Intel's official - # microcode tarball to opt-out and comply with Intel marketing - if ! use vanilla; then - MICROCODE_SRC+=( "${S}"/intel-microcode-collection-${COLLECTION_SNAPSHOT} ) - fi - - # These will carry into pkg_preinst via env saving. - : ${MICROCODE_BLACKLIST=${MICROCODE_BLACKLIST_DEFAULT}} - : ${MICROCODE_SIGNATURES=${MICROCODE_SIGNATUES_DEFAULT}} - - opts=( - ${MICROCODE_BLACKLIST} - ${MICROCODE_SIGNATURES} - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && dodir /boot && opts+=( --write-earlyfw="${ED}/boot/intel-uc.img" ) - - keepdir /lib/firmware/intel-ucode - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - - iucode_tool \ - "${opts[@]}" \ - "${MICROCODE_SRC[@]}" \ - || die "iucode_tool ${opts[@]} ${MICROCODE_SRC[@]}" - - dodoc releasenote.md -} - -pkg_preinst() { - if [[ ${MICROCODE_BLACKLIST} != ${MICROCODE_BLACKLIST_DEFAULT} ]]; then - ewarn "MICROCODE_BLACKLIST is set to \"${MICROCODE_BLACKLIST}\" instead of default \"${MICROCODE_BLACKLIST_DEFAULT}\". You are on your own!" - fi - - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "Package was created using advanced options:" - ewarn "MICROCODE_SIGNATURES is set to \"${MICROCODE_SIGNATURES}\" instead of default \"${MICROCODE_SIGNATURES_DEFAULT}\"!" - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst - - local _initramfs_file="${ED}/boot/intel-uc.img" - - if use hostonly; then - # While this output looks redundant we do this check to detect - # rare cases where iucode_tool was unable to detect system's processor(s). - local _detected_processors=$(iucode_tool --scan-system 2>&1) - if [[ -z "${_detected_processors}" ]]; then - ewarn "Looks like iucode_tool was unable to detect any processor!" - else - einfo "Only installing ucode(s) for ${_detected_processors#iucode_tool: system has } due to USE=hostonly ..." - fi - - opts=( - --scan-system - # be strict about what we are doing - --overwrite - --strict-checks - --no-ignore-broken - # we want to install latest version - --no-downgrade - # show everything we find - --list-all - # show what we selected - --list - ) - - # The earlyfw cpio needs to be in /boot because it must be loaded before - # rootfs is mounted. - use initramfs && opts+=( --write-earlyfw=${_initramfs_file} ) - - if use split-ucode; then - opts+=( --write-firmware="${ED}/lib/firmware/intel-ucode" ) - fi - - opts+=( "${ED}/lib/firmware/intel-ucode-temp" ) - - mv "${ED}"/lib/firmware/intel-ucode{,-temp} || die - keepdir /lib/firmware/intel-ucode - - iucode_tool "${opts[@]}" || die "iucode_tool ${opts[@]}" - - rm -r "${ED}"/lib/firmware/intel-ucode-temp || die - - elif ! use split-ucode; then # hostonly disabled - rm -r "${ED}"/lib/firmware/intel-ucode || die - fi - - # Because it is possible that this package will install not one single file - # due to user selection which is still somehow unexpected we add the following - # check to inform user so that the user has at least a chance to detect - # a problem/invalid select. - local _has_installed_something= - if use initramfs && [[ -s "${_initramfs_file}" ]]; then - _has_installed_something="yes" - elif use split-ucode; then - _has_installed_something=$(find "${ED}/lib/firmware/intel-ucode" -maxdepth 0 -not -empty -exec echo yes \;) - fi - - if use hostonly && [[ -n "${_has_installed_something}" ]]; then - elog "You only installed ucode(s) for all currently available (=online)" - elog "processor(s). Remember to re-emerge this package whenever you" - elog "change the system's processor model." - elog "" - elif [[ -z "${_has_installed_something}" ]]; then - ewarn "WARNING:" - if [[ ${MICROCODE_SIGNATURES} != ${MICROCODE_SIGNATURES_DEFAULT} ]]; then - ewarn "No ucode was installed! Because you have created this package" - ewarn "using MICROCODE_SIGNATURES variable please double check if you" - ewarn "have an invalid select." - ewarn "It's rare but it is also possible that just no ucode update" - ewarn "is available for your processor(s). In this case it is safe" - ewarn "to ignore this warning." - else - ewarn "No ucode was installed! It's rare but it is also possible" - ewarn "that just no ucode update is available for your processor(s)." - ewarn "In this case it is safe to ignore this warning." - fi - - ewarn "" - - if use hostonly; then - ewarn "Unset \"hostonly\" USE flag to install all available ucodes." - ewarn "" - fi - fi -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/intel-uc.img! - use initramfs && mount-boot_pkg_prerm -} - -pkg_postrm() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postrm -} - -pkg_postinst() { - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst - - # We cannot give detailed information if user is affected or not: - # If MICROCODE_BLACKLIST wasn't modified, user can still use MICROCODE_SIGNATURES - # to to force a specific, otherwise blacklisted, microcode. So we - # only show a generic warning based on running kernel version: - if kernel_is -lt 4 14 34; then - ewarn "${P} contains microcode updates which require" - ewarn "additional kernel patches which aren't yet included in kernel <4.14.34." - ewarn "Loading such a microcode through kernel interface from an unpatched kernel" - ewarn "can crash your system!" - ewarn "" - ewarn "Those microcodes are blacklisted per default. However, if you have altered" - ewarn "MICROCODE_BLACKLIST or MICROCODE_SIGNATURES, you maybe have unintentionally" - ewarn "re-enabled those microcodes...!" - ewarn "" - ewarn "Check \"${EROOT}/usr/share/doc/${PN}-*/releasenot*\" if your microcode update" - ewarn "requires additional kernel patches or not." - fi -} diff --git a/sys-fs/Manifest.gz b/sys-fs/Manifest.gz index 8b53e8706971..fb35df17799b 100644 Binary files a/sys-fs/Manifest.gz and b/sys-fs/Manifest.gz differ diff --git a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r3.ebuild b/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r3.ebuild deleted file mode 100644 index 57753cb339ce..000000000000 --- a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r3.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PV=${PV%_p*} - -DESCRIPTION="HFS and HFS+ utils ported from OSX, supplies mkfs and fsck" -HOMEPAGE="http://opendarwin.org" -SRC_URI="http://darwinsource.opendarwin.org/tarballs/apsl/diskdev_cmds-${MY_PV}.tar.gz - mirror://gentoo/diskdev_cmds-${PV}.patch.bz2" -LICENSE="APSL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="libressl" -DEPEND=" - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-${MY_PV}" - -PATCHES=( - "${WORKDIR}"/diskdev_cmds-${PV}.patch - "${FILESDIR}"/${PN}-respect-cflags.patch - "${FILESDIR}"/${P}-AR.patch - "${FILESDIR}"/${P}-no-sysctl.patch -) - -src_compile() { - emake -f Makefile.lnx AR="$(tc-getAR)" CC="$(tc-getCC)" -} - -src_install() { - into / - dosbin fsck_hfs.tproj/fsck_hfs - dosbin newfs_hfs.tproj/newfs_hfs - dosym newfs_hfs /sbin/mkfs.hfs - dosym newfs_hfs /sbin/mkfs.hfsplus - dosym fsck_hfs /sbin/fsck.hfs - dosym fsck_hfs /sbin/fsck.hfsplus - doman newfs_hfs.tproj/newfs_hfs.8 - newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfs.8 - newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfsplus.8 - doman fsck_hfs.tproj/fsck_hfs.8 - newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfs.8 - newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfsplus.8 -} diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest index c6746968827a..13e5a1b20862 100644 --- a/sys-fs/fatsort/Manifest +++ b/sys-fs/fatsort/Manifest @@ -1,2 +1 @@ -DIST fatsort-1.6.2.605.tar.xz 122928 BLAKE2B 2690233828e47a4809aac14a8d64dc8d95a824bec52f787190186adbe066d5d4e6f9c6d1873fc6b809c6df6879d12154430f44d412944963bdff49e673079d12 SHA512 0d119c99c5efff4c10367152fc6efe95e2cb1c39405ca02dd25b66cc68c7420b5b28c0daca1346b7928633bac8ace2d05d731502f989d39ca5c783dcec69ccc7 DIST fatsort-1.6.3.622.tar.xz 123644 BLAKE2B 1db530753bdaee4ebda9ab36a47f6794584bc590de4cbf8d144a5baa770c080c9d27a1ecadd5a22de72538887c4e10f161f3c4fb3afb3e63bd18834897ebe905 SHA512 309c7424e53fb74f57d0c4272a1a4b3df57fa1130d7e7adae0ac73ac1c8b1900504e49efd0cc4dafea3efa2fbc9191f343b10bb97b647dd6124197356cd01c53 diff --git a/sys-fs/fatsort/fatsort-1.6.2.605.ebuild b/sys-fs/fatsort/fatsort-1.6.2.605.ebuild deleted file mode 100644 index 0f3cb645a3c3..000000000000 --- a/sys-fs/fatsort/fatsort-1.6.2.605.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players" -HOMEPAGE="http://fatsort.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -PATCHES=( - "${FILESDIR}/${P}-gcc10.patch" -) - -src_prepare() { - default - - sed -i -e 's|/usr/local|/usr|g' \ - $(find ./ -name Makefile) || die -} - -src_compile() { - emake CC=$(tc-getCC) LD=$(tc-getCC) \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - DESTDIR="${D}" -} - -src_test() { - # Tests require root permissions and mounting filesystems which does - # not work inside the ebuild environment - true -} diff --git a/sys-fs/fatsort/files/fatsort-1.6.2.605-gcc10.patch b/sys-fs/fatsort/files/fatsort-1.6.2.605-gcc10.patch deleted file mode 100644 index 0446fe3e09dc..000000000000 --- a/sys-fs/fatsort/files/fatsort-1.6.2.605-gcc10.patch +++ /dev/null @@ -1,256 +0,0 @@ -Index: tests/Makefile -=================================================================== ---- a/tests/Makefile (revision 606) -+++ b/tests/Makefile (revision 613) -@@ -19,7 +19,7 @@ - if [ ! -f $$i/passed ]; then \ - printf "%.70s" "Test case $$i... "; \ - printf "[ \e[1;33mWAIT \e[0m]"; \ -- ${MAKE} -C $$i &>> /dev/null; \ -+ ${MAKE} -C $$i &> /dev/null; \ - ret=$$?; \ - printf "\r%.70s" "Test case $$i... "; \ - if [ $$ret -eq 0 ]; then \ -Index: CHANGES.md -=================================================================== ---- a/CHANGES.md (revision 606) -+++ b/CHANGES.md (revision 613) -@@ -1,5 +1,11 @@ - # Changelog - -+## v1.6.3 (xxx) -+* fixed support for macOS (thanks to Max for the fix) -+* declared OPT_LOCALE as extern -+* fixed uninitialized variable -+* avoided some string truncation compiler warnings -+ - ## v1.6.2 (November 29, 2019) - - FIX: multiple endianness issues with exFAT - - now using /proc/self/mounts instead of /etc/mtab to check whether filesystem is mounted -Index: src/FAT_fs.c -=================================================================== ---- a/src/FAT_fs.c (revision 606) -+++ b/src/FAT_fs.c (revision 613) -@@ -42,7 +42,7 @@ - // used to check if device is mounted - #if defined(__LINUX__) - #include --#elif defined (__BSD__) -+#elif defined (__BSD__) || defined (__OSX__) - #include - #include - #endif -@@ -85,7 +85,7 @@ - - return ret; - --#elif defined(__BSD__) -+#elif defined(__BSD__) || defined(__OSX__) - struct statfs *mntbuf; - int i, mntsize; - int32_t ret = 0; -Index: src/deviceio.c -=================================================================== ---- a/src/deviceio.c (revision 606) -+++ b/src/deviceio.c (revision 613) -@@ -24,7 +24,7 @@ - - #include "deviceio.h" - --#if defined __LINUX__ || defined __BSD__ -+#if defined __LINUX__ || defined __BSD__ || defined __OSX__ - - #include - #include -@@ -59,7 +59,7 @@ - #include "mallocv.h" - #include "errors.h" - --#if defined __LINUX__ || defined __BSD__ -+#if defined __LINUX__ || defined __BSD__ || defined __OSX__ - - DEVICE *device_open(const char *path) { - -@@ -88,7 +88,7 @@ - assert(device != NULL); - assert(offset >= 0); - --#if defined __BSD__ -+#if defined __BSD__ || defined __OSX__ - return lseek(device->fd, (off_t) offset, SEEK_SET); - #else - return lseek64(device->fd, (off64_t) offset, SEEK_SET); -Index: src/deviceio.h -=================================================================== ---- a/src/deviceio.h (revision 606) -+++ b/src/deviceio.h (revision 613) -@@ -27,7 +27,7 @@ - - #include - --#if defined __LINUX__ || defined __BSD__ -+#if defined __LINUX__ || defined __BSD__ || defined __OSX__ - - #define DIRECTORY_SEPARATOR '/' - -Index: src/fatsort.c -=================================================================== ---- a/src/fatsort.c (revision 606) -+++ b/src/fatsort.c (revision 613) -@@ -45,7 +45,7 @@ - - // program information - #define INFO_PROGRAM "fatsort" --#define INFO_VERSION "1.6.2" -+#define INFO_VERSION "1.6.3" - #define INFO_AUTHOR "Written by Boris Leidner.\n" - #define INFO_COPYRIGHT "Copyright (C) 2004-2019 Boris Leidner.\n" - #define INFO_LICENSE "License GPLv2: GNU GPL version 2 (see LICENSE.txt)\n" \ -Index: src/sort.c -=================================================================== ---- a/src/sort.c (revision 606) -+++ b/src/sort.c (revision 613) -@@ -261,14 +261,15 @@ - - struct sExFATDirEntry de; - struct sExFATDirEntrySet *des; -- struct sExFATDirEntryList *del; -+ struct sExFATDirEntryList *del=NULL; - - char name[MAX_PATH_LEN+1]; -- char str[32]; -+ char str[31]; - char *outptr, *inptr; - uint8_t nameLength=0; - -- size_t outcount, incount, iret; -+ size_t outcount=30; -+ size_t incount, iret; - - *direntrysets=0; - -@@ -376,7 +377,7 @@ - } - outptr[0]='\0'; - -- strncat(name, str, 30); -+ strncat(name, str, 31); - - // we are done here - if (entries == expected_entries) { -@@ -512,7 +513,7 @@ - union sDirEntry de; - struct sDirEntryList *lnde; - struct sLongDirEntryList *llist; -- char tmp[MAX_PATH_LEN+1], dummy[MAX_PATH_LEN*2+1], sname[MAX_PATH_LEN+1], lname[MAX_PATH_LEN+1]; -+ char tmp[MAX_PATH_LEN+1], dummy[MAX_PATH_LEN+1], sname[MAX_PATH_LEN+1], lname[MAX_PATH_LEN+1]; - - *direntries=0; - -@@ -589,8 +590,11 @@ - return -1; - } - -- snprintf(dummy, MAX_PATH_LEN*2+1, "%s%s", tmp, lname); -- strncpy(lname, dummy, MAX_PATH_LEN); -+ strncpy(dummy, tmp, MAX_PATH_LEN); -+ dummy[MAX_PATH_LEN]='\0'; -+ strncat(dummy, lname, MAX_PATH_LEN - strlen(dummy)); -+ dummy[MAX_PATH_LEN]='\0'; -+ strncpy(lname, dummy, MAX_PATH_LEN+1); - - break; - default: -@@ -708,8 +712,8 @@ - dummy[MAX_PATH_LEN]='\0'; - strncat(dummy, lname, MAX_PATH_LEN - strlen(dummy)); - dummy[MAX_PATH_LEN]='\0'; -- strncpy(lname, dummy, MAX_PATH_LEN); -- dummy[MAX_PATH_LEN]='\0'; -+ strncpy(lname, dummy, MAX_PATH_LEN+1); -+ //dummy[MAX_PATH_LEN]='\0'; - break; - default: - myerror("Unhandled return code!"); -Index: src/options.c -=================================================================== ---- a/src/options.c (revision 606) -+++ b/src/options.c (revision 613) -@@ -55,7 +55,6 @@ - assert(stringList != NULL); - assert(stringList->str == NULL); - assert(str != NULL); -- assert(strlen((char *)str) <= MAX_PATH_LEN); - - char *newStr; - -@@ -77,14 +76,16 @@ - // copy string to new structure including missing slashes - newStr[0] = '\0'; - if (prefix) newStr[0] = DIRECTORY_SEPARATOR; -- strncat(newStr, (const char*) str, len); -+ memcpy(newStr+prefix, (const char*) str, len); - if (suffix) newStr[prefix+len] = DIRECTORY_SEPARATOR; - -+/* - if (prefix+len+suffix > MAX_PATH_LEN) { - newStr[MAX_PATH_LEN] = '\0'; - } else { - newStr[prefix+len+suffix] = '\0'; - } -+*/ - - ret = addStringToStringList(stringList, newStr); - -@@ -137,7 +138,7 @@ - parses command line options - */ - -- int8_t c; -+ int8_t c,len; - - static struct option longOpts[] = { - // name, has_arg, flag, val -@@ -315,12 +316,13 @@ - case 't' : OPT_MODIFICATION = 1; break; - case 'v' : OPT_VERSION = 1; break; - case 'L' : -- OPT_LOCALE=realloc(OPT_LOCALE, strlen(optarg)+1); -+ len=strlen(optarg); -+ OPT_LOCALE=realloc(OPT_LOCALE, len+1); - if (OPT_LOCALE == NULL) { - stderror(); - return -1; - } -- strncpy(OPT_LOCALE, optarg, strlen(optarg)+1); -+ memcpy(OPT_LOCALE, optarg, len+1); - break; - default : - myerror("Unknown option '%c'.", optopt); -Index: src/stringlist.c -=================================================================== ---- a/src/stringlist.c (revision 606) -+++ b/src/stringlist.c (revision 613) -@@ -78,8 +78,7 @@ - return -1; - } - -- strncpy(stringList->next->str, str, len); -- stringList->next->str[len] = '\0'; -+ memcpy(stringList->next->str, str, len+1); - - return 0; - -Index: src/options.h -=================================================================== ---- a/src/options.h (revision 606) -+++ b/src/options.h (revision 613) -@@ -35,7 +35,7 @@ - extern struct sStringList *OPT_INCL_DIRS, *OPT_EXCL_DIRS, *OPT_INCL_DIRS_REC, *OPT_EXCL_DIRS_REC, *OPT_IGNORE_PREFIXES_LIST; - extern struct sRegExList *OPT_REGEX_INCL, *OPT_REGEX_EXCL; - --char *OPT_LOCALE; -+extern char *OPT_LOCALE; - - // parses command line options - int32_t parse_options(int argc, char *argv[]); diff --git a/sys-fs/lxcfs/Manifest b/sys-fs/lxcfs/Manifest index 5ba9117585a5..8f400a3957e9 100644 --- a/sys-fs/lxcfs/Manifest +++ b/sys-fs/lxcfs/Manifest @@ -1,3 +1,2 @@ -DIST lxcfs-4.0.5.tar.gz 101842 BLAKE2B c916473e1b7ad42b8f69026a16810941c999d44ffcf1d456cb301411965f05e626338a5bde1e38fe99acd05f72bbcd5acbdcb2f65fa5ec183c967babcb8c70fd SHA512 5c44aa7f43071a4316cc8702928fde2c928bd5654c9ab4d540152839db0d7dd235a861f263da56f02611941d46d22eee98e0cdd52aeaeda99f3c79c754d420a1 DIST lxcfs-4.0.6.tar.gz 451636 BLAKE2B 97de1825c4a91f4107dbee513246ff48a04956adce7a262a9744730067ac9c31fb6c7802757912640e58eb93504e12338e572acacf3ad300c1253eb517583226 SHA512 843ca196304efc963549c0e081bea4d58182887611da36232e875de4898d738111a967d89b4b49a9df51f25daf119ad2d488b8298cdef82926be03a7fa99a8a2 DIST lxcfs-4.0.6.tar.gz.asc 833 BLAKE2B c5700c962a608fabc1a7ae4cd708c590a26dfebb72ea9c3db81500bb4e936e7f7358fbfb2c2a0e9531ffceb266d719bb3f6415f4d018ac1ba87b7b7ebddd21bf SHA512 ceffb3dfe3b2751b944be08df84dc30c465b8cde12e16d37e54ce616e5f2032f287a475ca280da51bc4fc518904e64ea7f4681dd6070e63ebd7ecba8b09600e5 diff --git a/sys-fs/lxcfs/lxcfs-4.0.5.ebuild b/sys-fs/lxcfs/lxcfs-4.0.5.ebuild deleted file mode 100644 index 8c7b1f79d64f..000000000000 --- a/sys-fs/lxcfs/lxcfs-4.0.5.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools systemd - -DESCRIPTION="FUSE filesystem for LXC" -HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/" -SRC_URI="https://github.com/lxc/lxcfs/archive/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64" - -RDEPEND="dev-libs/glib:2 - sys-fs/fuse:0" -DEPEND="${RDEPEND}" -BDEPEND="sys-apps/help2man" - -RESTRICT="test" - -S="${WORKDIR}/${PN}-${P}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # Without the localstatedir the filesystem isn't mounted correctly - # Without with-distro ./configure will fail when cross-compiling - econf --localstatedir=/var --with-distro=gentoo -} - -src_test() { - cd tests/ || die - emake tests - ./main.sh || die "Tests failed" -} - -src_install() { - default - - newconfd "${FILESDIR}"/lxcfs-4.0.0.confd lxcfs - newinitd "${FILESDIR}"/lxcfs-4.0.0.initd lxcfs - - # Provide our own service file (copy of upstream) due to paths being different from upstream, - # 728470 - systemd_newunit "${FILESDIR}"/lxcfs-4.0.0.service lxcfs.service -} diff --git a/sys-fs/lxcfs/lxcfs-4.0.6.ebuild b/sys-fs/lxcfs/lxcfs-4.0.6.ebuild index eacb9ba10aab..2ac14261e39b 100644 --- a/sys-fs/lxcfs/lxcfs-4.0.6.ebuild +++ b/sys-fs/lxcfs/lxcfs-4.0.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://linuxcontainers.org/downloads/lxcfs/${P}.tar.gz LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" RDEPEND="dev-libs/glib:2 sys-fs/fuse:3" diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 9667419761d6..f3308d3217a3 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 37404c767770..f247d1c99f4c 100644 --- a/sys-kernel/gentoo-kernel-bin/Manifest +++ b/sys-kernel/gentoo-kernel-bin/Manifest @@ -4,6 +4,12 @@ DIST gentoo-kernel-5.4.72-1.x86.xpak 53373842 BLAKE2B 2ea66aee50688fb5d28ac2295d DIST gentoo-kernel-5.4.77-1.amd64.xpak 61529981 BLAKE2B f0b39c3223cf7b82b512dc4d07f7aac33bdd4963215370683d6b6140105556b697e7f518490fc9a084670c4c4802992a8d0dd16e5c1f153927bb689ed9894548 SHA512 f808b03a205ef60fe3eb2bc387080010ef9e1603592eddff100666d62fbfee9de6ba611721c2af9ede77872829a2163e31b8e9b784a379ea570c339ce90881c2 DIST gentoo-kernel-5.4.77-1.arm64.xpak 56694327 BLAKE2B 5e967b46ebf8ff653d46ae9836f5edb5c97c356a5605f494bd4410ab16a06df8be1eb76cc7be32a69afa2f3ee1c7abefa968b4b806c6e327b372a70360ac5633 SHA512 6483662cf0af6041dd1e2c8f6196eafc042bf2515a120f6b629d5b0bdd72728ecc57ddc23194aff42a38251109295c83c4da9e248a2a5785f7eb5cc59674800f DIST gentoo-kernel-5.4.77-1.x86.xpak 53384834 BLAKE2B 29b6748b3d9c292eedb9685a1dc78bc1e22afa3aaf6eec1411e42373cf5b0dfdcf09232280d82a7dc1c80fdc5cdb6771fd35ff0edf949fb8a87a1dd70294dce8 SHA512 afc82fe923d0f8e1794cbc5579545de08bff956440785794869a5249621e37c29409a9da0ae807cc95e71f76d6c7009b1ff03c7c742677f893ca335515ff6438 +DIST gentoo-kernel-5.4.78-1.amd64.xpak 60979483 BLAKE2B 059e0ee30c65f4b1316881e0c6d7f2e05a8286a5cc5a985ea44cba2889255a4a8660efb06fafaf6ace16a06c39379f572231d5f48e93c74406ceedefc804e3fc SHA512 3b4fc132f0f963ffb08f12100d64ac54ae79f0bbb998f4fcbc387c0f6c5dbfc057f430f93d2e37eef0b348d52a95b11780d695e0772d6a15cfdd7187b71c777d +DIST gentoo-kernel-5.4.78-1.arm64.xpak 56126704 BLAKE2B 03c27d4cdd4240e047cef63e2acc1443394f00ee0e37567f89464a66a05eb7d246246dee2178f0061551d8e594915f8e611b295dca333e5e430f292cb30e6fc4 SHA512 28f9ff4e28173b50e554844db7e21f651e69d4e93afeb2fbbcb7f775aea726a6134cb49baad660431a6c75aedb3883ccd6c2f77496e64184b1100d830deff7eb +DIST gentoo-kernel-5.4.78-1.x86.xpak 52898113 BLAKE2B c5c10104c2c82402cc61e5ff3409ca407b35d5d363b1bab2e7ea464aefd145c0a3da34ae0fe5bacc3d487399a401bf4c21794806b6d99f173f4bd1002e69a860 SHA512 f54a350c2129b182f054cc3ac2e5f1f54071ac9cf0b15a5e77d62ed8f146da037581b8f046116d8eef4b214d4c915256612dd1ca29e7cb945f015b1560f34718 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 +DIST gentoo-kernel-5.9.9-1.amd64.xpak 62935632 BLAKE2B 75fd3d10a25112a79d1ade40dde1ee525fb6ad1c2437ae094610664778523851a41c897b73360631fed4a364cd516a5c7736f3c775ec093c18b4a1f36676536f SHA512 338b6494309c62d22ac7fafce5d81a3ec78368da8e0276dcad1aac1d7b3abb13a0218eac50912035b39a9bd47cd140110a2e0277ac42cb65e336f5b3e22d2caa +DIST gentoo-kernel-5.9.9-1.arm64.xpak 60808290 BLAKE2B eb2e7e90416c80bbb75bd94ab8caa32b54d28a7e084d682930a3f331a59f0293175a65b8e2787ae42e3906cd93874a97d9e40c12d0295ad5f8a8bd5003f1e592 SHA512 0fae0efe241a3cee62ca1e492c96da552562516c61a6976ae593a50c4320c424f489b360c282c944a5c491a1e7ed929ab77ce886539e58f4599b5096c8714553 +DIST gentoo-kernel-5.9.9-1.x86.xpak 56074565 BLAKE2B 796c3852f6587c53cbe0ea56c47e20fdcfd1ca6d07ad8bc9268d522cc259ef3346bd7f8fb837e1a7a1d99d189876363d908ce2911e25d97023c3f47d1272ba30 SHA512 51241930d16f82a51072bd34377fd26a4c0110e6063cfcb2fd27322b83607d73724f1539642fc9f5559ce02c2975b1e206583749830fee0f86e015e6a5f6a001 diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.78-r1.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.78-r1.ebuild new file mode 100644 index 000000000000..2378adc3f352 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.78-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.78.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.78.ebuild new file mode 100644 index 000000000000..d6e61fa69369 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.78.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.9-r1.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.9-r1.ebuild new file mode 100644 index 000000000000..ad9181bc4960 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.9-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.9.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.9.ebuild new file mode 100644 index 000000000000..68ca59b57351 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.9.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 e7e529297e20..d1369e209af8 100644 --- a/sys-kernel/gentoo-kernel/Manifest +++ b/sys-kernel/gentoo-kernel/Manifest @@ -2,8 +2,12 @@ DIST genpatches-5.4-73.base.tar.xz 2527064 BLAKE2B 6e0b392681d6e5e709a02c1c8f15f DIST genpatches-5.4-73.extras.tar.xz 1772 BLAKE2B 7475a0907f287fef28ee8bf220932528107bbac0d612dc05de6ca8b2dd86ddf37d9acea31ab2977a677f6ea3a19c594737b23e504da405fa811c4d0faf00b94a SHA512 751898547b1f60070f1d8431cd89daff55e33473c8fe68415a15e3b8079ae2d3e44318815ba47a1ce9750feb1cac1812eb8eb7765426b204eb1357993cc68cb0 DIST genpatches-5.4-78.base.tar.xz 2710752 BLAKE2B caf08c588198fa9a364ec299c9918ef6cc51495df40cc875b0e60c4abd6f3195fcb67581b276cea0ed8150220f8b84c04344acbee71c26598cc1871e6520c1e2 SHA512 fc4bc267a20e8c7f5326893d89e45d064c9ca7372d13657a443432e47a34c4b835de885c8f3d93ee1aced43d5016886b774d55c29d6839921089bacc40a742c3 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.extras.tar.xz 1768 BLAKE2B 4c890e06a2733a06fee44172925a465204b8f435df40583eeeb553de6c2a26197f50ab100ed47b6c104ff5e4344534fd149d84f12e5f43f4c65422ef9a0e2cf5 SHA512 fbea0554d4cdffcbc4f43f9bed3cd57e5a3f79776f5e46d23daa65b884b5fd6fd43e248b04258434e44026669b6d1a707782a01dc217142c954fef2afa5acdff 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 +DIST genpatches-5.9-9.extras.tar.xz 1768 BLAKE2B f97e1741fc12f3e00f1f71f6d9277d0233ef65464461ad0352cc211f32ead0ab67ba8e0fbbdf187bedd6d2d3728dabc1d38fee2552e1b06b9a4fa4c5fc0c9d62 SHA512 148eaf715b3c4b7fa6d613824dc19d2b70e580e0316cfcdd405ffa7b946b1dad4af5cbc9e2ad4b0c0fd31041a60d5410c3ac789f53f41e85f37375df101ecc00 DIST gentoo-kernel-config-5.4.77-r1.tar.gz 1289 BLAKE2B 6612741cfbf458f4bd8915b476aac3aa6934e8bbab344da877fa4ad52b6133e01f5d44bf0e5d048e79e56c1a351774135ee55f1aa839b230e2418db7c5d9b123 SHA512 2a09dd85af37447b278847aeaad114ef47470726cec015ed5ee1b54b3080f4b2c48de8b2f7b817eeb4e27c753579cf0820053e22caa762cb1552116d8d69eba0 DIST gentoo-kernel-config-5.9.8-r1.tar.gz 1198 BLAKE2B 8fc6d432e9d7e1f7f2be75c5741ab18be399066e9837a52023bebfbffe6299eabfa7e8e94822ef205bd443f6d75a75530cf0c3989dc0414a7c3e4ff06d4743bc SHA512 bc554f46ffb8a4422269e5d9b8e9e0c0f1ecd29fd008719f7ab027e87f4b4bb284d7854d1af2e1e5af0784043db79de058b38fd1ff0bf50d3086e8adc6254e1f DIST kernel-aarch64-fedora.config.5.9.2 217893 BLAKE2B 03a36c1fe81a16b434cd94bad3984bf8984808b2e7092089f9a23a565c6d9bc8a512baa4e5754633783ef47feb6cc67010a0093f096e5a15db0f13aaaf6d6426 SHA512 ebe29150ae625cf2f285649984c27246ef85cc13f0b5d4e40dd3ef479489aaa09b6ee4aee859d6e4361dd7e7b4432db8aec077a099a25e90609b9eac2d42802d diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78.ebuild new file mode 100644 index 000000000000..b32b759734b2 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.78.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##*.} + 1 )) +# 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.9.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.9.ebuild new file mode 100644 index 000000000000..2bbd08ab2819 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.9.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.2 +CONFIG_HASH=94a4277f8827d1b2c911deabe56e7d929dc93146 +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 4fe6d962d9af..86389e5c50d9 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -7,6 +7,9 @@ DIST genpatches-4.14-215.extras.tar.xz 3340 BLAKE2B c808f466732b10b11fb795f71bfb 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.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 @@ -16,6 +19,9 @@ DIST genpatches-4.19-155.extras.tar.xz 3316 BLAKE2B b882d1593bb5111db6ac893ff7b0 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.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 @@ -28,6 +34,9 @@ DIST genpatches-4.4-244.extras.tar.xz 1788 BLAKE2B 7831a24528769549f702d933b63de 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.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 @@ -40,6 +49,9 @@ DIST genpatches-4.9-246.extras.tar.xz 3340 BLAKE2B b998addeb767cf0baf56b20c042cc 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-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 @@ -49,6 +61,9 @@ DIST genpatches-5.4-77.extras.tar.xz 1772 BLAKE2B 8a33792ed12e88de1eac2908f0bbfb 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.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 @@ -61,6 +76,9 @@ DIST genpatches-5.9-7.extras.tar.xz 1764 BLAKE2B c39d139cf19dd6b1af3f196d25c1d48 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 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 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.207.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.207.ebuild new file mode 100644 index 000000000000..2922920abf3d --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.207.ebuild @@ -0,0 +1,28 @@ +# 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="217" + +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 new file mode 100644 index 000000000000..101fd99bdf34 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.158.ebuild @@ -0,0 +1,28 @@ +# 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.4.244.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.244.ebuild new file mode 100644 index 000000000000..f013a42b388b --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.244.ebuild @@ -0,0 +1,28 @@ +# 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.244.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.244.ebuild new file mode 100644 index 000000000000..341a74ed242a --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.244.ebuild @@ -0,0 +1,28 @@ +# 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-5.4.78.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.78.ebuild new file mode 100644 index 000000000000..8c417b92b227 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.78.ebuild @@ -0,0 +1,28 @@ +# 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.9.9.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.9.ebuild new file mode 100644 index 000000000000..e6f481e1b278 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.9.9.ebuild @@ -0,0 +1,29 @@ +# 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/linux-firmware/linux-firmware-20201022-r2.ebuild b/sys-kernel/linux-firmware/linux-firmware-20201022-r2.ebuild index bc7bc76e3b09..01b85b27a4f0 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20201022-r2.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20201022-r2.ebuild @@ -276,12 +276,19 @@ src_install() { [[ -s "${files_to_keep}" ]] || die "grep failed, empty config file?" einfo "Applying USE=savedconfig; Removing all files not listed in config ..." - set -o pipefail find ! -type d -printf "%P\n" \ | grep -Fvx -f "${files_to_keep}" \ | xargs -d '\n' --no-run-if-empty rm -v - [[ ${?} -ne 0 ]] && die "Failed to remove files not listed in config" + if [[ ${PIPESTATUS[0]} -ne 0 ]]; then + die "Find failed to print installed files" + elif [[ ${PIPESTATUS[1]} -eq 2 ]]; then + # grep returns exit status 1 if no lines were selected + # which is the case when we want to keep all files + die "Grep failed to select files to keep" + elif [[ ${PIPESTATUS[2]} -ne 0 ]]; then + die "Failed to remove files not listed in config" + fi fi fi diff --git a/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild b/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild index bc7bc76e3b09..01b85b27a4f0 100644 --- a/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild @@ -276,12 +276,19 @@ src_install() { [[ -s "${files_to_keep}" ]] || die "grep failed, empty config file?" einfo "Applying USE=savedconfig; Removing all files not listed in config ..." - set -o pipefail find ! -type d -printf "%P\n" \ | grep -Fvx -f "${files_to_keep}" \ | xargs -d '\n' --no-run-if-empty rm -v - [[ ${?} -ne 0 ]] && die "Failed to remove files not listed in config" + if [[ ${PIPESTATUS[0]} -ne 0 ]]; then + die "Find failed to print installed files" + elif [[ ${PIPESTATUS[1]} -eq 2 ]]; then + # grep returns exit status 1 if no lines were selected + # which is the case when we want to keep all files + die "Grep failed to select files to keep" + elif [[ ${PIPESTATUS[2]} -ne 0 ]]; then + die "Failed to remove files not listed in config" + fi fi fi diff --git a/sys-kernel/vanilla-kernel/Manifest b/sys-kernel/vanilla-kernel/Manifest index 503221381a85..e390283fc3b5 100644 --- a/sys-kernel/vanilla-kernel/Manifest +++ b/sys-kernel/vanilla-kernel/Manifest @@ -1,3 +1,5 @@ +DIST gentoo-kernel-config-5.4.77-r1.tar.gz 1289 BLAKE2B 6612741cfbf458f4bd8915b476aac3aa6934e8bbab344da877fa4ad52b6133e01f5d44bf0e5d048e79e56c1a351774135ee55f1aa839b230e2418db7c5d9b123 SHA512 2a09dd85af37447b278847aeaad114ef47470726cec015ed5ee1b54b3080f4b2c48de8b2f7b817eeb4e27c753579cf0820053e22caa762cb1552116d8d69eba0 +DIST gentoo-kernel-config-5.9.8-r1.tar.gz 1198 BLAKE2B 8fc6d432e9d7e1f7f2be75c5741ab18be399066e9837a52023bebfbffe6299eabfa7e8e94822ef205bd443f6d75a75530cf0c3989dc0414a7c3e4ff06d4743bc SHA512 bc554f46ffb8a4422269e5d9b8e9e0c0f1ecd29fd008719f7ab027e87f4b4bb284d7854d1af2e1e5af0784043db79de058b38fd1ff0bf50d3086e8adc6254e1f DIST kernel-aarch64-fedora.config.5.9.2 217893 BLAKE2B 03a36c1fe81a16b434cd94bad3984bf8984808b2e7092089f9a23a565c6d9bc8a512baa4e5754633783ef47feb6cc67010a0093f096e5a15db0f13aaaf6d6426 SHA512 ebe29150ae625cf2f285649984c27246ef85cc13f0b5d4e40dd3ef479489aaa09b6ee4aee859d6e4361dd7e7b4432db8aec077a099a25e90609b9eac2d42802d DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09 SHA512 66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff DIST kernel-i686-fedora.config.5.9.2 201362 BLAKE2B 93e5dbbeec7761d777b8cf8795b38dd6a727f07c58176013dc5d18c60165af21c6e0e9140c7c7217fcc31f9b9a9c959be9d3ef0f853035986605fc513e7c70c1 SHA512 7bb41160333fa0f751c80ec9ad1e49ef991c26e05575a1e5fb41967bd984c91294629d91624eacbbdf2f307a28f9de8c994a9a7bef63cc933b0e13727dd33619 @@ -9,5 +11,9 @@ DIST kernel-x86_64.config.5.4.21 184907 BLAKE2B 0eb2b07c14cea7545350fcdf3a94f2a5 DIST linux-5.4.72.tar.xz 109606972 BLAKE2B 90dfea3370a78742c851d7c9ee21c6fe17204f6c6825f82ebef4bf9c23bb59ae62bafc71cd4bdccad151c6042a33c43df8449d10e93f71d41bdfe3006255b5ba SHA512 6f8b191732b1f73249f8d350500ade946f61309791b3c4021deec80e4781738141afd5e4a11d071d329ec792fc87ce2e6386e151417db0fbf344b6a5659bddf7 DIST linux-5.4.77.tar.sign 989 BLAKE2B d79c13fa311bd79dd690673f6f75cc308c28aea15ffb5c91b22717cc9c538eb7980dcada74e811939ea440f6b9a4843f9259f9f7d5be9521af2fd52ea676dcad SHA512 c7df7e53d4e463c4c776f3996ce7856f34bc63f1c4e32c58f1518d33e784d496945e394c5488807e9d02e3f51aa21e45bdd12a9a2377ea3ab9ea779aeed1ee1f DIST linux-5.4.77.tar.xz 109619220 BLAKE2B a89f698636cb913574dda1be8794955c79ae6e221a05bd16afdf555a3a142679309b0c494912b0020bc59c315e0e793042bd504ff076cd910d36e62c943a4661 SHA512 f8501bac63b8d5d9d263eaebf6ab3d9a70a7c26fa39c186c31ce1936647bb08efb19bdbe4a8f2912c37616d370bbdd05bec395d6d818fad235c38832b9d9cb87 +DIST linux-5.4.78.tar.sign 989 BLAKE2B 3a4c7fd8492f09a2e2ccb3d06255090aa785f9c426a95781e04169d865a5ac6cc47a8280ff38f5e45b1e230615c35ea6db3f4ac06a7b946ed49182825ba34bfd SHA512 19eed99c70abb6bd31f89c679e1ae823e79fc881c9ba7b7e1ed8ff3c50bc898f26836fa775dda6e2f04981c51214f7b3777b6331c1483b8d7d90492f9450ed72 +DIST linux-5.4.78.tar.xz 109618256 BLAKE2B e856874995b363c91e3147d133b07072cd73abe02bf1eaf33a48129c1c596303519e0da598465c633ae2b5168ad3b52efb3a516fd8eba13a52d3666350ab9bf8 SHA512 76207a716caf8931b875095a4cecae85d0e8dac9ef675ec32019462211ee7b263dc0cacbcd06561dfdba0510566a0280fa6d2e10f35695cf4613f99f90755f32 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 +DIST linux-5.9.9.tar.xz 115546864 BLAKE2B 39a9a7438d8399d4e4b863e725b1b5a1ddda0c0b8b02f9fc9a4153f6dbd2ed267aaa6acaac5c0b80c8e3c122c240a82458079fcf83d639047c6372d109b2b4fe SHA512 8d61c3cea48862e394a9d54902f7845f604151ad56f796e2d371a4f5b55560d57179c867ece2328f5dd6dbe4c5452cca0f2f5bb8fb78b3458e3ed61e6bcee303 diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.78.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.78.ebuild new file mode 100644 index 000000000000..9c5f2af87fff --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.78.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.9.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.9.9.ebuild new file mode 100644 index 000000000000..7f2ee941c17e --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.9.9.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.2 +CONFIG_HASH=94a4277f8827d1b2c911deabe56e7d929dc93146 +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 95ec0635e8f1..2e58bc06d3e9 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -5,10 +5,10 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c 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 -DIST patch-4.14.206.xz 3995304 BLAKE2B 28b9577ee7bb1f0e935482023ea660f788f0aabbe0e3be743075cdfa4fe263c1d1c50e99a7f7a27fd670820756c5a8c60667a1687666a4b29df790dc37360481 SHA512 5382e138db14e9c6e053ac76ae3d3ce6114ebaf4d0b0588a297bcd358be8c60df35535cf97ac0ae62e9f58673a3ad3fd07de5c2ffb6f0a638624f05cea209bc6 -DIST patch-4.19.157.xz 3601120 BLAKE2B 60cef4a4e72a27278818341ab73e460d7f7340ba7c0e49034484fd196abea0e201e2fad1c08ba7ae9a9629b24c71f95d870322edc3e0f8eac404257eb97e9208 SHA512 d25a416316c7e39fa41213bb47d0d28ede99b6814b02b7ea3fd6872db4386129567c1e5bffc4e20454656e48cd3416d9582f7351c38208f4bd3a31c7c6883907 -DIST patch-4.4.243.xz 3371564 BLAKE2B 9170b3e7cfa92cabc027508810305673bf3122bebe29e1bdf9cf37a153dec8b772b0992a16178524d5b5d7b6cba7ad5e73a68204d4bc76d7aac159b9738aaa21 SHA512 a1e59ca7fa3bbfa8c5bfd0366973f847ba240df1abc2a41449237972252c661414f1aa890aaf2fab9fbec94c7a0d6f866d08a847bf5e1fcd97c895e478b7acfc -DIST patch-4.9.243.xz 3748124 BLAKE2B 4a3b4f0ed98f949996ca9b1d9b98ff60e165ef475e4152442ce4ca8196e120f4109994c07caf84ff0621f8c963461c6f8ee3fdac54e4ad2019cb755af7d80542 SHA512 1d997ced0bd42b55b7db74d2f1a71b7bcd3f9d4d0c74ba5b790cfe3bbf22b72b4d026fb2eee7c62efc4a5ffc710d48b0fcc6a3c57e0c6bd3df9edcb29c476d98 -DIST patch-5.4.77.xz 2312664 BLAKE2B c90792768d1b8f0c8c191aa27f424664c3fcbcd25ef9898d6f82d8e3bb4c4d768182da5f57dd5ca67a1652afb4912656a5345598d4cc1a3386cdb7060ee94cbb SHA512 8e75b73b9f7b0dad4e767119fe55820784d5a73cce947860273e3bbf69ab9ee6ea9b71cb0cd5734ac3657d8d927063ef4ab4f75202010f625e9d26c9bf491510 -DIST patch-5.8.17.xz 724220 BLAKE2B 4f5dfcb139dcb55da9bfef6508b98d5fbfe8ef91915f5f9f1ad75dcfb5227fce40ca85b99f73aa640a99bc2816a6dbf08f2b5669035926e63140720932df6622 SHA512 bdd9d37c227e605f52ccbb24715ffbc449a4b993e1afce676216e7a4f47354227c904e40f9afe70a7b85bdf25659a33eca07a224f53dbde1781222c66756d53a -DIST patch-5.9.8.xz 435220 BLAKE2B 652cf78bad2ca06c8e6a27a384382e89189469feaadf24a25f28d3d65cdcce165c099ac304547fb9e0168048875b486ef25b0802162693c43a07820554fd5c6b SHA512 53dee96e9d3cf4f720c03687c8a4bea53423f76d16fa685a18e188c0a418d1d5ce3eb308c061138d8c0fd6af0062db0a622429f71d5698ac9092acf13a982f10 +DIST patch-4.14.207.xz 4018804 BLAKE2B 9ed5ca0a6ade93c5775d51764d3302a1d33f013ca2c9494bda45c70b77fd07f4273c8b2316e473a9221f4b27324d13d02643b1c94e4ed1f23140828796308384 SHA512 4a0ce9b72f18000927deebd794b2c2bd67d3d04c257e7b8053fe497ae475acb52c3cc49e50c711e5d7762af7e81c1e186eb5faeb3ca2aabb1bd8d998eb4c505d +DIST patch-4.19.158.xz 3620140 BLAKE2B 18e8b709621857ad93320b3754625b477f53c9f7193088e7a4d19416f3333a477c0633da67d24d3163ae4854d321d2d61bc8b74d76fe87e1ea390d7bece4c1f9 SHA512 5d46dcb73fceeb790b7eb6c5fc724df3e06fbacf33d4ac0be839b123188333da45742b2575b3db51d9a370ab5fe583cad9469a46b948cd4dd0148c6f88465567 +DIST patch-4.4.244.xz 3390576 BLAKE2B e0b9b7e5488bff192f1671faa5428355dd33c1600b4ceab07e30ffc776111c9eec59272ec3f0e31b76dd12b9b0c61969ac46e2e33a3d99c79ef668a21958fe58 SHA512 05808621ce8df911c9a450ccecfce65f7d9573a320ffe667838ce3676942c37fa2af12cfe41ec9c1430bd52c039c3c95d64eb9b6d6ea052d60e667af4a4099af +DIST patch-4.9.244.xz 3769456 BLAKE2B f58b0df7035fc5bf85544d97b7b1789e5d6bfc43c7c37374e991be276a5afaa60f5839396d29c3ea7bd8e60fc79ed4f4264e1d2f126ea3956e03b9c0ee728fb9 SHA512 915bc3d3d8587710806d3996bdbb0594b12d7a87881634a7818aecce0103af8ee04bf7d6efe18028c8ffd228ba501f7486ed475b12084c2127c22dbba3b223bb +DIST patch-5.4.78.xz 2343412 BLAKE2B 487e090db92f1f10647324109b93e6db70350741c63faab70af0571813c1275bb42861742cad513cf80207883b7e2c7db000c33bfd5cd9efdf4c2ec7e52f7273 SHA512 3ff82db5904267cdb1a07fb006cd3aeec62b3a9bf22958980553983b057639280042e42c5befab8f99d20ad4f72b735c409eedf0ef8fd7a5a24a50ffefec1876 +DIST patch-5.8.18.xz 753276 BLAKE2B cc4ab6db80f14cd22f6409c4eb1f344822b79cdbccbae65d53aba444f957ed320719acf0f448e08cc9f1341dafee90527fd035f13a268289c2dc3bf317107142 SHA512 e161e534bcf842de5b2a605f153e6d581030593e99185a5d3c341b40c2c9e6e4a6b3bac38647156f1974768cf730073c0ca34295d847e0dd114de4ca52d72039 +DIST patch-5.9.9.xz 502816 BLAKE2B 104fa2ecaac3c543662b891de22cb881a917320317d58dcaeb6b6826e3f0296126ab5177cc7a44a438c15d3ae9cab116ff6926cce9d5e4d310df99fca0d9b909 SHA512 87852bc4d08cd5e82c7de9a8c8d50c1b4c67eed7157bfe1034d279370ff21a194f082f126d49812f84ec726100c5d97b3d908994e92c2cbfd231a4ac851babe3 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.206.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.14.207.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.14.206.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.14.207.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.157.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.19.158.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.19.157.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.19.158.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.243.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.4.244.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.243.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.244.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.243.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.9.244.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.243.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.244.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.4.78.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.4.77.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.4.78.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.8.17.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.8.18.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.8.17.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.8.18.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.9.9.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.9.8.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.9.9.ebuild diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index 14408ea7a646..1d20d82b2971 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/gdbm/gdbm-1.18.1-r1.ebuild b/sys-libs/gdbm/gdbm-1.18.1-r1.ebuild index 0ee72c596756..a4583e1df778 100644 --- a/sys-libs/gdbm/gdbm-1.18.1-r1.ebuild +++ b/sys-libs/gdbm/gdbm-1.18.1-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gdbm/${P}.tar.gz" LICENSE="GPL-3" SLOT="0/6" # libgdbm.so version -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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+berkdb nls +readline static-libs" DEPEND=" diff --git a/sys-libs/libcap-ng/Manifest b/sys-libs/libcap-ng/Manifest index a7ac7241a588..27147c4690f5 100644 --- a/sys-libs/libcap-ng/Manifest +++ b/sys-libs/libcap-ng/Manifest @@ -1,3 +1,4 @@ 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.tar.gz 453181 BLAKE2B 8f4b2e13e5c2c21f1ac1455ebdaf04b42e07fa79d9026651f41eab041cdf99bd40d91b8ce2262e58bc2de3e2a793f676df8c69d832ccadfa4b486ebefeb4b128 SHA512 d410d66f46ad25765f35ffac17e0d36740329c334c6535d55a13fa218718a750763b7ad4610efa47efe7c256c143ead7dde7d37a29e99cb5c55161f577c40bb2 diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild index 846ebcd8aae4..0ab4c81205a3 100644 --- a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild +++ b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild @@ -13,7 +13,7 @@ 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" +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} )" diff --git a/sys-libs/libcap-ng/libcap-ng-0.8.1.ebuild b/sys-libs/libcap-ng/libcap-ng-0.8.1.ebuild new file mode 100644 index 000000000000..846ebcd8aae4 --- /dev/null +++ b/sys-libs/libcap-ng/libcap-ng-0.8.1.ebuild @@ -0,0 +1,89 @@ +# 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/libseccomp/Manifest b/sys-libs/libseccomp/Manifest index 87aea1370f33..ddb87bd168cd 100644 --- a/sys-libs/libseccomp/Manifest +++ b/sys-libs/libseccomp/Manifest @@ -1,3 +1,4 @@ DIST libseccomp-2.4.3.tar.gz 598147 BLAKE2B 272c9f1ca7e4059790f633a79cae8612831aa483d28630fb85b31dc2be0192907a8897819d835b61324e0b3fb0d77b8781e2a85e9750ef8d7974d8680b8cdea3 SHA512 7b7af2e98493243ffe1934fefff5723b24ae9b9bdc4bf039343ee8456c15acb0ea34e81ec292a41143848272aeca794ef92ad38fc3f42c77465170cb540479ef DIST libseccomp-2.4.4.tar.gz 604420 BLAKE2B 04a2e22996d94f2525c1f4a890f325e7c75abb7ac84928a1ffde5e4cc569ef6355fcda8415e0c9937139e187f458602714cfd042008de74637c7bf30e9bd58e2 SHA512 53e5aa338a1c30ce826551e33be6ef877af43b1d8cfd2e1b6ffb70789eb2070d2610fb7cb5cec4a3a4c4a1221767f867f3d2bc07b6b1d9742719b1e053630b24 DIST libseccomp-2.5.0.tar.gz 638793 BLAKE2B c1f30624e210d632175b734c49411ee3f95e8f0ee68819ad83a342434231baef10c292f23fca0127394365a37efb043f9f24ade9534deecd61f50e7111a6fbc8 SHA512 00ef5aeb4db8dafb546ae680b2d6d9b6aeed008df805d0f28f9dd15c074ff6ea7a5e5131ab503825b8011c59aa23046baedd5849ca040aa73352f43ab2d602ae +DIST libseccomp-2.5.1.tar.gz 189916 BLAKE2B 8d74764a03f154f29fe7a392ce3f7e13d0342cebd875cd2a8e8453aa362d8ee78e8aed466f4f26ea98bda9263283a0cf5ca31f34afacfd7c658de8942fffeea8 SHA512 fcb84b6714dce760387391c42de699897c1767802c4805a71d3221b9cfbc9c3cc20a3122e5f2153e754962faab2f214f892531e5985bacf28875ff1ba9a93996 diff --git a/sys-libs/libseccomp/libseccomp-2.4.4.ebuild b/sys-libs/libseccomp/libseccomp-2.4.4.ebuild index 5224cb3571a8..f9c245c3f2f8 100644 --- a/sys-libs/libseccomp/libseccomp-2.4.4.ebuild +++ b/sys-libs/libseccomp/libseccomp-2.4.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="-* amd64 arm arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux" IUSE="static-libs" # We need newer kernel headers; we don't keep strict control of the exact diff --git a/sys-libs/libseccomp/libseccomp-2.5.1.ebuild b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild new file mode 100644 index 000000000000..cf8f9e8c84dd --- /dev/null +++ b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_OPTIONAL=1 + +inherit autotools distutils-r1 multilib-minimal + +DESCRIPTION="high level interface to Linux seccomp filter" +HOMEPAGE="https://github.com/seccomp/libseccomp" + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/seccomp/libseccomp.git" + PRERELEASE="2.6.0" + inherit autotools git-r3 +else + #SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" + SRC_URI="https://github.com/seccomp/libseccomp/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa -mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="python static-libs" + +REQUIRED_USE=" + python? ( + static-libs + ${PYTHON_REQUIRED_USE} + )" + +BDEPEND=" + dev-util/gperf + python? ( ${PYTHON_DEPS} ) +" +DEPEND="${BDEPEND}" +RDEPEND="${DEPEND}" + +# We need newer kernel headers; we don't keep strict control of the exact +# version here, just be safe and pull in the latest stable ones. #551248 +DEPEND="${DEPEND} >=sys-kernel/linux-headers-4.3" + +src_prepare() { + default + if [[ "${PV}" == *9999 ]] ; then + sed -i -e "s/0.0.0/${PRERELEASE}/" configure.ac + fi + eautoreconf +} + +multilib_src_configure() { + local myeconfargs=( + $(use_enable static-libs static) + --disable-python + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + emake + + if multilib_is_native_abi && use python ; then + cd "${S}/src/python" || die + sed -i -e "s/=.*VERSION_RELEASE.*,/=\"${PRERELEASE}\",/" \ + -e "/extra_objects/s,\.\.,${OLDPWD}/src," \ + setup.py || die + local -x CPPFLAGS="-I${OLDPWD}/include -I../../include" + distutils-r1_src_compile + fi +} + +multilib_src_install() { + emake DESTDIR="${D}" install + + if multilib_is_native_abi && use python ; then + cd "${S}/src/python" || die + distutils-r1_src_install + fi +} + +multilib_src_install_all() { + find "${ED}" -type f -name "${PN}.la" -delete || die + einstalldocs +} diff --git a/sys-libs/ncurses-compat/Manifest b/sys-libs/ncurses-compat/Manifest index 469b95c8516f..70f7ded91f36 100644 --- a/sys-libs/ncurses-compat/Manifest +++ b/sys-libs/ncurses-compat/Manifest @@ -1,3 +1,3 @@ -DIST ncurses-5.9.tar.gz 2826473 BLAKE2B 91101b049a5eb6a2674fb86b5eba56515207f490dc7a6348f3194bbc50649717a26aff7a0df64f67ca318b5f244455cd57e760c65b9e551f6ec65b8c035a6ae1 SHA512 d7c5e54b6d4d8b9211f0006ca8786f7609d180cc1aaebf4f25e7e35e12959779cf66447359a602daed625621ca32b0d910d67aef3eb8b6fdc3c373819a88faa1 DIST ncurses-6.1-20190609-patch.sh.bz2 602174 BLAKE2B 38b1cb1f376b8fdfddc7cf9ed8e10190dd50fc2315f11eaf3a14c0299167c0e6bbd82a3684fa83d6e8fa6d2f02ea14e88ea065f8bb886905d85788bde13731c0 SHA512 efd009f5087a7b16413b94ce37ad19da0df8974be579b742d57bc64e034792ccf03b9967593a0ac5c90522ccfde4b6d23ef763d6fbeb91a5f327f8d7a0970872 DIST ncurses-6.1.tar.gz 3365395 BLAKE2B 1248a5088bc982d0880cb9550b1192457f6f624937c4b66807668c22a608002ba6c38d876986f2c2b9ee46f91d087c88bc0b19920733e4c7ca0ed8e92d9d47de SHA512 e308af43f8b7e01e98a55f4f6c4ee4d1c39ce09d95399fa555b3f0cdf5fd0db0f4c4d820b4af78a63f6cf6d8627587114a40af48cfc066134b600520808a77ee +DIST ncurses-6.2.tar.gz 3425862 BLAKE2B 6680cd7a369a4cb8234442a70869c283f0db6db9d7da1da2a7a5c519eb862a2c9b9411957d99f9ebb5089cad00b42e1ca6bc0784327461113df2eeaec695913c SHA512 4c1333dcc30e858e8a9525d4b9aefb60000cfc727bc4a1062bace06ffc4639ad9f6e54f6bdda0e3a0e5ea14de995f96b52b3327d9ec633608792c99a1e8d840d diff --git a/sys-libs/ncurses-compat/files/ncurses-5.8-gfbsd.patch b/sys-libs/ncurses-compat/files/ncurses-5.8-gfbsd.patch deleted file mode 100644 index 0200a14462af..000000000000 --- a/sys-libs/ncurses-compat/files/ncurses-5.8-gfbsd.patch +++ /dev/null @@ -1,24 +0,0 @@ -we'll hijack the freebsd* case that comes later - ---- ncurses-5.6/aclocal.m4 -+++ ncurses-5.6/aclocal.m4 -@@ -3806,7 +3806,7 @@ - fi - cf_cv_rm_so_locs=yes - ;; -- linux*|gnu*|k*bsd*-gnu) #(vi -+ linux*|gnu*|k*bsd*-gnu|freebsd*|dragonfly*) #(vi - if test "$DFT_LWR_MODEL" = "shared" ; then - LOCAL_LDFLAGS="-Wl,-rpath,\$(LOCAL_LIBDIR)" - LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" ---- ncurses-5.6/configure -+++ ncurses-5.6/configure -@@ -3806,7 +3806,7 @@ - fi - cf_cv_rm_so_locs=yes - ;; -- linux*|gnu*|k*bsd*-gnu) #(vi -+ linux*|gnu*|k*bsd*-gnu|freebsd*|dragonfly*) #(vi - if test "$DFT_LWR_MODEL" = "shared" ; then - LOCAL_LDFLAGS="-Wl,-rpath,\$(LOCAL_LIBDIR)" - LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" diff --git a/sys-libs/ncurses-compat/files/ncurses-5.9-fix-clang-build.patch b/sys-libs/ncurses-compat/files/ncurses-5.9-fix-clang-build.patch deleted file mode 100644 index 0c6ca7acc4fc..000000000000 --- a/sys-libs/ncurses-compat/files/ncurses-5.9-fix-clang-build.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff --git a/ncurses-5.9/c++/cursesf.h b/ncurses-5.9/c++/cursesf.h -index 70a30c3..db38063 100644 ---- a/ncurses-5.9/c++/cursesf.h -+++ b/ncurses-5.9/c++/cursesf.h -@@ -677,7 +677,7 @@ protected: - } - - public: -- NCursesUserForm (NCursesFormField Fields[], -+ NCursesUserForm (NCursesFormField* Fields[], - const T* p_UserData = STATIC_CAST(T*)(0), - bool with_frame=FALSE, - bool autoDelete_Fields=FALSE) -@@ -686,7 +686,7 @@ public: - set_user (const_cast(p_UserData)); - }; - -- NCursesUserForm (NCursesFormField Fields[], -+ NCursesUserForm (NCursesFormField* Fields[], - int nlines, - int ncols, - int begin_y = 0, -diff --git a/ncurses-5.9/c++/cursesm.h b/ncurses-5.9/c++/cursesm.h -index d9c2273..2d5b79a 100644 ---- a/ncurses-5.9/c++/cursesm.h -+++ b/ncurses-5.9/c++/cursesm.h -@@ -635,7 +635,7 @@ protected: - } - - public: -- NCursesUserMenu (NCursesMenuItem Items[], -+ NCursesUserMenu (NCursesMenuItem* Items[], - const T* p_UserData = STATIC_CAST(T*)(0), - bool with_frame=FALSE, - bool autoDelete_Items=FALSE) -@@ -644,7 +644,7 @@ public: - set_user (const_cast(p_UserData)); - }; - -- NCursesUserMenu (NCursesMenuItem Items[], -+ NCursesUserMenu (NCursesMenuItem* Items[], - int nlines, - int ncols, - int begin_y = 0, diff --git a/sys-libs/ncurses-compat/files/ncurses-5.9-no-I-usr-include.patch b/sys-libs/ncurses-compat/files/ncurses-5.9-no-I-usr-include.patch deleted file mode 100644 index 5c968e76c378..000000000000 --- a/sys-libs/ncurses-compat/files/ncurses-5.9-no-I-usr-include.patch +++ /dev/null @@ -1,45 +0,0 @@ -https://bugs.gentoo.org/522586 - -delete the -I$includedir paths that get added to CPPFLAGS. these are never -needed when building natively or cross-compiling and really get in the way -in both cases (upgrades/cross-compiling/etc...). - -extracted from the upstream change: -http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commitdiff;h=9ee3995474454b7d956885e0fe5c8cac2ae25d42#patch5 - ---- a/configure -+++ b/configure -@@ -18596,33 +18596,11 @@ CPPFLAGS="$CPPFLAGS -I. -I../include" - if test "$srcdir" != "."; then - CPPFLAGS="$CPPFLAGS -I\${srcdir}/../include" - fi --if test "$GCC" != yes; then -- CPPFLAGS="$CPPFLAGS -I\${includedir}" --elif test "$includedir" != "/usr/include"; then -- if test "$includedir" = '${prefix}/include' ; then -- if test $prefix != /usr ; then -- CPPFLAGS="$CPPFLAGS -I\${includedir}" -- fi -- else -- CPPFLAGS="$CPPFLAGS -I\${includedir}" -- fi --fi - - ACPPFLAGS="-I. -I../include -I../../include $ACPPFLAGS" - if test "$srcdir" != "."; then - ACPPFLAGS="-I\${srcdir}/../../include $ACPPFLAGS" - fi --if test "$GCC" != yes; then -- ACPPFLAGS="$ACPPFLAGS -I\${includedir}" --elif test "$includedir" != "/usr/include"; then -- if test "$includedir" = '${prefix}/include' ; then -- if test $prefix != /usr ; then -- ACPPFLAGS="$ACPPFLAGS -I\${includedir}" -- fi -- else -- ACPPFLAGS="$ACPPFLAGS -I\${includedir}" -- fi --fi - - ### Build up pieces for makefile rules - echo "$as_me:18628: checking default library suffix" >&5 diff --git a/sys-libs/ncurses-compat/files/ncurses-5.9-pkg-config.patch b/sys-libs/ncurses-compat/files/ncurses-5.9-pkg-config.patch deleted file mode 100644 index 7c3c04a449f8..000000000000 --- a/sys-libs/ncurses-compat/files/ncurses-5.9-pkg-config.patch +++ /dev/null @@ -1,26 +0,0 @@ -disable the $PATH search for the PKG_CONFIG tool. it isn't needed and just -gets in the way when setting to a value that might not yet exist. - -disable the existence test for the PKG_CONFIG_LIBDIR dir. it breaks when you -cross-compile for an ABI that doesn't exist in the root dir (--build). - ---- a/configure -+++ b/configure -@@ -3582,7 +3582,7 @@ fi - esac - - test -z "$PKG_CONFIG" && PKG_CONFIG=none --if test "$PKG_CONFIG" != none ; then -+if false ; then - - if test "x$prefix" != xNONE; then - cf_path_syntax="$prefix" -@@ -3626,7 +3626,7 @@ echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG" | sed -e 's,/[^/]*/[^/]*$,,'`/lib/pkgconfig - fi - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'` -- if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then -+ if test -n "$PKG_CONFIG_LIBDIR" ; then - - # Check whether --enable-pc-files or --disable-pc-files was given. - if test "${enable_pc_files+set}" = set; then diff --git a/sys-libs/ncurses-compat/files/ncurses-5.9-rxvt-unicode-9.15.patch b/sys-libs/ncurses-compat/files/ncurses-5.9-rxvt-unicode-9.15.patch deleted file mode 100644 index b6d1924cbe7e..000000000000 --- a/sys-libs/ncurses-compat/files/ncurses-5.9-rxvt-unicode-9.15.patch +++ /dev/null @@ -1,191 +0,0 @@ -Add rxvt-unicode terminfo, required by rxvt-unicode to function properly. - -Providing this in ncurses makes it widely available, much better than having to -install rxvt-unicode everywhere. - -http://bugs.gentoo.org/show_bug.cgi?id=192083 - -This patch uses the updated rxvt-unicode-9.15 terminfo -which includes 256 color support and fixes Gentoo bug 383871 - -http://bugs.gentoo.org/show_bug.cgi?id=383871 - ---- misc/terminfo.src -+++ misc/terminfo.src -@@ -4208,6 +4208,176 @@ - rxvt-16color|xterm with 16 colors like aixterm, - ncv#32, use=ibm+16color, use=rxvt, - -+# From: Thomas Dickey 04 Oct 1997 -+# Updated: Özgür Kesim 02 Nov 1997 -+# Updated: Marc Lehmann , 17 Feb 2005 -+# Updated: Marc Lehmann , 04 Nov 2008: change init/reset sequences -+rxvt-unicode|rxvt-unicode terminal (X Window System), -+ am, -+ bce, -+ eo, -+ km, -+ msgr, -+ xenl, -+ hs, -+ cols#80, -+ it#8, -+ lines#24, -+ acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~-A.B+C\,D0EhFiG, -+ bel=^G, -+ blink=\E[5m, -+ bold=\E[1m, -+ civis=\E[?25l, -+ clear=\E[H\E[2J, -+ cnorm=\E[?25h, -+ cr=^M, -+ csr=\E[%i%p1%d;%p2%dr, -+ cub=\E[%p1%dD, -+ cub1=^H, -+ cud=\E[%p1%dB, -+ cud1=^J, -+ cuf=\E[%p1%dC, -+ cuf1=\E[C, -+ cup=\E[%i%p1%d;%p2%dH, -+ cuu=\E[%p1%dA, -+ cuu1=\E[A, -+ cvvis=\E[?25h, -+ dch=\E[%p1%dP, -+ dch1=\E[P, -+ dl=\E[%p1%dM, -+ dl1=\E[M, -+ ed=\E[J, -+ el=\E[K, -+ el1=\E[1K, -+ flash=\E[?5h$<20/>\E[?5l, -+ home=\E[H, -+ hpa=\E[%i%p1%dG, -+ ht=^I, -+ hts=\EH, -+ ich=\E[%p1%d@, -+ ich1=\E[@, -+ il=\E[%p1%dL, -+ il1=\E[L, -+ ind=^J, -+ is1=\E[\041p, -+ is2=\E[r\E[m\E[2J\E[?7;25h\E[?1;3;4;5;6;9;66;1000;1001;1049l\E[4l, -+ kDC=\E[3$, -+ kIC=\E[2$, -+ kEND=\E[8$, -+ kHOM=\E[7$, -+ kLFT=\E[d, -+ kNXT=\E[6$, -+ kPRV=\E[5$, -+ kRIT=\E[c, -+ kbs=\177, -+ ka1=\EOw, -+ ka3=\EOy, -+ kb2=\EOu, -+ kc1=\EOq, -+ kc3=\EOs, -+ kcbt=\E[Z, -+ kcub1=\E[D, -+ kcud1=\E[B, -+ kcuf1=\E[C, -+ kcuu1=\E[A, -+ kdch1=\E[3~, -+ kel=\E[8\^, -+ kend=\E[8~, -+ kent=\EOM, -+ kf1=\E[11~, -+ kf10=\E[21~, -+ kf11=\E[23~, -+ kf12=\E[24~, -+ kf13=\E[25~, -+ kf14=\E[26~, -+ kf15=\E[28~, -+ kf16=\E[29~, -+ kf17=\E[31~, -+ kf18=\E[32~, -+ kf19=\E[33~, -+ kf2=\E[12~, -+ kf20=\E[34~, -+ kf3=\E[13~, -+ kf4=\E[14~, -+ kf5=\E[15~, -+ kf6=\E[17~, -+ kf7=\E[18~, -+ kf8=\E[19~, -+ kf9=\E[20~, -+ kfnd=\E[1~, -+ khome=\E[7~, -+ kich1=\E[2~, -+ kmous=\E[M, -+ knp=\E[6~, -+ kpp=\E[5~, -+ kslt=\E[4~, -+ rc=\E8, -+ rev=\E[7m, -+ ri=\EM, -+ rmso=\E[27m, -+ rmul=\E[24m, -+ rs1=\Ec, -+ rs2=\E[r\E[m\E[?7;25h\E[?1;3;4;5;6;9;66;1000;1001;1049l\E[4l, -+ sgr0=\E[m\E(B, -+ enacs=, -+ smacs=\E(0, -+ rmacs=\E(B, -+ smso=\E[7m, -+ smul=\E[4m, -+ tbc=\E[3g, -+ vpa=\E[%i%p1%dd, -+ colors#88, -+ pairs#7744, -+ btns#5, -+ lm#0, -+ ccc, -+ npc, -+ mc5i, -+ ncv#0, -+ mir, -+ xon, -+ bw, -+ ech=\E[%p1%dX, -+ mc0=\E[i, -+ mc4=\E[4i, -+ mc5=\E[5i, -+ sitm=\E[3m, -+ ritm=\E[23m, -+ smam=\E[?7h, -+ rmam=\E[?7l, -+ smir=\E[4h, -+ rmir=\E[4l, -+ smcup=\E[?1049h, -+ rmcup=\E[r\E[?1049l, -+ smkx=\E=, -+ rmkx=\E>, -+ indn=\E[%p1%dS, -+ rin=\E[%p1%dT, -+ sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\E(0%e\E(B%;, -+ op=\E[39;49m, -+ setaf=\E[38;5;%p1%dm, -+ setab=\E[48;5;%p1%dm, -+ setf=%?%p1%{7}%>%t\E[38;5;%p1%dm%e\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;, -+ setb=%?%p1%{7}%>%t\E[48;5;%p1%dm%e\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;, -+ initc=\E]4;%p1%d;rgb\:%p2%{65535}%*%{1000}%/%4.4X/%p3%{65535}%*%{1000}%/%4.4X/%p4%{65535}%*%{1000}%/%4.4X\E\\, -+ sc=\E7, -+ s0ds=\E(B, -+ s1ds=\E(0, -+ s2ds=\E*B, -+ s3ds=\E+B, -+ u6=\E[%i%d;%dR, -+ u7=\E[6n, -+ u8=\E[?1;2c, -+ u9=\E[c, -+ tsl=\E]2;, -+ fsl=\007, -+ dsl=\E]2;\007, -+ -+rxvt-unicode-256color|rxvt-unicode terminal with 256 colors (X Window System), -+ colors#256, -+ pairs#32767, -+ use=rxvt-unicode, -+ - # mrxvt 0.5.4 - # - # mrxvt is based on rxvt 2.7.11, but has by default XTERM_FKEYS defined, which diff --git a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild index e37be8a71353..074ff990dfab 100644 --- a/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild +++ b/sys-libs/ncurses-compat/ncurses-compat-6.1_p20190609.ebuild @@ -23,7 +23,7 @@ fi LICENSE="MIT" # The subslot reflects the SONAME. SLOT="5/5" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86" IUSE="gpm tinfo unicode" DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )" diff --git a/sys-libs/ncurses-compat/ncurses-compat-5.9.ebuild b/sys-libs/ncurses-compat/ncurses-compat-6.2.ebuild similarity index 70% rename from sys-libs/ncurses-compat/ncurses-compat-5.9.ebuild rename to sys-libs/ncurses-compat/ncurses-compat-6.2.ebuild index 5288b2e397f5..13a0da5e700c 100644 --- a/sys-libs/ncurses-compat/ncurses-compat-5.9.ebuild +++ b/sys-libs/ncurses-compat/ncurses-compat-6.2.ebuild @@ -3,20 +3,27 @@ # This version is just for the ABI .5 library -EAPI="5" +EAPI=7 -inherit eutils toolchain-funcs multilib-minimal +inherit flag-o-matic toolchain-funcs multilib-minimal preserve-libs usr-ldscript -MY_PV=${PV:0:3} -MY_P=ncurses-${MY_PV} -DESCRIPTION="console display library" +MY_PV="${PV:0:3}" +MY_P="${PN/-compat}-${MY_PV}" +MY_PN="${PN/-compat}" + +DESCRIPTION="console display library (ABI version 5)" HOMEPAGE="https://www.gnu.org/software/ncurses/ https://invisible-island.net/ncurses/" SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz" +if [[ "${PV}" == *_p* ]] ; then + SRC_URI+=" ftp://ftp.invisible-island.net/ncurses/${PV/_p*}/${MY_PN}-${PV/_p/-}-patch.sh.bz2 + https://invisible-mirror.net/archives/ncurses/${PV/_p*}/${MY_PN}-${PV/_p/-}-patch.sh.bz2" +fi + LICENSE="MIT" # The subslot reflects the SONAME. SLOT="5/5" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="gpm tinfo unicode" DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )" @@ -25,20 +32,22 @@ RDEPEND="${DEPEND} !& /dev/null \ + || lbuildflags="${dbuildflags}" + # We can't re-use the multilib BUILD_DIR because we run outside of it. BUILD_DIR="${WORKDIR}" \ CHOST=${CBUILD} \ CFLAGS=${BUILD_CFLAGS} \ CXXFLAGS=${BUILD_CXXFLAGS} \ CPPFLAGS=${BUILD_CPPFLAGS} \ - LDFLAGS="${BUILD_LDFLAGS} -static" \ + LDFLAGS="${BUILD_LDFLAGS} ${lbuildflags}" \ do_configure cross --without-shared --with-normal fi multilib-minimal_src_configure @@ -84,13 +105,15 @@ do_configure() { local target=$1 shift - mkdir "${BUILD_DIR}/${target}" + mkdir "${BUILD_DIR}/${target}" || die cd "${BUILD_DIR}/${target}" || die local conf=( # We need the basic terminfo files in /etc, bug #37026. We will # add '--with-terminfo-dirs' and then populate /etc/terminfo in # src_install() ... + ##--with-rel-version=5.9 ?? + --with-abi-version=5 --with-terminfo-dirs="${EPREFIX}/etc/terminfo:${EPREFIX}/usr/share/terminfo" # Now the rest of the various standard flags. @@ -151,14 +174,14 @@ do_configure() { # Force bash until upstream rebuilds the configure script with a newer # version of autotools. #545532 - CONFIG_SHELL=/bin/bash \ - ECONF_SOURCE=${S} \ + CONFIG_SHELL="${EPREFIX}"/bin/bash \ + ECONF_SOURCE="${S}" \ econf "${conf[@]}" "$@" } src_compile() { # See comments in src_configure. - if ! ROOT=/ has_version "~sys-libs/${P}" ; then + if ! ROOT=/ has_version -b "~sys-libs/${P}:0" ; then BUILD_DIR="${WORKDIR}" \ do_compile cross -C progs tic fi @@ -185,6 +208,11 @@ do_compile() { # in parallel. This is not really a perf hit since the source # generation is quite small. emake -j1 sources + # For some reason, sources depends on pc-files which depends on + # compiled libraries which depends on sources which ... + # Manually delete the pc-files file so the install step will + # create the .pc files we want. + rm -f misc/pc-files || die emake "$@" } diff --git a/sys-libs/readline/Manifest b/sys-libs/readline/Manifest index fef6ef494eb4..ebb4af021c00 100644 --- a/sys-libs/readline/Manifest +++ b/sys-libs/readline/Manifest @@ -1,7 +1,7 @@ DIST readline-6.3.tar.gz 2468560 BLAKE2B 24488ec141734c050ba985a93423692396f105619bae3ce5b109bc68a4f43862bcf3a6fb8d82fec1145d665cdb408765e179379bb35f008d09c441fa2e5739df SHA512 f70efaf46d570b85c7637172b0ee2eb9a4aa73ba38a62bb45075e665929d9701b96fba0aea6c767fd9a2a0d39dfe8e70ab06da08f8524aee76a7c502f370a401 DIST readline-7.0.tar.gz 2910016 BLAKE2B 679b8aa7ce003017b729e6d8d4cb69d0f991578441a3e69005090079e61f6aa48b7ad4d0b1f34b6041528cf33254a1bf3ddb05b60db53a06e443d7922d49d0d4 SHA512 18243189d39bf0d4c8a76cddcce75243c1bae8824c686e9b6ba352667607e5b10c5feb79372a1093c1c388d821841670702e940df12eae94bcebdeed90047870 DIST readline-8.0.tar.gz 2975937 BLAKE2B 95e08b28cc46582f036379413810ca40c97d4d3bc59a9e03e04e57d531573abfbe955f6f1cb86e39c208bf6c3f4c618cff70a87bec596d0b9120909d6c5a2f69 SHA512 41759d27bc3a258fefd7f4ff3277fa6ab9c21abb7b160e1a75aa8eba547bd90b288514e76264bd94fb0172da8a4faa54aab2c07b68a0356918ecf7f1969e866f -DIST readline-8.1-rc2.tar.gz 2992815 BLAKE2B 72676c85a55b6698724bf3abcfc6d442f3a86cc12914d1be4e7c342064609e4b96e22ff6c13e4964d4ec1668596071d0d8baf3deae827b2842f4b404481b641e SHA512 2e2c36970dd37e1c1cca34f05a5ebcac81f85e6233ed0c14d4f5fca13cbe24f732e4d123df57d2a315fcb0cbd966b9173b1bd6d9c73e44cb6cd663a78613b747 +DIST readline-8.1-rc3.tar.gz 2992934 BLAKE2B 9da55275f3e3534713c0c2f409022166e1fddc26278bdc92064ed9462687f0614bd99bc31f1f2d0027e21c36e4030af1a1eeffe9d9ac1ac431c1928c73dd18a9 SHA512 88301670c8da5ffb5aeb662c453f22a598c3d2cd3319f428c001986ad021ec1005c491a4e96d764f133d078842af87e74c6dfb09612f469396b814991164db7e DIST readline63-001 1366 BLAKE2B 82af5be99597719329db3f1d6049e75a5654ccf6597cf557c71ad7ada0ac03be87381a7738931eb78716de65902ae87498f574b84150a69eae9cc308c4bfffdd SHA512 e70f89ca52a4eae7e1cddd70de6a7162252231ee029c89bb3fcb0f6c8c8b46c666be910c8b2eee72e96983ec2f1a23663694dc222f67228d82e8e4684f1504a2 DIST readline63-002 1297 BLAKE2B 5ace4a81381910ee48dee8cdbb2ca95a1bef2d1f8acca6d39a910c078c86de10a0fc29486939b336110ecb0281b3edb16e4b985f41e7ee161904728f289fff04 SHA512 4e23bd67433577e6e361d10a6c32768ea9e13b10e77493e565b870f56069b673fbcb0b860225f79fa9931845fc91d35c9a82c1385c23f8b757ebfd59f27851f4 DIST readline63-003 985 BLAKE2B cf2cda505b100d5f820d8bfc99eed6b50e65c92b6a495073352fc7385c6456478594e5c2dc293ce556b66853dff705050fb97982aa25fce452ae53d2cb272cf4 SHA512 6bfb84a5b980091b995e2b96bdf5680f97fe670e6cac1b8606d2d75a1ef922ff5bd4e73f029f7af98a115006b7ab7828146f2cd6986287543d8a29987c91dc12 diff --git a/sys-libs/readline/readline-8.1_rc2.ebuild b/sys-libs/readline/readline-8.1_rc3.ebuild similarity index 99% rename from sys-libs/readline/readline-8.1_rc2.ebuild rename to sys-libs/readline/readline-8.1_rc3.ebuild index 947fca6d47b1..025bd0395bdd 100644 --- a/sys-libs/readline/readline-8.1_rc2.ebuild +++ b/sys-libs/readline/readline-8.1_rc3.ebuild @@ -40,7 +40,7 @@ case ${PV} in esac LICENSE="GPL-3" -SLOT="0/8.1" # subslot matches SONAME major +SLOT="0/8" # subslot matches SONAME major [[ "${PV}" == *_rc* ]] || \ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs +unicode utils" diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index 0693fee6a3b6..6574dc6aa49c 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/udev/udev-215.ebuild b/virtual/udev/udev-215.ebuild deleted file mode 100644 index 3b71760b74c4..000000000000 --- a/virtual/udev/udev-215.ebuild +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Virtual to select between different udev daemon providers" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86" -IUSE="systemd" - -RDEPEND=" - !systemd? ( || ( >=sys-fs/eudev-1.3 >=sys-fs/udev-208-r1 ) ) - systemd? ( >=sys-apps/systemd-208:0 )" diff --git a/virtual/udev/udev-217.ebuild b/virtual/udev/udev-217.ebuild deleted file mode 100644 index 7f18b286a858..000000000000 --- a/virtual/udev/udev-217.ebuild +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Virtual to select between different udev daemon providers" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86" -IUSE="systemd" - -RDEPEND=" - !systemd? ( || ( >=sys-fs/eudev-2.1.1 >=sys-fs/udev-217 ) ) - systemd? ( >=sys-apps/systemd-217:0 )" diff --git a/www-apache/Manifest.gz b/www-apache/Manifest.gz index b4d404429fd3..275d9aba6cc7 100644 Binary files a/www-apache/Manifest.gz and b/www-apache/Manifest.gz differ diff --git a/www-apache/mod_qos/mod_qos-11.66.ebuild b/www-apache/mod_qos/mod_qos-11.66.ebuild index 5a36fe7b7c06..9659eec93ecb 100644 --- a/www-apache/mod_qos/mod_qos-11.66.ebuild +++ b/www-apache/mod_qos/mod_qos-11.66.ebuild @@ -11,11 +11,12 @@ SRC_URI="mirror://sourceforge/mod-qos/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="libressl" RDEPEND=" dev-libs/libpcre:3 - dev-libs/openssl:0= + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) media-libs/libpng:0= sys-libs/zlib:0= " diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index 032ff296c991..1891bcaaf875 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest index f7657abae494..8b467075cba4 100644 --- a/www-apps/drupal/Manifest +++ b/www-apps/drupal/Manifest @@ -1,6 +1,4 @@ -DIST drupal-7.73.tar.gz 3324289 BLAKE2B 85b40994ef336e8a155175597aaf36652850118400533b531d5bfe4ffd797abb9b362ccfb2a52cdf2e326fa4865492406c3ed4cf1a59a4e0aff0613c337c4301 SHA512 45f518ef8bc085eafc2292f6a41c17c2d034fa9261ba8c61549a46adb194020e036355c322abc64a355ff81d00ecd1f0acf0834d46ec028aac506c81f7297849 -DIST drupal-8.8.10.tar.gz 19510031 BLAKE2B daae5669bdaa79ad1ae56a52993a390127fff56307b0256c0dfd9d118f1b09d3e8414b71334c74b01f9e9609870f75b25936bf72a78d051f543862d848daedb8 SHA512 1ebfb7f1f3d29ef00bd560e4ff4d236ee739bafb4f9687bce77dcd6da9746d42db4423a278b22a1b394bbf7eb769975eb69eaeeb16f4ea601cc13d9209309425 -DIST drupal-8.9.6.tar.gz 19789145 BLAKE2B aaa2c5e866fd74dc4e5d19bb4f00eae3333cb86b2b54969f31936cb627e2af0cc14b0e6d1d26b1366040cb3860752d3507b82341d706490fef35ff6ed5ca2316 SHA512 3938cca2736eb2a0fa5c2b12c0d8543f54d0480bbb42b51283f694aa67e7785b94e6d3b2bbeadfd304e9fc429c57b73c12243b178813b658537c42c1303c0d81 -DIST drupal-8.9.7.tar.gz 19791241 BLAKE2B dda9be1c810549134d591fd05f9fa52a59536ae5036bb87f23b972c732489efdc9278ba16e9c41d09e71448543543c12091b68273369af2ecde4d16afb7f039f SHA512 3bf9923e18a0fec49e06d798b555f5df7cd171cb341613a6619595bce7eeceb4ebb16160fc0b15ad845cfcf07edde67f5e103a286dc058b52fb9b078af8dd28e -DIST drupal-9.0.6.tar.gz 16857960 BLAKE2B 0e85e16330b5c3df70443d2f516b0a5d4854db4c3e101dc29a04af7e76cb913b0349deb82643644e722d90c78f7ba4497b8712f229b4eede2fb867c95469d57f SHA512 ee5b0ab3f0fd25c70b6a44e10a2e54c945a3843c460d5769ba5022a82fc2726909f2c34b9823c5f82ee01d8145b739daf2fed3a78ef22454ad0db7f08a0812f1 -DIST drupal-9.0.7.tar.gz 16863270 BLAKE2B 6fa9ed549bf53c0c3a9ade1da8002c9fc7d6c8c29f9a258a82dcc0e0240dbf61892df6fd5997460076b759a1db79d3cd428f1441a067d0134092c9d43a5d8d73 SHA512 7ba5ba42d04e188b02908480ee483935799bca562bc2c927fc8fbf6862499eafd83a1680e19d692d7c08313d5801bf709af04c86285c32fe7ae6cd5c4c5539af +DIST drupal-7.74.tar.gz 3324903 BLAKE2B a6c60955d103e53083f1f964c7a4facc11e4eb6543d191003277da7e28648ff20b10a83f3097c955be91b2fce2f9c39a0b7f84b3e5392dbf7874c55f7be934a7 SHA512 caaf9827ea786fce7ebcdddd4a4a404c0c8b642adb6a7fc436ebdb3db982576fa8fe6a43241e15c9164ec85a96248fb63001c7c2f867f33a2d366f8760f9e83c +DIST drupal-8.8.11.tar.gz 19510434 BLAKE2B d102c11d39b179419f014982401192f91117f96c25bd328439a620c2ba30c4ac0762ee2506d99519ba07cb86501b0adac84edb602c8d40eb0f68bf63766d0b79 SHA512 0c6dd1a3a6856ea2ea7fede6a62e000f186e8d9662cde15e5e5391f589bf2091378351b684d0d15d503e5a45b768fa5d866f7766b3a94bdf7ddd43127aa005ab +DIST drupal-8.9.9.tar.gz 19798680 BLAKE2B de2b20ce15d14763e2e8f63392a5d04185c1864b390310cd73d90df27758da8f223c59d4adac22801194de4dd3ec221f9b755ecf095e9da05d4c6d6a68b35877 SHA512 2a1a88c15aba6103812823bf08606806941480cb75536962654a329f9193a995b38f7434898ddaf057000f7f6d98b66db65772d2decd6e19db8a8f49f2aec318 +DIST drupal-9.0.8.tar.gz 16862449 BLAKE2B 63de723f5fb8fed8a46d5a9b04a905b65aa9ca61939703a7da1cc2b42502aac18a36f1f7dd95619e128d743ca4855fc51200f98ac5f52e426c9c2d62d9f86ba3 SHA512 9e1fb325d2fea4eed05834a700165b2212dd2ab476457c2ac650e8227a4e85f863f87e4125c1a98bd5a4fa1dbc421165a3c5279df67869552c1b7ced0fc04d7e diff --git a/www-apps/drupal/drupal-7.73.ebuild b/www-apps/drupal/drupal-7.74.ebuild similarity index 100% rename from www-apps/drupal/drupal-7.73.ebuild rename to www-apps/drupal/drupal-7.74.ebuild diff --git a/www-apps/drupal/drupal-8.8.10.ebuild b/www-apps/drupal/drupal-8.8.11.ebuild similarity index 100% rename from www-apps/drupal/drupal-8.8.10.ebuild rename to www-apps/drupal/drupal-8.8.11.ebuild diff --git a/www-apps/drupal/drupal-8.9.6.ebuild b/www-apps/drupal/drupal-8.9.9.ebuild similarity index 100% rename from www-apps/drupal/drupal-8.9.6.ebuild rename to www-apps/drupal/drupal-8.9.9.ebuild diff --git a/www-apps/drupal/drupal-9.0.6.ebuild b/www-apps/drupal/drupal-9.0.6.ebuild deleted file mode 100644 index 50acdd30770d..000000000000 --- a/www-apps/drupal/drupal-9.0.6.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 webapp - -MY_PV=${PV:0:3}.0 -MY_P=${P/_/-} -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="PHP-based open-source platform and content management system" -HOMEPAGE="https://www.drupal.org/" -SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="+mysql postgres sqlite +uploadprogress" - -RDEPEND=" - dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] - virtual/httpd-php - uploadprogress? ( dev-php/pecl-uploadprogress ) -" - -need_httpd_cgi - -REQUIRED_USE="|| ( mysql postgres sqlite )" - -src_install() { - webapp_src_preinst - - local docs="LICENSE.txt README.txt core/MAINTAINERS.txt core/INSTALL.txt core/CHANGELOG.txt \ - core/INSTALL.mysql.txt core/INSTALL.pgsql.txt core/INSTALL.sqlite.txt core/UPDATE.txt " - - dodoc ${docs} - rm -f ${docs} core/INSTALL core/COPYRIGHT.txt core/LICENSE.txt || die - - cp sites/default/{default.settings.php,settings.php} || die - insinto "${MY_HTDOCSDIR}" - doins -r . - - dodir "${MY_HTDOCSDIR}"/files - webapp_serverowned "${MY_HTDOCSDIR}"/files - - webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php - webapp_configfile "${MY_HTDOCSDIR}"/.htaccess - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} - -pkg_postinst() { - echo - ewarn "SECURITY NOTICE" - ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:" - ewarn "\t# webapp-config --show-postinst ${PN} ${PV}" - echo - ewarn "If this is a new install, unless you want anyone with network access to your server to be" - ewarn "able to run the setup, you'll have to configure your web server to limit access to it." - echo - ewarn "If you're doing a new drupal-8 install, you'll have to copy /sites/default/default.services.yml" - ewarn "to /sites/default/services.yml and grant it write permissions to your web server." - ewarn "Just follow the instructions of the drupal setup and be sure to resolve any permissions issue" - ewarn "reported by the setup." - echo -} diff --git a/www-apps/drupal/drupal-9.0.7.ebuild b/www-apps/drupal/drupal-9.0.7.ebuild deleted file mode 100644 index 50acdd30770d..000000000000 --- a/www-apps/drupal/drupal-9.0.7.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 webapp - -MY_PV=${PV:0:3}.0 -MY_P=${P/_/-} -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="PHP-based open-source platform and content management system" -HOMEPAGE="https://www.drupal.org/" -SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="+mysql postgres sqlite +uploadprogress" - -RDEPEND=" - dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml] - virtual/httpd-php - uploadprogress? ( dev-php/pecl-uploadprogress ) -" - -need_httpd_cgi - -REQUIRED_USE="|| ( mysql postgres sqlite )" - -src_install() { - webapp_src_preinst - - local docs="LICENSE.txt README.txt core/MAINTAINERS.txt core/INSTALL.txt core/CHANGELOG.txt \ - core/INSTALL.mysql.txt core/INSTALL.pgsql.txt core/INSTALL.sqlite.txt core/UPDATE.txt " - - dodoc ${docs} - rm -f ${docs} core/INSTALL core/COPYRIGHT.txt core/LICENSE.txt || die - - cp sites/default/{default.settings.php,settings.php} || die - insinto "${MY_HTDOCSDIR}" - doins -r . - - dodir "${MY_HTDOCSDIR}"/files - webapp_serverowned "${MY_HTDOCSDIR}"/files - - webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php - webapp_configfile "${MY_HTDOCSDIR}"/.htaccess - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} - -pkg_postinst() { - echo - ewarn "SECURITY NOTICE" - ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:" - ewarn "\t# webapp-config --show-postinst ${PN} ${PV}" - echo - ewarn "If this is a new install, unless you want anyone with network access to your server to be" - ewarn "able to run the setup, you'll have to configure your web server to limit access to it." - echo - ewarn "If you're doing a new drupal-8 install, you'll have to copy /sites/default/default.services.yml" - ewarn "to /sites/default/services.yml and grant it write permissions to your web server." - ewarn "Just follow the instructions of the drupal setup and be sure to resolve any permissions issue" - ewarn "reported by the setup." - echo -} diff --git a/www-apps/drupal/drupal-8.9.7.ebuild b/www-apps/drupal/drupal-9.0.8.ebuild similarity index 100% rename from www-apps/drupal/drupal-8.9.7.ebuild rename to www-apps/drupal/drupal-9.0.8.ebuild diff --git a/www-apps/grafana-bin/Manifest b/www-apps/grafana-bin/Manifest index 1744e2533e36..aff37ca79684 100644 --- a/www-apps/grafana-bin/Manifest +++ b/www-apps/grafana-bin/Manifest @@ -1 +1,2 @@ DIST grafana-bin-7.3.1.tar.gz 53950606 BLAKE2B 16e0253371cb267876772e788e00d2330c664e3f0fea7f3891dbf5d4300e0baf99dd626ac2801201fda87f967d0013a151c672b341179e355acd43430f51acaa SHA512 0436b5bec58e52582542bb1efe7825ffc7abd5289d82916c6a54c6aee77a7350060ef877734b32332a5f3935cf1a3404b670e5f9344a8bb9b5c91d95ad81e214 +DIST grafana-bin-7.3.3.tar.gz 53921906 BLAKE2B 7fff1f6d1ef833815011505ec712e625fca59718ecdc8855bf5495c252b76f7d3dfe7ef28b6c66bd219750817c03a55921e6658c318ec3a227531641e9eb489a SHA512 0b982ac893f31c898865349f41efcb60ccf5789108d573677d9f33a5baf3cb532a8e80704bbd00154062de4d201a3e203f58569f1fd291fec2edfc0a2f434dfb diff --git a/www-apps/grafana-bin/grafana-bin-7.3.3.ebuild b/www-apps/grafana-bin/grafana-bin-7.3.3.ebuild new file mode 100644 index 000000000000..d666b4c9db30 --- /dev/null +++ b/www-apps/grafana-bin/grafana-bin-7.3.3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +MY_PN=${PN/-bin/} +MY_PV=${PV/_beta/-beta} +S=${WORKDIR}/${MY_PN}-${MY_PV} + +DESCRIPTION="Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB" +HOMEPAGE="https://grafana.org" +SRC_URI="https://dl.grafana.com/oss/release/grafana-${PV}.linux-amd64.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="acct-group/grafana + acct-user/grafana" +RDEPEND="${DEPEND} + media-libs/fontconfig" + +QA_PREBUILT="usr/bin/grafana-*" +QA_PRESTRIPPED=${QA_PREBUILT} + +src_install() { + keepdir /etc/grafana + insinto /etc/grafana + newins "${S}"/conf/sample.ini grafana.ini + rm "${S}"/conf/sample.ini || die + + # Frontend assets + insinto /usr/share/${MY_PN} + doins -r public conf + + dobin bin/grafana-cli + dobin bin/grafana-server + + newconfd "${FILESDIR}"/grafana.confd grafana + newinitd "${FILESDIR}"/grafana.initd.3 grafana + systemd_newunit "${FILESDIR}"/grafana.service grafana.service + + keepdir /var/{lib,log}/grafana + keepdir /var/lib/grafana/{dashboards,plugins} + fowners grafana:grafana /var/{lib,log}/grafana + fowners grafana:grafana /var/lib/grafana/{dashboards,plugins} + fperms 0750 /var/{lib,log}/grafana + fperms 0750 /var/lib/grafana/{dashboards,plugins} +} + +postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + # This is a new installation + + elog "${PN} has built-in log rotation. Please see [log.file] section of" + elog "/etc/grafana/grafana.ini for related settings." + elog + elog "You may add your own custom configuration for app-admin/logrotate if you" + elog "wish to use external rotation of logs. In this case, you also need to make" + elog "sure the built-in rotation is turned off." + fi +} diff --git a/www-apps/nikola/Manifest b/www-apps/nikola/Manifest index 6adbeb4c7ed1..ed28ce8e9ebe 100644 --- a/www-apps/nikola/Manifest +++ b/www-apps/nikola/Manifest @@ -2,3 +2,4 @@ DIST Nikola-7.8.15.tar.gz 4131518 BLAKE2B ea3dca9340852a68b668de82e5deeaa0ecf7bb DIST Nikola-8.0.4.tar.gz 4137494 BLAKE2B 04db8b83f34ca9b3cee785c5eed9d0421d27acf750c4f17dc3bec0df6fd4f462af52a65c0c97a07777922da3bf3fa855d58d546479b19bfb152e8190d2f74524 SHA512 eb6774d11be4eab81fbe41115d80e5d0d38694b734431d5d6355fcd3e3d8ae5ff4a02114c5dd0dbbc9e1ea5a625e9ac2b6b91e82f6e017b4376e4ca8d56cfec7 DIST Nikola-8.1.0.tar.gz 4298799 BLAKE2B 568b6b39506ab78c84bdb5fc1bf66829a714d41e1c88afe40236e915a801ce8214e7913ecfda7816d11af17beb9bdb54a0c60a88ef72ce53f7bdac91d057489d SHA512 b88fdf4848314e6428b7f3c4a891aefe682f1ae6a2cdc8da25de1d6af839f5d6f3410e23d90b76094f082aebe15d7e51b2c9cd079d017960bb979503d62a4b68 DIST Nikola-8.1.1.tar.gz 4299903 BLAKE2B 75997604e21484bcaab26afa056c3c82f5d19c810e8a388af07aa3c10f8bd341e912c089af5d3aeda51748b6ec17ee07a7c577d5df1a801b032b0bd100188a9a SHA512 a833cb7687077266a20f7043f99b03391f350b48ceea71250158e760b0e44b603de1d6e398a03ec848483775501ad248b6ac45a23ceb250d120a63f110d482b5 +DIST Nikola-8.1.2.tar.gz 4351283 BLAKE2B 28b4a9905a92ba2714e05aec5854ffbd9bf136e9d31218e032d6697f54b3b2711256b83e74ef6ebd0411fdeb0ac17d6454c52473cb396c029af5086cc085728e SHA512 5f53f4939dddececfaf75922147b18fd08434242373d3f4a54e300475adf274b716cdc6e485e6703bdb17fe038656a8c4ac9b260b4ddd47c252a645c3d26a30a diff --git a/www-apps/nikola/nikola-8.1.2.ebuild b/www-apps/nikola/nikola-8.1.2.ebuild new file mode 100644 index 000000000000..8abf4ceff6cf --- /dev/null +++ b/www-apps/nikola/nikola-8.1.2.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +MY_PN="Nikola" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A static website and blog generator" +HOMEPAGE="https://getnikola.com/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT Apache-2.0 CC0-1.0 public-domain" +SLOT="0" +KEYWORDS="~amd64" +IUSE="assets charts hyphenation ipython jinja server watchdog webmedia" +REQUIRED_USE="server? ( watchdog )" +RESTRICT="test" # needs coveralls + +DEPEND=">=dev-python/docutils-0.13[${PYTHON_USEDEP}]" # needs rst2man to build manpage +RDEPEND="${DEPEND} + >=dev-python/Babel-2.6.0[${PYTHON_USEDEP}] + >=dev-python/blinker-1.3[${PYTHON_USEDEP}] + >=dev-python/doit-0.32[${PYTHON_USEDEP}] + >=dev-python/lxml-3.3.5[${PYTHON_USEDEP}] + >=dev-python/mako-1.0[${PYTHON_USEDEP}] + >=dev-python/markdown-3.0.0[${PYTHON_USEDEP}] + >=dev-python/natsort-3.5.2[${PYTHON_USEDEP}] + >=dev-python/piexif-1.0.3[${PYTHON_USEDEP}] + >=dev-python/pygments-1.6[${PYTHON_USEDEP}] + >=dev-python/PyRSS2Gen-1.1[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.2.0[${PYTHON_USEDEP}] + >=dev-python/unidecode-0.04.16[${PYTHON_USEDEP}] + >=dev-python/yapsy-1.11.223[${PYTHON_USEDEP}] + dev-python/pillow[jpeg,${PYTHON_USEDEP}] + dev-python/cloudpickle[${PYTHON_USEDEP}] + assets? ( >=dev-python/webassets-0.10.1[${PYTHON_USEDEP}] ) + charts? ( >=dev-python/pygal-2.0.1[${PYTHON_USEDEP}] ) + hyphenation? ( >=dev-python/pyphen-0.9.1[${PYTHON_USEDEP}] ) + ipython? ( >=dev-python/ipython-2.0.0[notebook,${PYTHON_USEDEP}] ) + jinja? ( >=dev-python/jinja-2.7.2[${PYTHON_USEDEP}] ) + server? ( dev-python/aiohttp[${PYTHON_USEDEP}] ) + watchdog? ( >=dev-python/watchdog-0.8.3[${PYTHON_USEDEP}] ) + webmedia? ( >=dev-python/micawber-0.3.0[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +src_install() { + distutils-r1_src_install + + # hackish way to remove docs that ended up in the wrong place + rm -rv "${ED}/usr/share/doc/${PN}" || die + + dodoc AUTHORS.txt CHANGES.txt README.rst docs/*.rst + gunzip "${ED}/usr/share/man/man1/${PN}.1.gz" || die +} diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index c61421006dd7..9188b301252b 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 92269ee097ad..3c74d80098d4 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -1,7 +1,7 @@ DIST chromium-86-patchset-7.tar.xz 7560 BLAKE2B b7efc559bebe048e7c1a8ff7e3a88f4c47889976d7f573ed48562cc0b70a9282751145e1f5b90cb651c34fe7c43f8f414c42cc8c78cf70e5ffa8eaff13334630 SHA512 cbcee766a2aea1c339ef9589828875dc431aba002d77fa9531731514cbb219437dfc1d766ebc184ac477990589386070cf3d0f68ceb3211f8dac6c6be7da3a09 DIST chromium-86.0.4240.198.tar.xz 825538884 BLAKE2B 86da563cfd3c429d44ea1629ab25072135323c5f84f9966b38f2558c0fb88899fa1c462efca1852f89a8ff082834385ae5c2e07798929ba8e7c536ae58e778e3 SHA512 179f43b1444b805b8939098c71d542276985d65ef03bd1bf2303b21bf26b431e790a42310b2749c1901f0f8514e9ccadb776b7d39b7833a8154624557fbcf423 DIST chromium-87-patchset-9.tar.xz 6036 BLAKE2B 4dd9aa0e88f11a9104cb13e73607c3b4fcd7e9cb556034472e2fd46158db6e7505b22c098df1c7cab6c7ff06ba6dc45914dcab58a405e0eafffa58d8b0cafbbf SHA512 c036ee20b4906bdb1b3104ecacf30a092ee3662ec10754bf2b168f1b7e1dbf593216e4dc70f8264540fadf91a33b48a8b8040028966dfcc8d8be99807b5f1b99 -DIST chromium-87.0.4280.63.tar.xz 856548912 BLAKE2B 83e76ce7a2fbbe04993272b7b8b9ddf8fb6377d447efb5c05708bd0f06f1866527c20280701b6aec429e5894c1e1a5ba6241956aca8e58f8b9671ccd5a0ddbc0 SHA512 448913f823104a40d990b80c0eca714f755a1c9ef43f94b958197956b0e8777e3da93b5662a1c480fdb69cb35d64a25d3b9bb134ee5b29d13c2d897a2a751c84 +DIST chromium-87.0.4280.66.tar.xz 856464608 BLAKE2B 5e386c8043aac6c55d3f16ffeabc36571999b265559f3e1d3eddfd972fb3fb3c0fba4d9c6a23a94bcaa6bcec1f4892c04fb301d18cc76f997ce5696908f0c9dd SHA512 8bf31b012166fb1fd35107020608cf77e6a31038a583423541c64aaf1c91bca0767ca111dcb4dd0f57c9c19c347375bde6b6488c56e309bd2871998c26b8b32a DIST chromium-88-patchset-2.tar.xz 6832 BLAKE2B 5ef8a3ce491c96d71ab7ed41d188dcff929c146f2c412bda1035b52fda09dc2bdeb3266eb3e1d046398deb59f440e69ee255a61ced3c2ab409e99ffd36b769e7 SHA512 e83564dfb4367867494868b53d171c276ee9d6827a60a80ac6ab06b410ed79c64c79b60b5be6e44d25987029ebed997b2779ab019d23908df8d14f2decad51be DIST chromium-88.0.4315.5.tar.xz 845479952 BLAKE2B 78021935cbf7b3ceaedda1d1e4f355e4fe95795f5c793b46311ccc3c9dda53eb1518fe6472dc761790a9ea37a57c2f554fe442aff5d82bb133a028ff491b6099 SHA512 586fabb0759a880a010d6f80b3c5ec0f6477524b7d110cf05767cf2a8b48d81ad1e5161ebcd0e045f18006cf626413188dc6247a08b7ea57db53422b0708d4d3 DIST setuptools-44.1.0.zip 858569 BLAKE2B f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68 SHA512 4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf diff --git a/www-client/chromium/chromium-87.0.4280.63.ebuild b/www-client/chromium/chromium-87.0.4280.66.ebuild similarity index 99% rename from www-client/chromium/chromium-87.0.4280.63.ebuild rename to www-client/chromium/chromium-87.0.4280.66.ebuild index 8d4ef7e9afcd..15978621574f 100644 --- a/www-client/chromium/chromium-87.0.4280.63.ebuild +++ b/www-client/chromium/chromium-87.0.4280.66.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P} LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 ~x86" IUSE="component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +tcmalloc vaapi wayland widevine" RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )" REQUIRED_USE=" diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index 522ea92d9818..5c124fd4d5da 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -1,98 +1,3 @@ -DIST firefox-78.4.1esr-ach.xpi 500672 BLAKE2B c9241f614ffc831373b7f83da35fc02268e0b1a9eeccb541d486c52e254f4efeb48e2bdfc2382c0b085b6183893c362510a04e85568cc8e36d5ab13594709e48 SHA512 8d8b0d7515dcadf7453e1a439745be7e7a5415d6181928d810f1d03768768f6531e02a4ea27edcd29a9f2e2c9c0a15d64814342267c11f7f8b7272db52d7a62a -DIST firefox-78.4.1esr-af.xpi 444081 BLAKE2B 6cd3f018c3795e6b1897b83f96cc1def628ddbb576aacc32a8c8436fa797f42370a1fb4863960d02a970d79b4ff711c9f2ad5179a503c95a2201b5cfd56beb5f SHA512 364952d6b25f598512d9fe668ad193800401c5338c4ce0ffb2f23fcebf9456459f513ba516a180a93388ad44766b627a08016abeb9ded7a025bc623f1a1bd3f7 -DIST firefox-78.4.1esr-an.xpi 511464 BLAKE2B 7b1b315af4fca8d9e859e4231fe549c3d24df35c7e3f94ccdf262d49b0e1446efdb24c99ccce141804ddd1da980c19ff7956b8220affdc29539b5aa384b2b58c SHA512 7695a8fda0179eaf1fc8b7a7d0c819a7576d079a85fd58b825259bf8131469c3b9a131c933ba2548cbeeac1f22762c4ebda323760375dbc12f63e81fd73ffa24 -DIST firefox-78.4.1esr-ar.xpi 588701 BLAKE2B 88ea4918685e0388cc7c2dd3d07a607d3ab08102b2249df7d53074cf318d9d5680574f13b0656dfd71c612d90d1fd0b9ea5fa06b6673add084779cdffa4b5692 SHA512 e4899a7f5948b31586fa5508b948a5129975bbefc2c781cce98c4aaec57f23e5635f6a9fd7adc76a6881eb8d1c2ccbb12f3fbf8df21a4e02cc02521147cdb31a -DIST firefox-78.4.1esr-ast.xpi 500542 BLAKE2B 3fdd654e4ad837ee295b0f9e7cea41e6d4dd62e7ebe148de679b63a8837b229f0f87fd3cc47be7eb47feb5dec9e9ce9a6ec00dde95ca3f00fc31cf7e68cb77b0 SHA512 7186711912266f74fe662b626070ea7348d9649a15297c05c7e5ee9c25874b0b2cbade7a9652460516cd66220e2bab7831bbc3c1e73dd1f182ae9534c5de001c -DIST firefox-78.4.1esr-az.xpi 537586 BLAKE2B b68d597c7b963bf3e41c4e59217e561f4ea1f8534524f73e96dc88c183a6093556eeac975b9de449389d1d8c6d97d140b2b01810f802d14b665f2eecc6b856e3 SHA512 d9d87cf1833c5a7463163a3160ec8007ac9413825a97e22117bcf445d9db41a7d21b592704579d849747922f487246bcd7a79188f2527543b8dd3bc5d1855a78 -DIST firefox-78.4.1esr-be.xpi 647666 BLAKE2B dcc2139a545077117528b9b30a9ff58a1a92f2711df260460ad06d457f481a2549a810e6c358ff6ab1902a39eda0160a22d3c45d5ea4b0671a8048c9d36d0e1f SHA512 b95744ac5d8660e13a9b71fab70ae7e9b324ecc6b6ad740685cf3c35ac9f933f3cf43aa3463b9c1151ec5666cd6e84dd3d9a37ed3444b48530aeb108a8600487 -DIST firefox-78.4.1esr-bg.xpi 608535 BLAKE2B 2c176fd469dc29c9879b33a3d09356b05d51a7849677c15be361acd03197e9f529a9096f03b79d58e4d0feafd38746aa8ce5d1c812dc2f3069aaccee48b7291b SHA512 9592e308903d57b8c1a42eb9843f3dce509ca57d61cae3d474de2eace9f5a70c6a7eb022c27dcd4fa216eaae2c05a3976470a5a5acd3ce2f09e63e5a29a967ec -DIST firefox-78.4.1esr-bn.xpi 634045 BLAKE2B 5f40707f16621cf639fddeeba14c4b60d096010359e30246cfc1f195e3c498365c95733ddda2881d21b590164bf6a3bbca6a3c8a757ae2788404e7c0312ae346 SHA512 f8192c16116d9faac846a81284f02dbe01803da0b04fb73267f1cb4156bd97e580abb0021bcc4c1e6ec06559a48251f7dbcdfea925c864047aaa7449f5baeb7b -DIST firefox-78.4.1esr-br.xpi 551260 BLAKE2B 5335d48cde3fb04e354c12d7bea0e25e756b027943c5014da754ffc8182625dc95de3e2083b5d8822d70fd96e5bc4a51e01dbb219036990170fb0320e4ddaede SHA512 b63f8c1fc1b425a77b34668f8ecbfeb20007146065f8e1fdfd1bf860bc81d456f1a6008da9f7d51bcb329cbfce3bfc8046e73ed8c906b40c154e66c965068815 -DIST firefox-78.4.1esr-bs.xpi 506394 BLAKE2B 376b4bdf8c817799c4e80365a9eb45bd66d5dcf93970d9fc00ff4bb9f30b00319c24f0f27626c7e38d3440e58adc3338bd448846fd16bb88b8316c93fb9102d5 SHA512 5f57f316da4d9709643f0d2b14f8138a6279ae5551a30e676cd0c68eac0990ebbbc0eeb593213fc841e3a175cda0835c167e764dba32ca43e165e09be8ffe997 -DIST firefox-78.4.1esr-ca-valencia.xpi 558392 BLAKE2B 3234e79bd3872f800b846ef92801bf087f6f7ffeb804d66c3086423fe0fc475c49f25cd451dca1ab0e5fc964ba1a475d47f26072d105ea5d493304174ae90a13 SHA512 f7c11040a97d8e859bfbeb804ac8aa7b519fa8175fa6a55cd35d54c19fad9451a63914de9911540e1b966882fac340e7995e7b8d57263af1d62cacd1d36810b9 -DIST firefox-78.4.1esr-ca.xpi 552881 BLAKE2B b6db49780f674ec6ffb40b741047646f5e4c18047a26524964f1d014845d748124edea84beab1f320719ed66cca05d21ce8bb2d62aae2bdd295a574a0ebcd005 SHA512 bb67676c9360e240ecdcbb7a0b5a962325988be960ce1c841fc87df11254f5cb2a7bdc10d7403efa859408cde14168fd728b65a5ba931007fb45e305b7903bfb -DIST firefox-78.4.1esr-cak.xpi 584929 BLAKE2B 8818df9c001fa355b87987109bdd3d93e71a503670d0da1bb2b5941a2df016b603231707835363cb1c1bdb7baa2e89ee9332e0129de8cd50d142f67d21e800db SHA512 6e95c249e17348a4a3b2a3b6a2d7018078d85358ed8d54fe9fa598caa973be73ecf0339d95e8f325823a64eecf7260b0d002aa8735c439094ed0a103ed3d1ce7 -DIST firefox-78.4.1esr-cs.xpi 585533 BLAKE2B c284d73cb99ed4d7b48f559cba78a898e1e2ede7271819995b2c1c62e76742d45a9c13b543fe903e63e2dfc742a11f9b6c8ad6d22466c5c065e00cd1a788a376 SHA512 a6df083c9a9624257f6ac6ab148ca7cdf170b8ec69348a3064f17c9e33407c01a74bb9df70ad6dfb4c94b262f6e79cd03c177de521b6e7e36a78434fc9e20c27 -DIST firefox-78.4.1esr-cy.xpi 563226 BLAKE2B 5a6de4b94e499850f2da37d1d59dd0e4770f1be8323bed711589e04098cd0e3ec815eb4faaa10bd393f5be5f72812a257b4e1f941826502d8b41fbc1f1ef05ad SHA512 03e13ad7d4df5fc83e57482f14fac81717293fde34adab5178ae47a344e700a41968d6131eb5443c1d7b2a99ef11e2b934eb331eeb01318251b735f81146a749 -DIST firefox-78.4.1esr-da.xpi 552321 BLAKE2B 2121b9bad5eae61055786ef2e52746fe1903cfbee181a5821eab70ff64b664acfd6ec7d366a924f97cef88ee260a4f9531592bc0b4a1d54b23e8fb06c415478b SHA512 16a13a0a956572dee06723915c6f26d191669d7a909af392d0d546507f9bbeb1700cbd123bed19932e1d2653523bae51ad7b1705d911d35c087636a2718c9cbc -DIST firefox-78.4.1esr-de.xpi 576945 BLAKE2B 5fa54552e9d803c558f908dd37bcabe4d4c4edbf0986b3cab6345ce27d9a7bbdbf8f19a149720e6bc36bdfeceae996aa28070be6df284297b7a38a9b16912f4a SHA512 e904444aa40eb5a9601c1ca4d8d0617c51d1128b5a39ae7458d03a7942fa7c1e701b87b5b7e4fc732b6d9df26c33a7f790103e92b3d1cdf7feab03ba9215c02e -DIST firefox-78.4.1esr-dsb.xpi 589037 BLAKE2B 5091c78a01ed6a19f43c222d7c6cd802e64de73b31abcabee8900ee56de1a9e52a44d3bbeddc1d132faf7e0a9702e5420c1fffd403a7b54f4a994c008b104ff7 SHA512 c22dd4e9309ce58e0246d991e1fe50b97d03b472b921d92fcc949ed6d7392121983b921f6a2dfde46dd3943d259247a8ae4f0a9b8cf1dd53fb6a943f6a5598fe -DIST firefox-78.4.1esr-el.xpi 665908 BLAKE2B 0fda612ed26a274a965c7860cf3fd4c7cf1a8654d0b6ed6cbd23ab2d00114db4a317196ea6ae1ad142efbba2f214919b1f9f9107f7a5f9690057324a96424766 SHA512 f562acffeb90d25dca6f919adc20b963f71e9fe0a3a9797424449576cb5b312d683ff346e436d4b47bedb9a5a4d6258a71a6ce254df97a77ddaea464468540e1 -DIST firefox-78.4.1esr-en-CA.xpi 531410 BLAKE2B 6b07aab590dacb9908b9a5c92565a18f55cabc4d0caf5734cdf19c958ff88577a53ab83fbaad6b8f4824b520c81c8300e618a62ea955128e3a8be62c45672e65 SHA512 32c8048abdf3987901c841a6302cc762b11dc52a78fc6cf6438dc94824b3ffda70bd513efe361d8444ff40ab3dff551fbe7f7498493044c9d66cfb4d81cfd436 -DIST firefox-78.4.1esr-en-GB.xpi 531212 BLAKE2B 2a04af91dde6bc48a86469aa568ad6b01734753722726332ff893f59f1f128317b3efedc956c2c1332ce9134e254619c860ccaadc0adc2d6dd377e3b771c22f6 SHA512 df42bbd84501104e8b17a43764eed92f80f702f377b9af74cdbd22eedddb88de37451bc48f6df6d9977bee25330eafd2a1c534cdd75aea93d369e4f15576f42d -DIST firefox-78.4.1esr-eo.xpi 558622 BLAKE2B 47cf9719de3f37c3a7a7172d618257465059305ec7bf51fb3cfe26fcf5f6818fbe9de913e00c237fd3a645cffae967d366e25e3fc502a9a54e9f1011c3acf3f8 SHA512 6de0a606e7e4867ccd02044c91615fce7463d057803cfd5d9f61606c7e09e3b75951d63c297589ff1b8f59bfdc751939a4947ea563f64ca7a06be9a13727d274 -DIST firefox-78.4.1esr-es-AR.xpi 568392 BLAKE2B 7dd05402d5278e970979b17fb4c859fc9991953858e019d253d9900071b157e5ecd3210045162cd9446272413612ddf25ed78354433c70cf43e2959a34037597 SHA512 c79235b5a65ab156094f4a850f1cf96fa6c9245a0b6df354a28d01e7b62e699ba38b0c34a9312315107cf9c15388322b3224531801b911ac612a7ac693221fee -DIST firefox-78.4.1esr-es-CL.xpi 567585 BLAKE2B b1459a6141915988f1ad65d6f8799c1f771d6453fdd1c5488635e7607ad9bf1f92cd60115cf0c79169015e4c202a94a33ff0f65cab838a87914faac04d00d076 SHA512 0ad80d786921e26a4437a95b9cd8d315a01178a315df0c0837a2da18b5eee3d198fe78598400fbf3ad77fa30d3129512631946c192632ed8fd72025ddb477c5b -DIST firefox-78.4.1esr-es-ES.xpi 551505 BLAKE2B 349b33831d7d1349f8b229f39eb6412ec903b01de7444106d637250e8569b2d7b8b9ec93fc950875407471f8cc9e882649723e6e0c939b1cf3c5417858b1d8ef SHA512 e282ac35e9e47431ba975ea303f7678b89a6ead3b1276e7c0c6741af9a493f98e5dfcbcb4a1d9b9c00db7e88ecd652e5ee6e3acc36a91e374773193976062560 -DIST firefox-78.4.1esr-es-MX.xpi 569780 BLAKE2B a9b2c9d4130156f44697ee3c222ff71d7a368484da26efb296834a3af11504f1338a008e80857257590de2d97f08fcc373870c367d781a64b6fb37ac063cefdd SHA512 f7ca995a7220979b9da10d49e48170bc17c8ba9f3e086b82a03665386497bf75f103273db049d574f8422360f6b1a09e8fd3c5f2a616c23e4b19fb5156a2d6f3 -DIST firefox-78.4.1esr-et.xpi 535626 BLAKE2B a9be6b4162ff1d73ef03ec4e1b16b534d9e57bbacc15afbfb5c39a0d85596dacbfb2a8ad25632c4e66e26869767b63e13c2eddc1856e52d0faecb4416192851f SHA512 6e015658dbe065198c42b24a3651367f8f43b4fa92f3e3433c9f5ec6f8ec3925b071fdefe2f888f14f6130f4e804e3830aff89f3a290627cc89bbdc6ee915890 -DIST firefox-78.4.1esr-eu.xpi 556809 BLAKE2B cd6d5c48e20f01bfa1376f56c85faab0c12832dc66dfb919f677e2fc80dba9d0a5e1bf87ce961839c0633fd6c7a64afbfef1347188065e07e9abb8cd4772aec0 SHA512 a77472aabe841dfd0ac6356e4566812a8c16ca173a98f4ab6fc53618ccc4f645af9c651e641d4ef604dafbdaa275a45f21ce42b1146d4b8f46109ce3876890eb -DIST firefox-78.4.1esr-fa.xpi 593501 BLAKE2B d697514267f5aa647e813eed42b182228535be17a393c80556b1cdd7f6be8c3cdee2918596011ed1290c60970b1cabf2e666472e288d0dfed41e01000b9e6a2c SHA512 fe9ea5c9dedfb848d83ad0af7b1a0474bd0a90308961c89a699b45a139c1c536de80543a2ade238fef988eeb7dc74ce0071d37b846247afae1abf0ff20a31954 -DIST firefox-78.4.1esr-ff.xpi 531575 BLAKE2B 458a075c8fc2fab5b71e271553d1c25f770ddd81b4fb8983eb00941e126108e5873765c3cc23d76b8895fad7c796305cac0b6b4256b45be40e71acccbc1a559d SHA512 3ed6a88a30dd7f39118a068e39b9e18804b4d168ebf567b7978c1899aeeb7e1b6cac2b6c9c26987b33e9c583bd8e09bced2ce064be832b35e12e832dcaf88921 -DIST firefox-78.4.1esr-fi.xpi 554034 BLAKE2B 5bd76fb180b3bdb86bbbb219c6587232a1391136c8d19b5d74d077f30802c923d795c2058b8ce24d664661a071f81d759fffc947457f4bcc9bb6b371234447e2 SHA512 2f1131876df3a7a01100327863132955efd13329e1b4adb282613d825e0376e6f968151a32991d278118802df5627cf4a09bf9aed6ba7e9d0e131ef1c92606a9 -DIST firefox-78.4.1esr-fr.xpi 580678 BLAKE2B 0efe76a896cb580e12c3d6e18620efe7fd56031d03c3129c75b9f177819999a3c1eb6acfafbae1c7d689892309836467b6f323f3b56f5a2e3955eefa11d2b5f2 SHA512 2e05f021cb58fd52d880e6fd21f23673c22b6f6179ab6f386336c72a43880ab0d349d4ba28e5647800e86d715b0367ae4e041a8ac5906b8a2207d7fd3442847c -DIST firefox-78.4.1esr-fy-NL.xpi 565453 BLAKE2B 090243d8b8cb2206a0cf4344152645c34f00071031abaec1a8fca44a0cc3beae46cc49082dd6fd675942d745146e24576fa9c91a83a0444751e29482641bb356 SHA512 6eccac436dc7ba2fcaa2624740ce25324ea428f4c2c089dc72fd3a00a37984d9e50025753590ddb1004af3330a24ff154bb80a3fb97c4535fce65900fb8b2743 -DIST firefox-78.4.1esr-ga-IE.xpi 514578 BLAKE2B 31b04df297c55f7e1a16063ebc47adb9408272d0aab60a6a9ec6180c6997a74577bf6d38e7c8f3d09cdb2d556015ce746a68579e6c8179400445cbe91767135a SHA512 ba6bd1fe486df9c5d94ac7c94da4a9a08e3a33d10e1c3b713099b585841a151614b47707b5971440f7864b1be7c342f8d9e874e61f68a570c0b144ab88e242bb -DIST firefox-78.4.1esr-gd.xpi 544418 BLAKE2B d3d84cfe0419c01996f1452b7e2ae56e3d91dc1a806a367edc08efd9e76bbc3fe4f9654fa62fbe71a6d680d1db5ada0cc2370493705ee88996055f4c7563fb69 SHA512 380ec39988515ab2e54d8e26d8864dc76af2bcea8d130ec893aea9aad5cd1a5942d962c558723bfcd50b3f3df879c0e7765861fd97c4ca6e08af6128a3c6c38f -DIST firefox-78.4.1esr-gl.xpi 508275 BLAKE2B ebf161c32934bd585606559543d2155f5f742ef3cdc03dad2602d9a874d7f01e01609695ebe18d9c5d0893ce45eafb1278d24c3efad3af781389da8733295fb2 SHA512 c03cd177710c1f051bf125d8b93898ac5528edc4cba4d830ffecfaf877a33e53c5f71a0bd75616b6a0f12d2c88d8caf7e6b415e0a5d0ffdf8f3e0497d0e0e536 -DIST firefox-78.4.1esr-gn.xpi 582152 BLAKE2B f0bf7e6d3743d009186fc5f99c0acb6cac788c4776ec21ffad5ae06089778273a769f5ce151cec5799507174d6f1458a874f08826e0e01d6d921b829d352942a SHA512 30cef51faf477107b5dcce8b06bf7263e5f7cd0f5a0b2beac3fd3294c57d087649ce2c664439dd7f2325568dd9bce89a606a767bbffa1e955e19d70d06fa3b35 -DIST firefox-78.4.1esr-gu-IN.xpi 602913 BLAKE2B c4b45c46eaf31b456a97c75b8b48b07ecdbd1c444806c8a8d7fb4c114f4cbba5390882127e654033582474b3dac2b7489175e13481cf32851dfd2f6390926279 SHA512 adc1d3ab611405a89883bc0aaa09149d06649b119f494ad92913a841eb5a07f36d8612f43c59409b272b960ff3abb2a4c2a4f8e3e1e7bf199e59be3651085d41 -DIST firefox-78.4.1esr-he.xpi 582420 BLAKE2B 542889b7cea65b50e9b5a57c55bfab8e5feec504cc53f0ceb6d008cb4eb25308ffc6b530595bdc4b190e4abc04814d9a420c65074cdbdfb1aa2b292d1a84f326 SHA512 8c162958853d2b1063c0d8621da5c305bdd5edc471744094e6330f29da14957ff707a8145d2da69acd1ae754c58062737d383870a3b0750d503adbdf85ca663e -DIST firefox-78.4.1esr-hi-IN.xpi 622433 BLAKE2B 4c5fe16c4aded7867c6055bcb26a62884673a61758f20d28c13e0ef6875db355e91d61c747880dd8ecce1b16c600d933462756aaddf2edf81a0d7aa282d1b473 SHA512 02c33dcff2a35e4d6af59bb5ed80b072230d3dbe177ff0347b8accdf3edfcefb01d6553869b6e6abcbaec49bbd80866069e02e9349aa6c951ce82c7cf7049180 -DIST firefox-78.4.1esr-hr.xpi 560778 BLAKE2B c6298ac23aa9e8b15a4272eb6b854a7851b620fe0261ff7a9ee797fdd272c2f20ae80129a2c4d144523fb1b5141246ed8687c5edcecb0f49f679e6bf9338ad07 SHA512 9d5f14274e8ed7e6b9cd8f1dce91b0dadb1a191b8dd5b00ab9628118edeb97a64420707e9e8682761e6bc75f89180e9f29c1275f639d07cbf59cc1720ab26c55 -DIST firefox-78.4.1esr-hsb.xpi 585292 BLAKE2B 4d1be9e68adb2bf6e308340d7b65acad872a54cd5786fa928720ce8b10a5bb4bec7ac1a5e1932f55e3638a82979064d612460b375d2b7b02c8470bd5e6ab678b SHA512 a36566bd7c9f6f95934729e63b13695b739b1797f387ae663dcb57c96ef84cc849f122118b77185ccaad59fe2540cca654f75835e0237f647787894c56381ef7 -DIST firefox-78.4.1esr-hu.xpi 588750 BLAKE2B d87921414903174c60c117a1659710806e629508a72b7f62f0d1990d38d21dd27e2a2cc2424545d182bcf2dd4ad1a3e558ce87ebd50bdeed1c6c89c25361d7cc SHA512 0387368285ca81820bb08e6a321a2bc340068fd8666c5653cd01764c30f80d94dce52884f3ca55d84c7c460563c4d8c6a2a284aa65d9be56fa4b2e8779ce3cdb -DIST firefox-78.4.1esr-hy-AM.xpi 649352 BLAKE2B 25a94c0ac7b1f4cb5cee48cd68ce589e7b521ce107c3e4e7325bdd4092ed3748ad4847c9c3c3f3512f3795df20dfeea25ed3e128a444c39eeb26e837721f6322 SHA512 a627068e77a5df8dabfa22ceee6d0ea79ebf77ca306648473f55248e4b46a411675d5c6890fb7d5c4b22d13a5c0fdc08a77495190c62b64dd1e086a80e645a39 -DIST firefox-78.4.1esr-ia.xpi 554118 BLAKE2B faa0b3aa5fbd09d145144bc8da32de8383a2a5b043b9994d58c99a0667494938aa0ee23ac82ab7d4e56ecf1a0f9681afbfdcf5c21b2d0f636d4f43f6c1308036 SHA512 39e9d0399e28450e365a776b46123e44cb91cf8f12a02c1bcb6baeaccd690bec9a101f6c1598be39bc578727e36856f94f5b3f099b9cf52c91a3735ea7512173 -DIST firefox-78.4.1esr-id.xpi 551933 BLAKE2B 6788f1de7b9abe8e9cad3f33c1664fdac4d6af00405b71384d0e7bef431ede46cacde073637556dd10db653358c1f0a649881d535d413a8a5773d6578da45f04 SHA512 bf148e14ba1d83c8a5998bad814875552e2a0f51b28a85a0bdd4cd22c1e5728b2637fdad68bc5ca967b4f40cfedeea3f95059ad2293aeb88a2c3d8de5ced4a66 -DIST firefox-78.4.1esr-is.xpi 527499 BLAKE2B 70971fa713863e917d408afa73e8fe78f06811f59d5f73d0d8009f9a0396411de7d230079de70ade1c23595e5b1a81bd348e38f1ad633e88bfa71e11060a6536 SHA512 dddbc1119d9e539dc132319c6a46b43f0e8429aff9267f143e0ab0e592567faea0a4cbf99a7cda551f7ad69f9fef3c32a69673f62cef6af59056d98fb049fff9 -DIST firefox-78.4.1esr-it.xpi 455019 BLAKE2B 9e8439feed885ac0098449a46582381343e0532558ca5b687e2c9e12af481446591acefd6094f388d34942c207c9e8cae5501835997dbadfa42633b081b8c04b SHA512 ca9485eed28e9ac2f183a0ddb91792ae52777adf9d1b5949fd0f66ca7b0a1b193b2cc1e1495cd0418dfe12b217b487ad86844fdbb5db87eacac7231e83c2782d -DIST firefox-78.4.1esr-ja.xpi 615914 BLAKE2B e92376ec1af11e8948196dc27c2d6b14f20617a219ce4d06d59f9f972ccfb92c54da281404ead4b095df17d6a5832c76f9a87821da66e8b6206d26750536b3b0 SHA512 8b17151041f6348e0b1dbee82b999b5951ef0c10bfbace350944f7729893d533242de4fecf8b972e0cb1468858561129e4459f1ed4cdc414532cba237c0e73aa -DIST firefox-78.4.1esr-ka.xpi 612302 BLAKE2B 75ce1e932eb5122c1d4f34c1064d0cc5bd0e6fa78446bfd6df3265d4fe025fa34cf1caa3e8e5a89e78cc2579d29115c8982c710cca53cfadc22f50e16b8962f8 SHA512 b62b56bcbffd58522f8b33800218e82b7df955c4507a75e3c627fe2e3ce57199eda0d229e8136dc2e3d366981910361162cf504af470aafb4afd0ee3e35cef87 -DIST firefox-78.4.1esr-kab.xpi 574002 BLAKE2B e50fa95bbf52c2061df20b0be619720df8f42bcd8752f5f31f3d3b81fb704d8bd0a9726229a441a42a3041a25c053b998d242495170475d1b5925b0bc9c94cb6 SHA512 d1401c32b5f9f03997df895e376eec0852c011c33245957346b86c1b803f70e11c23984b125ccba94a66a749b106d802a125ffbec2bdd9d414f506436bd273cd -DIST firefox-78.4.1esr-kk.xpi 642145 BLAKE2B a79132a4648e3cf1aca395902aaf2ed5baba75713dd803866f2cbb4959bd0ae80b4b15164407a0ef775e7a7001c8da4fedc73d8a96abc3fc0ec9a9fdd86106c3 SHA512 fd32ebd540e49844307019be21c233867c56c3dc1750260a155f181429f613fc5067cd0f091921d18b869aa76e180f8b7ae19e22a820b92d03bcd6391e8641d3 -DIST firefox-78.4.1esr-km.xpi 567233 BLAKE2B 09029e7efe722f7b667c554f77dc8dc60fc5c44621d23a7a6e2b7929bbd3330406bcb9e7b2f7d6c66074cc7fb4838724e60382e63a2acfc20864827c8c772de1 SHA512 a8f026609e3ed3020338fc7252fd74056ee973dddae8586aaa1719d86652f714d663c28674519f082949b945ee7591f956033263f48d7e6c8c3a3a93a5b962fb -DIST firefox-78.4.1esr-kn.xpi 558808 BLAKE2B 10677595ef47bf60be15b2d0503a21a1cb474a0c701d414573e0c77c2c152cf7235808698dfbe21f7556b607f3d7a9dbd9925acf0b8e229e9dbb392ed5bb0b42 SHA512 3ee47ff127f972d49e0d711af94c62424c44692ac253223f56936c0d5d9af892f618fdfbce66bdc04c0702331a2d4875aba967de1b015ab58cb00149b75e94a4 -DIST firefox-78.4.1esr-ko.xpi 602753 BLAKE2B b4aa8ef7a9556502f8a39ae3978c767a5e52db54b24324f164e1d87bc160005f0f0c82cfc5bf909a8f1664374dfa9a5a37ea8e12e3d92327932e51e3643e600b SHA512 c96b5c5b2dc5645bb64859b25044b54acf486e57c8438fff0aca957ae94038cd38519f870a354165ed7a10951f17b7751b8423aa037eee9486de0e93f60f6abf -DIST firefox-78.4.1esr-lij.xpi 526114 BLAKE2B 05c9abb924d5bf9a998671c6809af4feda97e4f2d63b8d2cd48cdc72dfad20430d4a14d360210fd70f210017ccd35a31ba46069abc11eb0109aaa1f1b717159d SHA512 8dd5f58a01d6df4bce0d84190eac0216ad95e83d8ff164ebc54047b442a144ce6c3a1cf5839aa873db786b4abbd76302972a9d485aafbca3c06e478f05be113a -DIST firefox-78.4.1esr-lt.xpi 579642 BLAKE2B 6f06ef47200975fcbd22b3d5a5e0ecbf0902fbd03a219b7b5d7fe90683e895bde53d5be9b07b72e4de1fe0bbe34a7e920cec5bb71bf828dac5e55d1acae1f99d SHA512 05203ba171f0a7361057979c201e5545225a04327e22b765b92b380df0bd7c927b0c37f2f774ffbe59adc4ec6dc16abdb649e58098a3154fe279a2f883f7313a -DIST firefox-78.4.1esr-lv.xpi 516868 BLAKE2B 66b9f263b090c5d860775fb4442d67991a8502eb824150f6760f86088aa996ad0af2fbebcd637ea229dfa8c0b26a71ded685ec355bdd1712c3543e406724fc75 SHA512 559329307fc7245d30c440da0478ee20d0c00518f1250d71e7e1af80ab0031981f44aa05bcad11fe3a28dc05d2f388cb42b6351766f4ddeeca8799a8973c4515 -DIST firefox-78.4.1esr-mk.xpi 482937 BLAKE2B 521dfe37decb61a7c60634a0e71e6a13fe34a8c7b787159b870301a3aeb766a5b893c869ca8c8b4e82ebec112198d93bb582507e9d19389191807cf0c7f59277 SHA512 87275f8ad46f652738e5fa1c3b4efa6efe4ff3f2131148687f5ce444ba1eb3ecd85f0c2f051ed0c796992e7de7be47d1aaa6ec972701e329c6e6d9ea6a1eef68 -DIST firefox-78.4.1esr-mr.xpi 599915 BLAKE2B a6da4dd16d1be25d87213499917a17aed537d1e465ae62a71a1ef562b21d19167ab6e523a2e023e0ccb88160de907072b0b23444b20f2cc7e20ac573fd3d6536 SHA512 5c610ef324536873abb40adcda6aa66d7bc5601e1662b057b9384c9cc919fbc61f2ac529c954121557de0b27e431aab1fe489ec6658876ebd732d22a88d3a8ad -DIST firefox-78.4.1esr-ms.xpi 500956 BLAKE2B b6f3960ee621469bf55d7e5d5af933770e4656810105f987a0fa59b7d16f09bd97b974aac0d9edd8c68b36aeb1e01e7abe50f04d27fce8448b2868099d62ef8f SHA512 46207a65b95ac692724156b1d73032a0e38719deab6824a74ab2fe071d694b36a2cbf7652e7f52bae613f76ecec402545ee88880f3542a188ca4b073a80bb8b8 -DIST firefox-78.4.1esr-my.xpi 557200 BLAKE2B e5084224461d51e72390852107b3a7e317e91e5bcbff464f33cbb4333945d0e8f6ef3d6479e55280d07d04b755c3297f53dbfdac05554399d4b61a924ea0c237 SHA512 8a2707a039970d1166a574c7f6270583695d9f3b6cda9362b8e9dad83ed6654a56193490e2b2b899aa11537d06f999e010af4b98594ebc639bb1a699c8f22585 -DIST firefox-78.4.1esr-nb-NO.xpi 549572 BLAKE2B f7436bf5008957fca7acf2fefe237ef71f251ac8c61793b7667f4250c740817d405315931162f2f2b088e15b75f04681e8bbe7f9debb95240d3af1bb7f945ba5 SHA512 00c21aac918a40df90ac2272a0e2a3fcd2a66b247016c9f7b83e760ba38a721c7d7ff3bbffed5d6ec712156f060d1b945a41ccfcc74f83df8b10c9f3d0d23aac -DIST firefox-78.4.1esr-ne-NP.xpi 529239 BLAKE2B c6dbab4abd1683b46a096b167ae40569ec360fc59409291932952cebd4be08c8fffa05112de88a5c6f8a08265b6e643d117fb3f8eee0e4c7b4a1d37c63fe7a69 SHA512 cbc8f046489e5466c9a8cf92b93979b0b16b4f5847b449ab45da27dcf7ff6dfc00ca4d01cdceac5d8d310d0d01bef471341aef8c90579c1f7d03117370a031c5 -DIST firefox-78.4.1esr-nl.xpi 558801 BLAKE2B f88de8c29a136042d2fae92bfb52500ae61239ed0b63b83e1d75891fc7618870882917e125f67df71c318a3a38e914caec2d8c8584b6b06864bdc984b38ed629 SHA512 5e82d146f8275a45d286273c9a73dd4dc718712116a95dfe6462df3077ce90f157376e402cd7324b0a6c4bbc691cfe2770f667f7e27be071a272b27851b64776 -DIST firefox-78.4.1esr-nn-NO.xpi 552128 BLAKE2B 578f5cfeb33f2a5a0e8252d235061a2ae80b498bac20c071c377882ca12efa94d59d463161941d905ea063540cd77068a925b35dcf505b35a5f6462b4ac192c2 SHA512 da22dac70eb3dc99c1c0656054bcc0d04011345808383f1de3ef465ac7968c9983cfb43fb07352789bf95cda728de76a283be68d9c0c537f2936694938d68674 -DIST firefox-78.4.1esr-oc.xpi 576264 BLAKE2B 2108ff824f57caa063c7c5478ec74886d80a74aac6d67ca1e913de98e07f52f1d7befef747725ca283629854379708909a6a5353ad35d07f75febe28536c09d4 SHA512 5627311702aee4af706b50c1827940ad546ffed83ccaf39d361aac244c92e445603ce1ccdf89b432ebd2e1c53e775958b8d84243f89f1bf391280f423fa3deb6 -DIST firefox-78.4.1esr-pa-IN.xpi 606188 BLAKE2B 700bb212a35dc7fdfe84673f9ba3b530d5c336f4c8df0c1431ce776c4fe588bdb3b824b2b71ce7350e21bc0f0db1dd693e7dd2e928c3a895f70e683556851fe9 SHA512 140019ef9d579a5f89a4079c3910741578a4f6f7e498c04b58028f06deed5d9dcefbe5c020f66248046e71e7343a35628636b0b85e63394d62667be21872eb38 -DIST firefox-78.4.1esr-pl.xpi 574914 BLAKE2B 8f42d1e1a635dff79c06e661c30d1da1211bab6a6eecf4648e4d04ab34698f738db3fd0c3e7cccfba72b93ee3c44500b80140df97d03bc3f02e6c6237292de4c SHA512 351d6558c482c4f84af73cc79898d8ceb80fdc069b6ce1189b4e8799f7131ccf1872612d9bd2206697c9543068beb643effd1277a466c774eb1dc2f84a91110e -DIST firefox-78.4.1esr-pt-BR.xpi 558032 BLAKE2B a32dd4028345a8f760aef290db90552c8a37d3decd356cd519946f245f407a7a7b083ded110bd6ed22bf559aea2366cb88ab9938b41c10ba0753ad5e40285894 SHA512 10a97dae9d415af94794235ac88dd108a75a8b3138de1441f1043a0737144455d21ac69d822ba0af0f8112f8ed83d18b2b79b30cb32ea742d0ce2f493c7075b9 -DIST firefox-78.4.1esr-pt-PT.xpi 565633 BLAKE2B 2681f5e7690ef790201f140b8b796f1349c20bacfb06be162408458e977a85ebfdece5c6daec9020f2aa5aebe5ee3e62cf705f477cd9edba81a462fb3b88991e SHA512 7886d05eb4f23fbcf7371d916cf10f9a7b217b477fc4bcbe985a324a876c973298b31343670f9e016dc28c25b018f4e139f8ee305b181e63070330077278c79c -DIST firefox-78.4.1esr-rm.xpi 557926 BLAKE2B 2ccae2445e2c36401e88704416ff6b787dbd36f7e5f9513837831ee880aca5af7a6a067ca53dcd3c295fbe75fdd98e7cf04051e4ae67b33ecf2bf4d0127233aa SHA512 5174c6c918de2c0b7c608023a4883cd0f22be65727abfc1bd19040fc1500a000527f2085c8f8b35b5f0f350e1be57d0584553ff3a803abf55dbd825df69fdd71 -DIST firefox-78.4.1esr-ro.xpi 569395 BLAKE2B e01a41b96dca3ac6788ba01725ccb63bb9e39f7e46239a6ed9a62f5fb9284cbf09330a8a3170b6c07acbc652825937bbbd63d8821c49e440c25af20dfc815630 SHA512 67a6dd482dddf5c015ad0db3c9f6b745b5602d9e3ebb140a327a64d5873741465c2860e0f658a3ca26f03f4841727823821174d0872343bb2519ccd5c2e71faa -DIST firefox-78.4.1esr-ru.xpi 650695 BLAKE2B 30dc61bc56a46ffbdb0a2f2e1723eb0caff215dc1b195e4dce9d138d1a52850172c15d11b876c0567dfe38c527c46c556fc42710f5dc50013764a45dd5be0fe7 SHA512 29b903fa8ce09d86b3517afece67f9ffb3f33c1bd0475eadf77340830788a89226934b0ab32cbb7bbef7f6efaf47bfc7b7f2097f89498f44763626bb0167b8ab -DIST firefox-78.4.1esr-si.xpi 534194 BLAKE2B 5bd69cd2399d20263525c6075e49cc492662e62435b3b04ddc7fc131543fce5b7b1d1f5c9fafc1098da8e0a7925fdc2320befc62c2616a905283fbe07707749c SHA512 241fac5ddce9c098b47e61ae8a2dea0a975daa9032f9ecfa370d0a17268545d4dd55677c4d010f8ef9cfc68bece6e8d542492c403896390639c631adf814e0c3 -DIST firefox-78.4.1esr-sk.xpi 578525 BLAKE2B b2d74bbae306a00bb8446758c1ac40479837ea551552eede86bc08dcfb4023628b8fa7587eab28148744b2e2468ff73a63cfdbd137ce4f4e9407d55997f869db SHA512 8c284d84867f09836e5582ace7c905e04a248d028c4ee3d2a3bfd2183e4969a7c453322a9829c35da69e9b860b2a0976cc4e6be77f2eeb90b631cb1c65677c6e -DIST firefox-78.4.1esr-sl.xpi 563033 BLAKE2B fa032aac291bbc53c1067ae409a9dcb1f32c5512fc01b905fc3d80ee59fdeee51fe61602539665f2f0e9ec43c987fd7b900a3e1afac00b1f92c7b5ce6fa90202 SHA512 e9a121d239469bf09caefcf842618ceff37215bdb300b53f9f5fa2e181f44979410c55550c7a7f22a42fb0411dfeb1b71272c5cf9b4b41613e21f80eebc17099 -DIST firefox-78.4.1esr-son.xpi 454241 BLAKE2B f4ba354db7215759e2a61e551cb8af017cc4546308ac74af37c5397573f344f3d998fb28dadf8f778609cda74ad64b3a7944a696c63810eed772e58230507c1a SHA512 d611fefeee4c561ca0c96112795b5f74543faa5eef748056f4b8e0cad778d79da6ff01589f4366dfa633777f12a696f3ae941cb961056179fe80f1558a9b825f -DIST firefox-78.4.1esr-sq.xpi 580002 BLAKE2B 004af64e23e7657098b1bb74b03fa3be3537976fe40ef8eee87cb298b129607d2f4f482eb4f352d89b1ce9e5d9fcc0ebd8172a821a225bdced49a0efc25f26b7 SHA512 442d805d372abe0e47a6204859e8bd91cab926a0b98a69930e4b6b9cc2905f49db39a035a4c8d8ecb6d85e3b5b72c92bd2522137f85edca6523343b2cf735f12 -DIST firefox-78.4.1esr-sr.xpi 604547 BLAKE2B 68f37b7963a5580e2a52fece6c7bf07e7ee38a73d60a843c38813ce436a497d89026c00ae88213392d71861857473010fae64e56c6bdca658e9838100fcf7a56 SHA512 78bd9056e8ceb7bbdc02dec8549ca3060733c16356069346280c1bf82de368a9f96f1b0622f1f083e41bcf92a4385aeeca6e90cf6cad787c384b469ec7122343 -DIST firefox-78.4.1esr-sv-SE.xpi 561875 BLAKE2B 8b54d8852ddca0440e4d552c0f8ee41496148d46bcf24e8b43eb99d44db960dd260e7a81fd7b1681b3a266f48813c2208be6620d079766d63b7f945b5fd87de8 SHA512 f4702b76f68d3de965ca6e3d95704a8fb3a4532f2340ed4bf55b62dd55523def679cdacc4a16eda3f7870e1a6afc5987a3a1bc135e3c0ff96c8e35c17f5c4973 -DIST firefox-78.4.1esr-ta.xpi 572349 BLAKE2B a06c31e58ab36244b9e214a206dde66804077f120e55d189d4aa8527b57d8df3aeb1a34d19bba8062c9bfb51956a4f5c07a3f60554151eb701cc280721704cf9 SHA512 3998ffd29d8f9bbb89496a5713d90babbca82124198579556df2433187ad6e302797e87b8c3570880bb8b0334d5f6da8a0d121b9be9255275e870ec3253b2d45 -DIST firefox-78.4.1esr-te.xpi 591657 BLAKE2B 5bd309bc52a849cb7c0b40eba3ab534f1938c9113f9d32c25b2eb0ad5b9033ecfd90cea8608cdacd02101e779a44e7c1a0327bf7f3411411e559b651efddf022 SHA512 a58159ca7ac1887bbf8aa6eb63d7abad82c1a6fbd3ce5f1750115e49e1517edeca332b5d7210d2a4ffba7c736c6c1ec9afad4ee6da2178885a5dd7aef4ee127a -DIST firefox-78.4.1esr-th.xpi 628308 BLAKE2B 811a3cf9d98b04d71354648eca84f86c56e2112ff3020c7bf5f3c6024322381471d84a67b4ec61344b2f0ac26d9c57913354dd15cb66d315155c8038fc0367d7 SHA512 05b33bda2c08df0185728c79d3ad01ea8d2712ba3415e91defb780f94c250359eb5febd87b1ffa24fc192320c2dfb96c41e595dbe85defd8a2347ca079c5350e -DIST firefox-78.4.1esr-tl.xpi 552298 BLAKE2B 6b6d3599b3b5d5401443b881407f5c4cb3d379155cd74c8fdf6f80de7a353cedc6bac333a4f12c854f974cf7191bedb821bb2c1f73d360353c80467743398375 SHA512 92a4dd6a9572dbed34c85490db118ead8bf14338314c419d6fa5162319f4b44f23afa233fbc195e42efc350fbd901781311ae3bc6adc69a8bfc307a9e68c512a -DIST firefox-78.4.1esr-tr.xpi 576356 BLAKE2B 372a1ea56ef074d0c15739e6253210bcfe95a0272f32210f6cd9971ab5b6a760b43a7bd3ac1c873f3c5b0e31f1eed886c199132a7a0be34a5e9297921cb7e721 SHA512 82d1b0be39b196f3c55267d3b853c0f08483a8154ece667e665a9581480a7dc17767a643c0e2a0eb728ba8b05c78f26282170cfe54d53cf59ffb93aa5f16ea7a -DIST firefox-78.4.1esr-trs.xpi 540197 BLAKE2B 66e19b1d069987d75240cb57d0807c1651b92602913c826048cc4c452708291eeba4c5952f30c9a35a4fb1252d51e06079ba9667fad64f523447c3c369cf31e3 SHA512 d3e76a11fddb02238649428224dc998c5e140d96c4e54fc5777103857a46c8632d0f65b642e02cea21960d8aa5daded0e40e307f20d24badc15ff9fd8c672277 -DIST firefox-78.4.1esr-uk.xpi 646863 BLAKE2B 3c7835a626d0533d69fed3bf47c3b27766ad8323997fee6779f115e064c9931564d99fdb5366c0bf20efd1db176e84cee291b0f52ba959f7dda970cede7edd40 SHA512 76f9ac565d288d15cf67179241d960ac1c655f3a04e75b0d08f3a6c1b9af9f19b41616ecda7bdc767a55d873b07c89d844d86257a714b9704afd25f832eb7c94 -DIST firefox-78.4.1esr-ur.xpi 608136 BLAKE2B 019bf0b8e056081b1296c64657cbabb7c658d5473b780bedccd320e39993038f16bb430c82e311cd2d57f3c18f55d109a0029d134947c1b8807fa1da37610b43 SHA512 59838b8a76a1d80e54f629934dd5f8de1f6363ae222d44a1cbd1f8ebce4d9fca38f3992975b095a4339022a83701f5392853e13e08aa507340a1dcd387115f38 -DIST firefox-78.4.1esr-uz.xpi 521138 BLAKE2B ca55f4624df3f19646b919fb7c24edf3ae8a79850a490faa174c523601913838470c470caad0780ccfc05caebc42aea05f2972338c9c3277977aad660b97a5a7 SHA512 c4bce6f31ad0d5defc0addfde6917388c46637035bf9150334f57ecf174ecd5171fbb08bff71e5094604896fe829fbf99908577756233826b6855e7606269b7a -DIST firefox-78.4.1esr-vi.xpi 596835 BLAKE2B 85558c438c348c870b16c54d0aca7c8f6648463040c61298161a93e84cecd6f4302ffd851753b65d90a78ae10069d23683b11ebcb8b85e5f8c305192b495dc4f SHA512 69d053eaf2294c8583dd79c55a8f72c4fb628eba0def6a5fe8806e7394cf4e26b467d98003b3a499ad784c3f7986463c1ad24eab1ec718e590d7e0e994255622 -DIST firefox-78.4.1esr-xh.xpi 458906 BLAKE2B f02bd178123b30d731233ce95582b28cd7bf6143ff2a0957115d5b04cfcf8dfbb92727093d38a74dbcece2fa71783de03415dc662dbf2f3af9b6119759cd0588 SHA512 77f1b40120dbb105ca5a6a9dbf35b97501d7ff56dcf7e6fcceac8fb4f6e553f36a3b06606f5e22cc0ef9520bef0d818aa28a87224d033f0f66805f38a97e57bd -DIST firefox-78.4.1esr-zh-CN.xpi 600187 BLAKE2B 51460ea46512ab017a2b645d304365fb860b196f88f6b8502632ac656c9cef60fbfcbdec1e72af3a538262023720da0d99176a0f3627db78d752a7817c9c451a SHA512 13c4957e13160882fa07218dcd3f81a73e869a0d03af201a8f4293b6265302925e50de5a7ef11b510b158b921a02947fa82c6e075185028ae7a0b67e6d0aea90 -DIST firefox-78.4.1esr-zh-TW.xpi 599284 BLAKE2B b765121ce6abba620914bba3e6491c39df629bfd5478985986d7b42483aca7d5bcfc72f9df3ae9830a84434d8ac2ca13baa38ee88703140864e4bb139fb98402 SHA512 502e07a7a48bcce03cbb55fd619a4e4bb3a5c771f93571ca4a4514d16bdf28bc228de04509666a8d22bd2f870c5243c38408078493b1007ee943d3830dae44cf DIST firefox-78.5.0esr-ach.xpi 460247 BLAKE2B d1ffbc64eba48fb54458c03ea2d10eb4e56643ce7f3e65cee541de2bddece240cadedbb770e0f973df8ae56644470d74f263412005628a0fe78f3a11ec77dd59 SHA512 aa5793fcdd086f1aea5453f781430b1430e11d7f53d8f70ad4e285239659931fc9c418268996a43bfe14eaf61141cfbab9c1750148712b8345a2c13ba3f7aff7 DIST firefox-78.5.0esr-af.xpi 428318 BLAKE2B 6d7c39f7a706fac1e8ab5d6def3167962277ae9caa03d0a7a75d1b50bfd47fd262da796a4e523a6bd927cf6c5b880a1623b67894d63ef93d21856fdc66acbfbd SHA512 e85d067efed7bcc73a509f4e80cd777d151433606b4a62f67c671a17d34bbe4a7abb811e67847d68cb09339ad521035adaf80da9763397d0243c0cde9001d237 DIST firefox-78.5.0esr-an.xpi 508339 BLAKE2B 4f1a008d793155243254e1cbaa80301763d72889579a01bde62916151bc8d2381c12521271ee9696197add77df28f531edc381ca2d8be925d79bc0d4c97f26a9 SHA512 e8195cd18c94b70b607214941c5bccc6c3866089fb7d74d916a4fbd046aa1c5d48c6d6637f91d88666517fb1aee2904865b1b247ed18842f94787c0be516e2dc @@ -188,101 +93,6 @@ DIST firefox-78.5.0esr-vi.xpi 562859 BLAKE2B 13a92bc91690b74159ec2d6ebe4ec1d9dfe DIST firefox-78.5.0esr-xh.xpi 427806 BLAKE2B 676da7d81426b40c2649b225733df74ff8d1cde06e40e2f20d9ae192b30404982a2ea25b1a7e22fa07dbca87d5505db08ccf0328d9b1bc87e50d745fe83d157d SHA512 d9fb321cb914aab442b28114d107a7af3614a8763cd6fa29fcc7507f995c6e4b09a3d3c2ae035b5e4985ac925cd4c7c3416f1c0f4603d301362a984e79a0649d DIST firefox-78.5.0esr-zh-CN.xpi 564767 BLAKE2B b5c3e773c3bc58ba80180bd018467df1552b8cf355ca33d96fd4153e169acbdb64dd22f3b4b7449046a02835f406046d2847b161f6220edca6c087cc9e5a8c25 SHA512 489052281501ba642270d65ece7b6c4e5bf2e7ca5101b9dca4c657000e8affd06d838b7ca06d6d399b35d401d288b44d18da2661d3a2c96a04214fd8bf4a4bde DIST firefox-78.5.0esr-zh-TW.xpi 564724 BLAKE2B d55faedb630ecc2629d1e2b1adcfd4cde51d119fd4599d25ef0800e5875efea65db5102fec36366b6531791f16d0f94e8e0dee0bdc18868ad9bf5208471d65c3 SHA512 95e4fa378cf07927b13a9b0e9d37d6320c4cba26f26df6dfab65fcfe1ddd21d38cb5a387663c8c96b6b3e2015999af4d355c0b672848f874101c998abd117047 -DIST firefox-82.0.3-ach.xpi 460148 BLAKE2B 2f9f4dbd2d37ed1ed8006b7db099a08d1e3ce34c23b8e6c79b204a8dd02ad7d6bbcfebdd852707dbcf95c46ad42b5d3036721374289861e882b289dfdc22fcd2 SHA512 dce49b86aad428e054a129b402d183ccb4b82a3b146f0d3f074051421b2fda54f7f54dca45e50cc09f5ad14263caefc536b41aed46154c313131ca5f55f99564 -DIST firefox-82.0.3-af.xpi 430109 BLAKE2B 52f3a2a0859efb31f328e8e3fff58bd44e0e2c2a42568ab6a4b68745e74c3b94f43bc2571e2ef05c4492379b33c53ebcccc9012e69d4add5016200fe28a1a290 SHA512 79509b066a5fe749bcf235030284a89ef855f8de423593cde0fe8d28d3dfdf638e0400e1af086d6734705f963437d5bafe080b5fd3b49fa51cb52a801c6c7b62 -DIST firefox-82.0.3-an.xpi 510106 BLAKE2B 50773f6dd874c6e1504c6959f1a0338629f02d64287d8f316e3802e88e8ae84cd0d0a41e298718ac6b3c09ead9864958df3686080b91dcb46739db203ed2385c SHA512 834d46a04317f42dce0b95e48ece9519d455ac494f852e819ec6eb250ec4bbb5d4210cf2a9c9534529a0476155ca8d6ee90b6ea210b20cc11dbbe9f4999ea420 -DIST firefox-82.0.3-ar.xpi 558780 BLAKE2B 246dfedc80ff5d3c73cd073da67e96292ac0ab193c1a1cf4e1d3794473504b03a5256634db31794355b9585662f225f00081db1404757e45a98157d7c7535ac9 SHA512 efe6ac60cb57cf7af524c4cdf621a1de66053c8aad94105702f25f16627d0d3084a05fb3fdfb133e16310a24e9b0271327ceacf8e1dce9efc3cf7067e4e07f44 -DIST firefox-82.0.3-ast.xpi 458399 BLAKE2B 0829acd403304063a44318c5f17851d8263e091139a3468955ff1d485f880bb5bd61db0d1f5dcb89ec556de1589ad0b6ed8b38f1dc00072f126c802d33c0e2ba SHA512 85d86c5d09d744302562a5eefe206cb70a02561151db77f2723da8947230cbe38ec4b38b36882387df0e8300b5c375567421f638c21a8539d907862aa66f1eee -DIST firefox-82.0.3-az.xpi 494307 BLAKE2B 3dc950aee9a36f40c9634117a092d0e3b6b436576f91833718a56d25e137097475c1478693c78b6c9f0a1cb58cbbed4000e8962dc50b267ca29c258c1a9d26d8 SHA512 4e268133d1750f94114510132dcab4e312dd6a89058890c11cfe68188f075b21c71f91a1bbef10e3deefc2c9174e7981822e51e494b58d50467d923c1b7ae097 -DIST firefox-82.0.3-be.xpi 597435 BLAKE2B 57cc4a25cb336cf166d281a689a70bdd875f842c37572acd517b67230fbec41a4036537c402048c02e1e224924206f04ea97cfcd26bd82e99f0dd652b1694742 SHA512 7f0303bcec56c38a5f3448b4ff4ceb1c621f80b67879d26d4d355f1295623b6f5c208abf7fe3f97a38e74739b00083887b7032b751284dcf64ebef461544b9df -DIST firefox-82.0.3-bg.xpi 556545 BLAKE2B 330821786a6acaa2bdcc73ea0d643f78b760a8a25bd0d929d31e27c2a4826556eb374f0bfcdd1025079288c53916e4a90c2b52d80c2a703ca96c8cf0e3791f2c SHA512 f7335e25713eb4bdf6cac5848cbc0b8c0656df2ad0217b6db00cbcf77463f5e2daa4fbfd7c1337412efb5db72f88c8c484a2a0dc152f75bd0a3e8259e6e7046c -DIST firefox-82.0.3-bn.xpi 574254 BLAKE2B c6e2eb712236d7d864fd035405df8235f5e98042b839327d5a2e5d8634ef4908dbed7780f091f84d0e50f966239ad6645ff7896340e16e904f09ee39488db3d4 SHA512 940376604552cb76bd34ba40742668d57b0ff8c57a87283d5f8846979520a2211de0918787831f7b7912e01852a1cc15ef2e2754bcf7da6e564721bb0c3c37a0 -DIST firefox-82.0.3-br.xpi 508921 BLAKE2B 71d101740617226330ff8b993ad1eb03bceac91df3024cdee065693f96000a1d3ab8775f22290799f45ce77e18521265e3b76638844477b6b102daebb1ef2f00 SHA512 396f6ffd6ad84d7b0acafa9e77969b4ff848d5df0bb5b1b3978f412cb9967767201177fab28cedabc2f077e1a8e551363c75514b21113efe10f05cc4ff4269bf -DIST firefox-82.0.3-bs.xpi 466545 BLAKE2B c5c4cbbaff837cb9b57a8d30c1eb5c906db5c2f5f4832e3549e3fc5f383641846307a6fd36c78219600ece0d98d559a28290257c23860b8d6db4e820512605b7 SHA512 5141d66a133ff92bc2b8608c1d11d9f8f3c11adc57a709d87ef3f2fc395614b199ffe1839d175ca98efab4873771e74f02f3e720f8dbd46b727cc55dfdbc426c -DIST firefox-82.0.3-ca-valencia.xpi 518882 BLAKE2B 21d7c9a685baab56e6351df095188f015b3c2ddc27053e24254fdf1563462ae7d61d063d0dd09be38a90ea8fc20ffb9b14ac38c2e1dde212a7504319f095a739 SHA512 df9be434b6357349dca4733ce9d6767242ec9260dbd5da6825ecf51e1310cfd1dae8d01100ddb2aa9249e2e276a57c54d86634e00e970e6ff5f6901df5fa4ca2 -DIST firefox-82.0.3-ca.xpi 515056 BLAKE2B 099f26b1df9fbc2175312d67603ac1cfc1bb8ebbd90c87d304151593fd8222720103161e2ef752906205a330091afc269bb980567e17005e7af0a01fa5444b2c SHA512 f46f7960d75384f85c1017169e0b836334f9c3ef0bf1d3d4f6c3289d3c31e61aef14a72c5604b28fed4f69a0f55295ce956ae08c26893d48d54c033ea81bc597 -DIST firefox-82.0.3-cak.xpi 544753 BLAKE2B bca6385cdaa1a82c23985b544263eb38001ed90c71ca3504ae2c331b6b21a50bce46c9088e2788883e65fd42c73099cc4657907af7b48680b7f5ad4c722bad8e SHA512 21f6d1a14487d1c9d280121e870f37facd41732cdbbca4fb78f68cffbd25d6557b8a65f13541208b5211d95145bb20c45bb6944c9620eb49d2aff067bcd2064b -DIST firefox-82.0.3-cs.xpi 541199 BLAKE2B c0184e39175a0e850869114c8d42a7978d57b6262d28f2608866924cf3d3456dd1bf431e7cf419ed44d9d8d22a7c5d86d73b003cf95c0ce56c56b7e655fc9b5d SHA512 6818b03481e9878962512d9671a26c5f5a42b4cf20ad1c25c8d3bfdd4495bbfeed72208938188b9fe48b78bfbe1ff3be6dea77f222d1154a2f9cb3de62951761 -DIST firefox-82.0.3-cy.xpi 524808 BLAKE2B 9182ded6b8ea71b4f4eeece3240d854e12d59681cdb0a05313a6598be81c88390be4e4e2bf862563779b86265732b1efb8a060c661e28f2b8a4ec226fc3bb6c8 SHA512 ffd1792417a9b25e882d0c5b4e6a8431c0fd7fdcf223f240614ffbb98dc7930a27f0159c16ec62af6d6d500f6d1a2c9a62fa7b6b467b5965dc1f48a0d9b69c8b -DIST firefox-82.0.3-da.xpi 516301 BLAKE2B 6256f6e0be1bf56206b3dd7e12bf315a9f0dd05d66aa61a186174ac1115aa570d5beadb288402708239c525da289ff73c2fd7a3272a4e99d2c2379fa49a2ec63 SHA512 98560c3fc4a75900c63467d98f117ed3a00ac97d4a70a941ee139531c540492dde0392e21634a7f4e2272eb9e98a5286fafa180f1a364eab492f65cfd16c3ef0 -DIST firefox-82.0.3-de.xpi 537103 BLAKE2B f42bc6fd13c94742917b6d2af47f8d30de2e47dd0efc9f02de17ce4f0dc2bd5dba98556c8f51dddfed1af233231dd4a01778ed61fd6760546f1e7ad28f1489c5 SHA512 80b67219cd7a7defc42f6a25540fc664d7f834fba66f777ed7ca64f52ce86b94cec1e06c907950b00bf9e87cb625eec92a5604911a6575d23c216d3286d38a99 -DIST firefox-82.0.3-dsb.xpi 547682 BLAKE2B a7389f5101e69d8496c0c90fdc0d6fec118222b623dbec7774ee9217479df850ba0f0901938afd5c653211dae2f840052c93d4ebe406a7c27014c900f40741c2 SHA512 34507ee5dc3de27f00fe0d3c5f47f5efacc3cdd2c619f436165a1275bbe344710c2d95ec8bb2e8746c446f55d5a3a22ceaffc2d668a760423ec5ad31b0f82345 -DIST firefox-82.0.3-el.xpi 617994 BLAKE2B a496bf61a6e8be78a99ce2935150bf0b0776570ee145a34eaa71a141285a69f897e9200c7a9e010bb82aa4b62af1698573946a66089813411f353da823b5fd46 SHA512 443a6bac8dbf9b7447cf4791099fa641fa32f750c832e037996ff73d3b9226cf5436a35a30d077a6afa733161141c1e9b4652df2c5fd2128a3c85c91e94a03a5 -DIST firefox-82.0.3-en-CA.xpi 495425 BLAKE2B a403092c681da215a852ba29625b59028b55dfee3b64019039495c589b16a8f6c1f3369d1becccef39bb68be428120f657def0b19b6eb98936019ff2f266c134 SHA512 d658ab51225a29b3e9a16d590d7d048b76dd6a5c108acf4572a3ffda9b29938de313f650db23d2121a361a3356ad71a6178849ca6770d0abcf045b6490cdc85f -DIST firefox-82.0.3-en-GB.xpi 495343 BLAKE2B 5119fb1e801251ea466c3e892ad2735acea76d9e9211711f7d25d80e992eddb867cf6b45f056fbeb33b66a27fa1ff972297292d071ce08e6549caea4300d84be SHA512 d23a2c774f74c207e2e3d9a6caecce0f2c0737972b980d91073085140da37b57749ee8dc6d3e0a7f3907ab2b8068a946031c09e1803534804bf2374dd0c0c57d -DIST firefox-82.0.3-eo.xpi 518013 BLAKE2B d822bd9b2b46230f93e0b0a46bd3414425638b0cc3f4e014f12e661bcbf389169ef7c7edc05bea062d2a1a3c7de29749d2a067dc39e813a17cfa994f5db2001a SHA512 081a6a9a1dcd1e375952b1b005aec93aec44a391be3012196f1fb2e4212fda779b67218e684cc139a6968bb5b0a90ed1b0b58462724fce6cf19da69d36703210 -DIST firefox-82.0.3-es-AR.xpi 529939 BLAKE2B b8fc25cd5edd71cb31b793bb03d56328e47f47353700c7e092fa6eee448d468585de60163a7527ba61871d438f5459ff509ba897383d9773b4a10b94bc044424 SHA512 c430783c6cd3c816a5e74d9c7d7ca97188471b08bc2cb0589ed2dfa0f0dc071d9c391e35bd62cd564e6d02c77171ea7a5da3367b3bdfdd8257823a4eb63fdfce -DIST firefox-82.0.3-es-CL.xpi 528864 BLAKE2B 5e224f6e39ad0dcaf2360e002a8eafa6c10586cd46a985b0da38bcf154dac77b0712cb3ffbad137d88f80f8d44ac838d82851c67597dcaed53ea5a4a34a04be0 SHA512 71725ffc1452b390772443c094543d191be284fb9f4859c187a244b11a856f1c97c9c05e471fd75a383465d0aaa047ec057d016fcf8ed13589fa991b7991472d -DIST firefox-82.0.3-es-ES.xpi 519173 BLAKE2B 201a266b869256294384fb747e93fff1faa0ce96d23a70e74379b9f9975eb620e86b5967ddd81eb3dda3f6433c2b52a552f99281dea76314657e00cefa854785 SHA512 9e659bfecb1b3035daae7da2dce0a2a5c5dc23ec934601e40735f080cfa74de738b458e8d75c45a1bd230d508109cd0234e2766722d9ea968af489e312bd8f60 -DIST firefox-82.0.3-es-MX.xpi 530749 BLAKE2B f65465cc1835dbffb9246db07f368c4c3ed65cbba5ca1cfab01a28f2eef9a560c7805119221e5e4b59376a11e72b76b0619c2c55c803880cb3040446d7a4477a SHA512 340e315662911bb15866c6173d5f42bb5f268c8402aab6511e9274f401c552fba42e43be09f45c405041e10e39b793edba62f50a5ae6443298962989ab82587e -DIST firefox-82.0.3-et.xpi 487801 BLAKE2B 8b2e6490506ba57eb540d12e01a416a71366e7cdc4351a3d5ce9ff13ad62cf66a72dd9184621b3f0514c91f096f28aaf7dc75cf55238c6d4a75f689d2c441401 SHA512 58d7506d176280d0c559bd0a756594010afc0a885708d2ab7e390ea7e4a6745b0b49d731be50e123c952786a4da819c123952bbf943d26e56027fd867391aa9f -DIST firefox-82.0.3-eu.xpi 507209 BLAKE2B 7ffd468bc6c87879db5a8a894cbfe30d4f808c421544e8f574e68cb822b5fa6ed027ba814f622ab86173756a81f189d6df5fa008f706e4f86ec7ef3a4948228a SHA512 dbf4e98cc434185b2a461df237f0217864b3de20a9cf852f0d013e380239bc7e28ec9157fc8a6e74a1cb5aa853dab85d3ed5bd2f8d2f3c90a466965a42592cc3 -DIST firefox-82.0.3-fa.xpi 540636 BLAKE2B 38256dff45754de3b4a0bfa3fe01b5c64c675dcfaeac7040b5fc6af51a5aa84e7d0da14d7b8e7049428479311d88986f28ad76fff6b04cf7fe6012e75af546ae SHA512 a07283e049bd3cf03885321c730140942c4d234153a810962cd1828e4bf67e0e8d555430561d1e4ad8b9c3cc9f7ddd2d64e6f8bca3765c424603e4e17bcbc80a -DIST firefox-82.0.3-ff.xpi 484119 BLAKE2B ed0921119754285444e9cd8ac9878d635a99d04a04087edbc51dff7e68d02854692e50aae338648536598de84fbd0d698e8eaa2c436d4afd2c762d6638f0788d SHA512 e4301039bff525d1eaf75d530e333643aa8f8a771bfe18d0bbedb13d988c9c20aad0c28b0d9bf012837ae49c218decc24d9c1e7bb03183802f85d23bbeef5a86 -DIST firefox-82.0.3-fi.xpi 515704 BLAKE2B 66d3601226817d5d38d707b437fc576e5d0001932b0a4098dbc30e2f715e5d54d98f209c142c8ee2905213a453011efa3a3688c91dd0d2fbedad743eb88967b7 SHA512 47efec1963e17a67ee4caba7032a37df5e2629f4c33c1a936bbdf93b780dfb6ff00bbca7241b845d2b8e00df08c050f68ca27885d4cc84dd1e171fba4521d5ad -DIST firefox-82.0.3-fr.xpi 539740 BLAKE2B 8b0a693d0044943efa58bb7980ed2b2a1414c1a3b732b18cb68dea3457648ea6c717595c879faa7d2736782b88f922fcfc458457f4bb67b4c63234a6dbebc8f2 SHA512 66c2f2f35e480f32e0da3b7e550475848a4f780618d1f07acf0b8b220551917100ccad7f6fb265019debd67940b120d7e6b9b995efab37729bc0b175c545e99f -DIST firefox-82.0.3-fy-NL.xpi 526570 BLAKE2B b5e95aba6f277fe7c91b016f3d9932e5765601781d07f26a23c74d024a1152f1e60cf4e16b94ab790fa6f3c2d3edb1468bc882234658cd0afebffc72bb70275f SHA512 24c44033d1f79596e38a876d9d3b75e7767e78024dd80302e76e10170bb380e129f3f2fc4f52df7cb65fd4597bbe1504b184a32cdddc6036d6de2e7757102971 -DIST firefox-82.0.3-ga-IE.xpi 469071 BLAKE2B cda19a6af873ef4e3ac5d0c68a1ad077ab0737cba22d2686a0cd6f1c11a5f8695de8d20f94f91ffdd39cb9a0ef14bf5c5121b58b3b94f882d4485e29a9644d85 SHA512 ffcdca8ea8fbec652ed3081e13ce3cb5da1688e37ad50f89ba5b37b0e8ccaff36bad48589c53f179daf5d8e1d9344aea36b116e6750f45d30961168369b5e214 -DIST firefox-82.0.3-gd.xpi 494276 BLAKE2B e9c88bd1ed10941a767974ca9e425fd898cb32f2d48953fe52533938919207734f3aa0f03c27431e2515ed1bcee10f06f582699c65029729f020cd471fe374e7 SHA512 f791184022e1691fbf8a2142511e4c7d6e457791f3f0b6844bb3a99b845d9a55635832ca9168c734435e222a5a3ad7e96877c59db57b8ae95bb3c70e01f4ba0e -DIST firefox-82.0.3-gl.xpi 523765 BLAKE2B 16c3ce4d6e2520219114a3c8b6063577f3f3c09a771e0ca020162b0640aa2af83711cc3650d7ff72c00a2cf543162cbfb8ae5a1dde557482323318663a8337c4 SHA512 51480e2f8b3fd71fc68c43c5f52a5e3ef69293d700b717b9dbdb99420a98a91ffd40f3f681817020929f493a3675aff1510cb8eaaf120f231892545694b2226d -DIST firefox-82.0.3-gn.xpi 540663 BLAKE2B 8a3c9a5695f86a1e52ffacacc3d8df4e73e3aebd5eb74998d7f4fee434ce47abd26044768dbeae190fad2ced575d9ec2832458cabdc8c09c216d38017e5f1761 SHA512 b85d921002239fc4e4b2184f56e996d936897ddfeca9f2ce7f2750848273d3745383850059d251e70a3a8661f5b29d1c12e794e3ca3793b3e1119f9cbc70724c -DIST firefox-82.0.3-gu-IN.xpi 543086 BLAKE2B 9c879aae5853e9eeb94ef9c2387523db980f09b3aeb036bf43926ec684cab2a840f13cbb05e1977f0d16966854925fde3abaf66e344db39ca22c9b73beff8239 SHA512 8a57788d050b1804341de936eafc4b92d59e2c16aefe87e18cf1f8957c2dfe85d89dabf5057fe6ee2ff5245c35021754f392dbbc8b25b320f152742bd2c98287 -DIST firefox-82.0.3-he.xpi 540938 BLAKE2B 445e5dc34b2833b5d6e9a9382440e6e3338c6493fa2ff653900836eb3a52620cfed4c9895f62c85546e6d73e5463cffe0ca2da61fd2c4b58de46005881aa0203 SHA512 ab1f1c1660bc05ff4a05ae8ddc90d5b74ec4d41fc594bffea34bafe137794adbcc1febcc8a64bc2dd974581cfd9715ed86ed69aad234482a62e031dcd002dac4 -DIST firefox-82.0.3-hi-IN.xpi 568419 BLAKE2B e8a0e420b5ad236d8c55a7a55c3dadc5be5f78642ca198f8ecba410b9f3158d7400464f6040b176dad5d6b00ccc4e46bd7f529f400a80268c1518dd3cfd1a026 SHA512 985517f3b861bee3d95d8ab40fcabb54e9aa174137d9c9f620868d47af8faafbe730a030bb1ce845cc043d60dec4869af3be585ba9d44b53a4668d2ff6991200 -DIST firefox-82.0.3-hr.xpi 521176 BLAKE2B 47f7c1127de70dec0758ae3939bdce1357f46128dca5a8f400c4432bfdbcf66b4fcbbb54044e51550b037daa61b193a948fbeb23ba1b5d40058a1b7743b7e7fb SHA512 6349a11102a60907e713eb9b33240d7d152b31fd88592021258d62d928fc45c9820cb7c7a20d9ecec3e8627439e1ba0678de1e4538fea06310ec71e3ecf4d8f6 -DIST firefox-82.0.3-hsb.xpi 544284 BLAKE2B 7e622670321ef92e8603e1f11a428c9d80de3168d9f145c6403def826fd0cedb2d358ae68e0f6f6c8af01b4a1b68412ca263e04c4cc34e7bde3719dbf8b6b1d7 SHA512 67b476ff3fa9e90d148ad70df9f5405bdc26d9845d61830f37dc52a8a7c2bb7f0c48eee69ae791eb1d1dc3d610682d595acbd81c7eba08f3cc0f882ee9ab6168 -DIST firefox-82.0.3-hu.xpi 548599 BLAKE2B d76c602fce5455165b006cfd45256eb99e549d73210861173526f269ae4c8c1582661849d8b13befa04445edf4ec874fc505e1bc907720960be488bab2ce9800 SHA512 100fb7b6b975f9d066e63fee4207d5bc2366cefe0262360e75046f873101f419d8955b5d542a32c8f2e13c2316354dcf0d5bfdaf34c92e500fb7e99abc3ff211 -DIST firefox-82.0.3-hy-AM.xpi 589713 BLAKE2B fbdbe95acccb191c7206f0a6e0af670c6ad8fc27da0557e3ce863c2c863e60f40c4fb08dcb5503affa89e2e92ecff6473b43ff313645efdd4e7eceab4a35bf87 SHA512 0ffcbf0711d1b127b044d1798dd4e9d25585f3860798e1592a32bdfd23c9aeec437dfe6c91d837fd53453b7741ad12e1a3e5e7d1eeeef4646216f0db47db208d -DIST firefox-82.0.3-ia.xpi 516184 BLAKE2B 58eafb8dfc127fdd50e5212f6f7d4cbd1bc8696e8b6b140e57b87cceb98a96d434acdb8ce4f593cab49a966a345fcf7c7a60385e90a71243e9eb3ee9cff6df78 SHA512 651aa6988f57569f145cd8b7e1f6f590aef76c824e09f5fe4a12f88e9274c75faac7865a64c5b0f68503dd7eeda7cf1189d5a1924f4554c810ff1a8075318179 -DIST firefox-82.0.3-id.xpi 508789 BLAKE2B 5257776fcc6021a531b4a6858c05f78eaea5aa6a982ef4d9342ffaf0f382dbfc3b95abdd578d16627bc4a967ce7aa00d677d2c548d4ec4221087982440f4b495 SHA512 42d123a6fcd1cc2dd61e13b99ca1836a20692fc8fcb98008208787c32f9a88a530156ee604259488db38dde060ef46487f8ea8f3921422404fa735d45111bdb0 -DIST firefox-82.0.3-is.xpi 479636 BLAKE2B ea8e8643718a259308a359cc159c01caf824b6c5b94b78352abd662d9107d42b3f8842a540396512c968bb2aece78e227219a6dc4dad4fdeb4046ddecce4984e SHA512 8c865bccac9bade9be5f9a192a0852fde2a40020f8434055380286b323a6b700640f993cb1c3f941b9819c2d2f5ead716450a66b8d17b6fa2e4c357d5c678e2f -DIST firefox-82.0.3-it.xpi 444598 BLAKE2B dfc8fc668ce7f47099f1e7e267580c606b5b35c772ee22aa2e5861c8d5ffccb0216901ecb7372716991c94bedb56eb112f67d183ea57e0866bbc86bd240d8f4d SHA512 a552c0b6c486f3447ca8338f56d7ce57766741b9dd6dc1e84f9d93fd1f46b47f12a398a818d8ce54406e9aa19407266582546859ea37362d3d71d2f0351ce3ef -DIST firefox-82.0.3-ja.xpi 573549 BLAKE2B 480226278ccb89544e38ba261ff64a153f7b12da9d0d909435c3c76db0af162d32a8b35ebf54c3fdaa80c7978728eb56a4c75936a2e928cc0bc03e1bebbf32af SHA512 82f9e3ce8a0c8109c3ff6dacda1dc79f3f71dbd8df19bf1ef6a88c1fc39c885c9e3c281d02e8c2814ec3d538220f8e69497207c852a88c3e71ef78bd363422c7 -DIST firefox-82.0.3-ka.xpi 573562 BLAKE2B 920778e0eb28945237e414feb5a9ecdc996cd3f286494dacbf57151beebf97370949228b9ec4887e726a496aced7cc136ef578c559c7ec74d697aab17ffff6b0 SHA512 b2597312f47991688a4ecdabb9cea873438af1182eff792cc5733bb6d42fb071edc4e4a7eb764edd0132f8ee85746f1990d474e343d3360ca9358c6f67850c03 -DIST firefox-82.0.3-kab.xpi 534409 BLAKE2B 8506cc25288172d8432556988c1c0bc157f96f29619ed2e93080c938945c63c1e9d5030f3612ad64a016b04aad33519a01ea594574077d97460c3336c66c00f8 SHA512 a7feee5242bc22b2a99d621f43603f3c64563240ccb72bf843cae591be5cdf6696275809fb79706c131967c6535d3c0f1a911cd626e0df448931485635941c1b -DIST firefox-82.0.3-kk.xpi 591695 BLAKE2B e0f513e36c7c1f299e6631b36e81d17e677537772ab6b7c90af46e0d44771636b2856f847afaa0fc30685d234c449619d1c20282133c8348f0edf101a5915425 SHA512 b3856f5b8749ef7551e5aede3b17926e7b9b455a9a333a9ac847199c2f4308ab79844f1b7ef9666ab5c5fad3b5841e3f10cbe275ba744d3ebeaf0ad3dabe6d6b -DIST firefox-82.0.3-km.xpi 527006 BLAKE2B 979771d11c95cb96783af85ae8579af7ba32ff8046291b041464aedf5329d9b0abd84b90ee4abd89274cbc81b19d0494e0e6043769ea6dfcf920c0b67cd9da07 SHA512 c9c76a3bd461153b7cd83f7df050354d3ec428cafd14903b3c4c806c4903f205b8642b0932768b16976bd8893839920076626be407ede95e0e8dde3ef6cb402f -DIST firefox-82.0.3-kn.xpi 507973 BLAKE2B d28579416116c32f6c59417db722af7bc1fefc43052444b9ffe2efa474d0e3476e27f8cb96f4fc0648c345ac22fbfae68fb2c631e67e457484fe307565a11b1b SHA512 a160da5445ed85f217a988a45625aecb2ef3e0a15ad7ca49465f5449d4865975582a649f11f51987aa062723989e50a79cbdbd05ab3c8c3b99e3b72eddfa8675 -DIST firefox-82.0.3-ko.xpi 560882 BLAKE2B 615ff1a10e7ee10cf8e37d589a697932375d4ef6f4e3b4130d94be83f3b5a877c0e8ca50a77d1938045385b9b26fd7287ca99c2f74141bfb8b8e50ef9c602faa SHA512 2da0bf4aedacbd6ea41498a7a95d1177b5ff2c86b66fe5b9d6ade5a65bab1cd6196f16b3deea4b4e4bd8a3c62a8681e1ce28865eeeb439ed2209e8d47e24cbf6 -DIST firefox-82.0.3-lij.xpi 477687 BLAKE2B 842dd88e58321577f31e1def7ba4794448ec66eb12595281959cef51316a5df6f10a123ef375fe02b1b3ccd1d7c6df0d2a854cc34be53e6d476dc0aed5bb57a0 SHA512 7deffad7cf7c989847ad28c2ea64d9cbe0765e4831569ea4068c523b79dde0d74629e7accd131c01c7d8539b1c845ef3fa853398c3a306d2e3d6296bedb32b04 -DIST firefox-82.0.3-lt.xpi 538353 BLAKE2B bb13a9a86cbcc7131f77f4748b19b6fe2f3564ea388406040e79449df0d19e88fb5d195864f95111ef5b272a69f4e9804c352243bfc41ae296b25e60846f48f0 SHA512 02a884188fefaa668baa555b159a3c427288c244a622413c75bde4f4f08ebcb3a7158d1fc5498e47497f8428eea6ffe520233289d6f48c8fb686db5d2261b50e -DIST firefox-82.0.3-lv.xpi 469970 BLAKE2B 1cd7da60613190fcef58087495a3b810adc5949aa5370bd6c8094420d981ff12411c4541af8933a9d630564c198b80beabc857d542a2a7f6616019681b8b4514 SHA512 a6c430838fa06d0a2455fb3085a3b92dccb970b2b546bbe8f364bedd005dc362a3d8a3cb92acb83dab00c327fc700da9394dfe2a7b1f47dcc04ae689a75a3fe9 -DIST firefox-82.0.3-mk.xpi 460998 BLAKE2B 8e0cc542a0fbe6975bc774c580edbffa8dd23281f8631c1d340ed89894164c7148fe104c1ed6cd6c9492767819b1b8f0aab63972431334bc3a1a452167b5d376 SHA512 baa32cde51678d4059af0ac088a2e8de0e2de3a678ab1516af4701922ec6d50e0de74fc9e624c83ec36d95df6b147ac0c4d4fee25c366b09ce253000ac24b720 -DIST firefox-82.0.3-mr.xpi 543116 BLAKE2B 3d9e84a747bd34f2389053011a961b6eb780ac6cbbfdc3654cbfec9361167804f34c0e633849461274e645293eb033a61078db4fb2cba52f2500cc3cad715a2a SHA512 6a0861786e768ee87acbc7e22ba62102da78d9d082071e80ea55f2c6d8f662489eacfeaf45d08058cac914a34d7efd963791cd62c75c1e47ca79228c09d8ba7b -DIST firefox-82.0.3-ms.xpi 455699 BLAKE2B 745391cb3a7804fb3bf4a9326f06eedef219c2a6e587fdf396129a7e4c5553ab8c76a05f8c4dcf5b7d61706d9dfd65d3a95034bebd02e354ad18f1d474452504 SHA512 e639d37be088bafc0e03bda4268ce431619b0f614df8e0f7a805b681b0f5c4c17bbf5b9787255e517f2efb38b72a8105a07ab036502ce36c7e78915b6686f47b -DIST firefox-82.0.3-my.xpi 527633 BLAKE2B 5a380278d8d5ecb933f3c005a403bba860c200d147b44294851b899cd8980dde0d8f198ab2ce8b5c891113c83fdcbd610328e8243b7bb7b979b0b0e06f76fdc6 SHA512 02d31fc5da926373f9e27923892f7d7abba8b26a429fa1274cfe55471ac0ab0b198343ebe4b761042dc32997272da996a815a221b8c7dc122df7c4c6abadf3e2 -DIST firefox-82.0.3-nb-NO.xpi 513310 BLAKE2B 84cedd0f07c11b37c8ec09b713c58d2208c63c63715c4090d7185b25c8d4ae939a392460385355a64c157aba2483a6b52acac9478175aba611e9873b8c842a43 SHA512 f4f859126dd362ad7b5f3f134f209398a0ca98935ac36fa769559eb1805b4f6837a9d38480dfd9e00009600dd12f258cf9380130227d90bfbe7dd8f58b383532 -DIST firefox-82.0.3-ne-NP.xpi 484756 BLAKE2B e5aab01db2a7aee67b3866976177a9159a57d07b5ceb0ace151838af59a343b4fc6aaa09eceb247b1305e889cb8e832bd861698d098545d8799d28ad97a12f61 SHA512 8c1ce62556ccc111da0d2a2112c9b578cdf842d7571f99331d4a7f92fa9362537d155f277f44a93de3a81f5cf87e44a63804dc427dfdeafb0893293ff8eccd30 -DIST firefox-82.0.3-nl.xpi 520522 BLAKE2B 098878b847bf575707439d4d528d18dfdc90ae135f7c013d36ed91586e98708d8690dedc9f80f6fc3c67199577d68f7cfeeffd23cf6e5a389fa3fb10a26db388 SHA512 5448670d86d43c47af5201d665e874efd7f8a67512813edc40a1ddb28883cbeaf56fc14e23f48b1d141e8979a6b10fca22f1686b08f75c039ba93035b5c71597 -DIST firefox-82.0.3-nn-NO.xpi 515819 BLAKE2B 53ba4052513f237d962c88acacb95c0d212a7889d06422e4b1bf7ec830807d85e9343de3844bce67bd3fc0db9ca2c5cd10385188faf37dd77871faee9730136b SHA512 416166acaec6ddcebb0b5985b35b433e7ec12d79a80f2618221a4bf2440b2853561c261ca3aa549f24f13e0eb3fde46f1ca7a9bbf3a8dfc90e57c0701b0f813f -DIST firefox-82.0.3-oc.xpi 536290 BLAKE2B 2317dedf8b084579ee6bc80db9150a3fc56a9a2ed4dad58df49e8492ef68454013bbecbf4c2e985f8a87843894f277a0ebf80d295f0a350b0cc19760c9613699 SHA512 834a3a5f07c66a3c373e00f829daa5fa841f54dbb4a168f681ab18cbe240f6bdf3f68c237f3c6a5d977feddea7a92073077eef5324de87ca1fb7f68e69370c1c -DIST firefox-82.0.3-pa-IN.xpi 579207 BLAKE2B 0b817b12c907a08b0ead239ab9dc2682c2caeb7ad3240bd036e477dc9993e5ce484faaae76e48ce56d159aa84c89fc7a92c3db811d2ab5dadf4d88fb0fc6d287 SHA512 915b5cf88dac9fbaa672481df763629f8ee3c5eea1be654cb134cab7748ae3c3a0c25b78660f673dfef9fd1315f430df1a8f0483652dfc42ce78fb79e9e45c88 -DIST firefox-82.0.3-pl.xpi 539497 BLAKE2B b7052b3194dc7e3c9fb7090fb9789669ba2a640bbabf8a3f1323aef8dbedac4197549ee6be155beb5fb3aaf199aa0ab411a81efac22bb57c4def16030d8e0023 SHA512 a054e6606e99e0cf6f702f47e26220c43a1ec25fc2b64d57db694c3205eddc4dd4715a1b6b09e844ab2ce848ec1f72f9c64b75e3400210c412702ac7694bf436 -DIST firefox-82.0.3-pt-BR.xpi 521439 BLAKE2B a04007b5673d786e9560ad15f8c48a04397faaed645cb1110a9af1d61ca90400665f301421d8eb3981b604924dc00932c982e2ed7db8d4b931bdba3633f5531c SHA512 e066b7b1e946f1d2808e3feb08d54db04f4d615de886ee8e627ea80b2520c8e45ec0216e9c9f7301051736c9753e384c0b85e31a5d94fa7a9c479ca4877e42c6 -DIST firefox-82.0.3-pt-PT.xpi 529552 BLAKE2B a7807a4a5465dd1dc3f3470297c2d78189ab2da29abf2c96ede3f566edf776273ef4a7c898cbd403f6b0547ce66f9eee11b107f6ce70a2616d2c5ff3e0436a3e SHA512 919f1509f9ac76975f1b3603b9ac7ca5f36e073cb77aa263c2af621a64363546f5ffe5f4ba65f27450cd0786bc2aefaa4fcee238956411bae59cf12730c16f96 -DIST firefox-82.0.3-rm.xpi 518937 BLAKE2B fba7ae0d33d58226652257735624570417e7c962f41f68234ddf6d4251e9515ebbc33aea25237b529aff06cc4fd35d2a30138cab3ba890f0b9823834a0cd0fc4 SHA512 d3e5b5c00df91a6c3f304f91b5c9b9d93f8cbb7cdf29d18859647909afe2430d038b601f58939bc06e06e52deb0248b2e278790a384035fa4f581dcad11ceadb -DIST firefox-82.0.3-ro.xpi 534208 BLAKE2B ee5a7157ab994f6e5fe3dc888043ec82e1cbafc7779ef23e3f52d7c727fa3bc3a33de8fe46c2371a854f10d191fb1ae8277a2ba08b80215abc990a5e6a6f7074 SHA512 f8c3eb7f819d293e99cd8b1065999c887d7f500513f0b49d8238c4689e2305e8045d4b262aa106c15e0bcb1c6dbfbaaa7af86754c6705fd28faac444d5af0cfb -DIST firefox-82.0.3-ru.xpi 607607 BLAKE2B 297975d403b04f7c71897e08dd4b8777e7a948042a6082aa09133b178bf239f4ae61d5f96eda0d8687346935601f480ba696c2bc7d05f640af60b70b38257170 SHA512 ce118798a575e86aab4d738c863db1ec827c9ccc35bc6b9efd79e9309b2c1f244a95e547da566bc57aa91b8ca65ca7de852ae53af38c32a2f4b79be70efbafec -DIST firefox-82.0.3-si.xpi 494078 BLAKE2B 83fab4c302d8163ecaae6bf427e418e4290b444a1ccbf6bf6ff6257f9a0c44c2e27f5e61b1b69f48db2994815b954471c66d318a9502fcfa6388aefeef66113a SHA512 fc8e634395f4d53ffa9bc7405eda72fd42cded7ff605fa0928601695131d635173a7644d93a7fce054b27c3a9647e7fc9f207a4ab803cc18c3c88e961fd98e1b -DIST firefox-82.0.3-sk.xpi 535676 BLAKE2B 4c98c048c208e8064ed47db3f11d6a87af4a4a886046c7797b08915c84e37db41e1b5b82532d32c808d0496e47adb446a6f6b2822f91626876aa8a492ed96421 SHA512 4c29c1e8af6a509554dd559060b0ef68455859deea7e19eb6ee96442f6095eb56b62ee941dd7863f7ddca43ed383086e438f2a59537bd6d3f8aa0cb93c682937 -DIST firefox-82.0.3-sl.xpi 519656 BLAKE2B 4f26dac8eaf504504adad3c7d805d59ecfa6eaeaca88b46b5283046aa56754e6aa8bd6da87ee847c80d009b4d89cfbe7505bf5c7e3f962cbb4eb0761f80d1213 SHA512 3c1738f10258b4bf15a5b7e7230e9f8b297bc910bae0edee3215f6a8c2b0dcacf9a26621fec92a20b376eb265accfa39fb1a389d5d5f253f150dec6a42a039a2 -DIST firefox-82.0.3-son.xpi 426746 BLAKE2B a1fbe1372b58047ae69e483791027570b2054d5e5f422a98dcf5d3b340ebb6a330de8e432ca54e02eb45017484ed3d184fcb147f3a7884235761aa11db849ecd SHA512 f81a11807d64af6583d2c641231e6ff8a026952f5bf556b7c644f649acd709ae1c8f83d19b438b3f7dbe3678adbf8400a33b46bc841ca33a2c2319b0db4786b8 -DIST firefox-82.0.3-sq.xpi 535361 BLAKE2B b5c417f569dd4331235f8303c963eb1ceb80fbe43e452d3ac75a9b4c0ef2921251fda1f74aa5b76f40c9046f7afcf3bb560a41777f8e69ef79ff367702afe346 SHA512 d78ab84eaabdfa984331cd05743ba7044a80e6e37b1a171eba9ec41e3c2e714fb2a41a4cc6bd7b3225a75598bb7158c7e51ffa76cd5eb1fff99e84b9b7f46f6a -DIST firefox-82.0.3-sr.xpi 562526 BLAKE2B 982e5594ca58f8584b6df781bf4f4bf8344cb3b12ce5dc4d2ec2752554f4ef08464461ea26c7540737329885474f39939247335b1178611805758cbe112002ac SHA512 ebc789cb4203f08e1daf735e3a7f5738631753589ae8a1a61af8ec56df488bb71c98ee2b23bd00f9db53344db63a6843b6b7ad2e1c69e9efd2670386ba204c74 -DIST firefox-82.0.3-sv-SE.xpi 524098 BLAKE2B a8dd5d81273d4892e5a0b6986f21b5af7f19a18d257330165f0da4406f52b95917ed1f57ed3085af5c869e9bcbc46c4413ec9971629ca21270d6b4d422b9cb11 SHA512 87c1abec18dde3910ca0f9568d2b0f2605b230125a8bceab0fc9b2fb3665af4c10e87908e785d472e9224e5130ea040f95304ab22a6ba73f6a80835e0ac39a6f -DIST firefox-82.0.3-ta.xpi 522863 BLAKE2B 33e30c6c38e4b6061366365636fc17bce59cda8e3b95c4fdcaec124d1aa266213b45f2ae8b0bfe3859b378b92fbed1b89e80f593ed47d5335b03a40380480e4b SHA512 c154fd8113478675828bc2df16efb0bc5dd52318936624a3f577de73958d64a729b70e86b05e0cfec5e76b79411734c2f531d5465b87afb9ec57cef1be024b0e -DIST firefox-82.0.3-te.xpi 559039 BLAKE2B 0a50efced658dd8db318c5847b5636e59e8442d0a76076b9c05bab4111c72bb498a03cc21e88e6258f3d56d1c91b5d7432ebbfe345859eb2f54b0c2ad73d99e0 SHA512 2f0b708e6846bc48d102d21994867c1073c4e47c0b349a710cece5c6e6a919559eee7b6be1bf93cccb3515bb21b89abba9e4ee1d30cd1f0f92b3d6d35d92157a -DIST firefox-82.0.3-th.xpi 587886 BLAKE2B ff01f3539a6cc49ecf0c36963fe271cf2a5a3ad57aabac68113e169510f6deaf6c50a158bfc654ac1f7ca5f774e60cdd4befddbebcbd0df8c388dec48eb0aebd SHA512 f6bd09b5e4dd19709f75ab8c8cd37ad4b4cbf67f2c1484e369d07544c12d5b7781b3cf5d5e64e09f85b2be11f75a83c0c0159e7c0c3dae4acd86fbd8172731d5 -DIST firefox-82.0.3-tl.xpi 519934 BLAKE2B a1b6edd46778ca22696ebee4a9e7c46f46ed658d12259f71452e967b12531b0c19af9bbcde7d02a9c5fbdcfe47e0729ef81afd083c24d2538b20220ef2eb3288 SHA512 3ee1e9e36980a09cc61975f5bd5630293dac70fecf1c69b04c34ceeb992b6334f9dcc821be10082eeee283d02f1fb2948bc448eb11e9db7379f3aaf811cab028 -DIST firefox-82.0.3-tr.xpi 532923 BLAKE2B 96f62eeb21c3b27aa6385d9ce78ede1c99d307a87ae051d3797872eb4bde4854249061b4b13a53e1119da513c0069cc39d2b1746b8654b3b587c123532a25c48 SHA512 5944f5d1a03733b23e81153e069c1286a621ffa8cde0d884d23e2e8ace8a41eb935a0a78a9bda6ca4941000d540e17b415be9cbdeb42c09150ba4cd8a90e9143 -DIST firefox-82.0.3-trs.xpi 501730 BLAKE2B a61bbccc023f4d7998655f4e61f41f620efccf4b53b77d963386c8ea494a6027469b622ad50615e677842c7ebf362120224b728f61196079f0645a1cc9152061 SHA512 6cbe94b32094400f710b14837bfdbe370d52f51355d2e9719b9dabec32f877a3c7edc0cd069351c5f8c2bccb531a7e75f6662d681e05c481a9efefff14889f76 -DIST firefox-82.0.3-uk.xpi 601679 BLAKE2B df216a0a44e355bd617bc978ec4b225ac52418bb1bd870c2677b8eac3df77468ceb076d816a95f47c2b85583f2c4891f181d4bd50d4c161b833e10188303de53 SHA512 b22bd4367173330bafe2a38e2898c80b51f164b3bcafc61cda6be44fc2ab9fd77d154ee453c2dfcb7c7bb9f253fcec90baca8ad3e42b83f086636836792208b3 -DIST firefox-82.0.3-ur.xpi 559770 BLAKE2B 031d86f1bab92c374976ab36480bf782a0e55509261173bb1c836e18d907ae434fbf3e6274af02e6b742dbb13cab226ca5996aa122d0fec629bc8c93879c32ac SHA512 8ada4de712a2b9fce019d178581048b333ae7900230628f96c85d7729011c8ce724b135ff88af845fa3a58f2a38a6337340f225648765339141854a63109ff78 -DIST firefox-82.0.3-uz.xpi 479460 BLAKE2B 522baf4d7a53b16a8f17ef4a2c2745424fe0d02c1cb169e1e952299454306b8b9c430644bc8a188d610490427996a42898ad3dcb8d5edc16124730c5d86c6b33 SHA512 9f8afd24b48365481ff56aba5fccd2cc78d471faa6e0373c3fd9ff18efcec95ffc638b442a6cfb06d60eeb2749036046ea11016bbfefb0abbc4ee93ecb6e7662 -DIST firefox-82.0.3-vi.xpi 557262 BLAKE2B 12caf1c97653a27eb74d952759f74f5cb6105760be37d8b61af1635e522f687c4f909f3ea412b1e9d26bc4703ddabb5f5c7ca54b193429e677b75f0cbc1b3ece SHA512 92fbd34775fbec94e600ca9b59cc93ee87321ffc260a20dea2a1184839f89ae9ac9b8c3cae6f8a58655d61c7a7381fc44c764e1bd1fccd111fd82f77b0cc177c -DIST firefox-82.0.3-xh.xpi 428931 BLAKE2B ca141f337911c2a479515ad1b96def2605818a25e7e5afac9240a209b2635b03fe69bf809c72df7354745ed07c6948fd9957238deff9274e9ae1ec505278dc95 SHA512 89484cdca5480d6966b248343efa93896b79135b71d28582d2a46ccc893d3905e2f8c0b4435b1c88353c25468f24a8778f882854d24ebe8e9738bb49c6b80480 -DIST firefox-82.0.3-zh-CN.xpi 558338 BLAKE2B ad4e28793f2a2fc1613c2d52e4597c507a82769dbb13a08adcd81076e05c9f7febf9c6bb9cfb2fdbc9b9a6b69293c4f987356b706b3409f6b687b9d5129f618b SHA512 7e0ced73e10240574f051d318e55259cb858eeffb9a42aab00d04a994d51c3016dfaae10abf6f68c033527ce67d567145e542e817a4d6cee18f6cc73f07e7939 -DIST firefox-82.0.3-zh-TW.xpi 558251 BLAKE2B 92ef5bd5c05d3632f423c23f1f10e0ff731153a7bdd733c1409b708fd58ef60465a904d90265a1947644f34b80aecffa45f7480e8272e1e078c678113e992198 SHA512 2e838ded7a6d9f4cd9859d24f4c345f75c26654852171d0a9386474d7776c8c3120b44460cacd3be4f5c8363e41a56815e32d38ff88e21e9e0c2b445074a43ed DIST firefox-83.0-ach.xpi 463987 BLAKE2B 2173c637ae155ec474d18250adf8cd67ff7732ed9ecc7533004296934f82dfdd2f83f5f59dbd6b095b519bf5d3caf888f5e07913004a27771a13376ac080978d SHA512 cb1644bb1451311923bcbbbafe727fe8b35c33cf9643dceac603e802b82a2684451f9005ef6bfdd1ddebde01548926eb62dcd511e1f8a960248ea5b74f5f72e0 DIST firefox-83.0-af.xpi 431349 BLAKE2B b4f912e706b464728e779bfc3cbdb7304bd763c55347140c32bdf309b3b4869ebc4bc1433f5cf5c970774f69aabddc4b5f5fce568dc32c50c4aaf90e9d07e13f SHA512 076e9084ae00dda0cfde5b09cf2dae7ed8994543c8de645a70b2f116d01da9e024159114d4d6ef21ce134b7d7cd16b95678121b41300ec5174a36112d41da4ed DIST firefox-83.0-an.xpi 511284 BLAKE2B 0b6332b8dcb254bf9df13fde4e34d01c2ef6398c329cce630a0b05a91b1f4ef02c8177f1726f489e8526ffd9fa9e822a010bfd6a669f5a598e7ed60f8328a278 SHA512 43559e760a96092b4c4bfeab6830f021e69c8c7c56a187f49109ea94443372e6323d503f1f175df1d77c685fcbbab2077f7fb02dd031804cde8a7dec2aa1d988 @@ -378,11 +188,7 @@ DIST firefox-83.0-vi.xpi 563425 BLAKE2B 398adc06edd315941a71bc290f110aecdc5d04a4 DIST firefox-83.0-xh.xpi 430120 BLAKE2B 5cb1701736000f4404ce780c5aa18eb37fbab3841a92e744a2a847fac271bbffa176eb8032aab05482cc2516052f48a785547a052219e82d08d588b3f45463b0 SHA512 865c2f98ca387d3dcbe0be4285e6f0de902766cfed3ec23c067045c7751117461dfff785afee9c26171591359d22cca4afefad6822a7b78d48ca7c10b421ea86 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-bin_i686-78.4.1.tar.bz2 73104144 BLAKE2B bac9b30bd770b53230e8503ff74d0e56a2b93d0c3cb75f4865901913ba731103d3bcbf25edf94e0121afa9bf00d1cdb84a2046dfae8f72ec1b3815f4d36ab89e SHA512 f5afa4533d8b1846f54ea0750802f449024739033ee91e64b31a609c595d68afac95328ec7853b22de8cb5d24e40b3e4552ced566eda308bd64202d4b7541f70 DIST firefox-bin_i686-78.5.0.tar.bz2 73048264 BLAKE2B 8502fd93ca2fe5b17983f42b09309260d03a315e05bc3e1348d7451a850a87bb88cdc5ba541ce7888a84c170b168a3df35e9289918956a990664e99b53a34b25 SHA512 dd460712a2b4129688423540b9d71a92a67ded649af1d8679c5a72e3e5049628e86a5537d583983c6e3f04a80fc5b6dd73dbb4f3d661b1ed7ae05a2a6bc656a1 -DIST firefox-bin_i686-82.0.3.tar.bz2 74598330 BLAKE2B 72280f8b836dbe31a58073fd73292c191eee1784bdd8f0b1fa654f3c021c7d4d299056dd0236c529cdba38d1c2d570b7809c0f5696a6d9407378e65b057c06e4 SHA512 65a51dc725580549102a93fdeb320dc4249502a69f3f43538c9ae1d21396ed5163c9b75166a01889a73a6337cad9571b3c6cdb3d69591fef0c1e8b86a342bd10 DIST firefox-bin_i686-83.0.tar.bz2 74725746 BLAKE2B 31cd2e5c31f989234a7129441df0c36c6027ea9e8ee81adb0c9c855426c1ed7bbaf38549f50ce8d1efd56c38dead51e413b94d84aeb5a00f98331fdf6470e4df SHA512 613a98bb338c99af9e91d1ad59012164815852f569aa78e602c371d358cc8a7d03d0e6a4a57ab6392e7430b6c4f4bcbe6f9c572e12e978f7e76df74992fe816b -DIST firefox-bin_x86_64-78.4.1.tar.bz2 70962194 BLAKE2B 9319610fbf15137428ab70581acb3aa976819a75fe5d1b09074323a969245970507392e35d3553323a0540427b2372d10dcde08beb2a322db7bb75c01f5d8b86 SHA512 3495f32417722fe0aebc4750b0d45b28cadb16fa9f9fb4da0626c8bc7eb10e43f48d6eeb39f6f31d26f3b2e910c1b077eb6b715f16ef1226392d53069460b2d3 DIST firefox-bin_x86_64-78.5.0.tar.bz2 71001691 BLAKE2B 88d3d697d546b371f31b435b5c48e38c7ed87561a53151f21d607795c7add345c604aeb23320e34cff1e2c5bda231ecda9835741ae33b9c8af001c3a2a91fc75 SHA512 e41a735d63522d633d194b11b03aeac26277877a2d1bf737f3b3f6a10c177d5c9b3fe949f92c1d94d5b38ddf02867dbe5f9fae0a685aa7fbcb91893040311e3e -DIST firefox-bin_x86_64-82.0.3.tar.bz2 72186219 BLAKE2B 600ea5de3f0d46f80095fa8e5f343991b74f69a1ed9836a9837df336653881caf43c1272d7c5ab4fd39f022b80e24c7ec127a5bb37c68c9ea1c312ddff790bd9 SHA512 31090c4620506ae203b79ac567a68992b0e296dc9bddb5efd5bd0f74e87ec19af5e4859526adf46a990f31418bcd7048983154a41dcf0930718e4182ce041cd9 DIST firefox-bin_x86_64-83.0.tar.bz2 72307348 BLAKE2B 1923d6bf043d6747362a5483f2bcc45ccd13e13a95c2134ee975bc42a6a4af33244a98f3b774edec7b087873ccce702a59978a624c293f87c0093b639b089c39 SHA512 7574aa85e3cfc1b4de94d11b360f1a90d530a1e379f569bef0a380e6dbc5e0968437e966745db0bea6a8d4ebc4d3776ebd6418281b601f4a45c93d91189b3787 diff --git a/www-client/firefox-bin/firefox-bin-78.4.1.ebuild b/www-client/firefox-bin/firefox-bin-78.4.1.ebuild deleted file mode 100644 index 739c0027fac4..000000000000 --- a/www-client/firefox-bin/firefox-bin-78.4.1.ebuild +++ /dev/null @@ -1,411 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MOZ_ESR=yes - -MOZ_PV=${PV} -MOZ_PV_SUFFIX= -if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then - MOZ_PV_SUFFIX=${BASH_REMATCH[1]} - - # Convert the ebuild version to the upstream Mozilla version - MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI - MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI - MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI -fi - -if [[ -n ${MOZ_ESR} ]] ; then - # ESR releases have slightly different version numbers - MOZ_PV="${MOZ_PV}esr" -fi - -MOZ_PN="${PN%-bin}" -MOZ_P="${MOZ_PN}-${MOZ_PV}" -MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" -MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" - -inherit desktop pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 ) - x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )" - -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="https://www.mozilla.com/firefox" - -KEYWORDS="-* amd64 x86" -SLOT="0/esr$(ver_cut 1)" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip - alsa? ( - !pulseaudio? ( - dev-util/patchelf - ) - )" - -CDEPEND="alsa? ( - !pulseaudio? ( - media-sound/apulse - ) - )" - -DEPEND="${CDEPEND}" - -RDEPEND="${CDEPEND} - dev-libs/atk - dev-libs/dbus-glib - >=dev-libs/glib-2.26:2 - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf - >=x11-libs/gtk+-2.18:2 - >=x11-libs/gtk+-3.11:3[wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrender - x11-libs/libXt - >=x11-libs/pango-1.22.0 - ffmpeg? ( media-video/ffmpeg ) - pulseaudio? ( media-sound/pulseaudio ) - selinux? ( sec-policy/selinux-mozilla ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or -# overridden in the enviromnent (advanced hackers only) -if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then - MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) -fi - -MOZ_LANGS=( - ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy - da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu - fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM - ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my - nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru - si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi - xh zh-CN zh-TW -) - -mozilla_set_globals() { - # https://bugs.gentoo.org/587334 - local MOZ_TOO_REGIONALIZED_FOR_L10N=( - fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE - ) - - local lang xflag - for lang in "${MOZ_LANGS[@]}" ; do - # en and en_US are handled internally - if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then - continue - fi - - # strip region subtag if $lang is in the list - if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then - xflag=${lang%%-*} - else - xflag=${lang} - fi - - SRC_URI+=" l10n_${xflag/[_@]/-}? (" - SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" - SRC_URI+=" )" - IUSE+=" l10n_${xflag/[_@]/-}" - done -} -mozilla_set_globals - -moz_install_xpi() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 2 ]] ; then - die "${FUNCNAME} requires at least two arguments" - fi - - local DESTDIR=${1} - shift - - insinto "${DESTDIR}" - - local emid xpi_file xpi_tmp_dir - for xpi_file in "${@}" ; do - emid= - xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") - - # Unpack XPI - unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die - - # Determine extension ID - if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then - emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") - [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" - elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then - emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") - [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" - else - die "failed to determine extension id" - fi - - einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." - newins "${xpi_file}" "${emid}.xpi" - done -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/firefox \ - "${ED}${MOZILLA_FIVE_HOME}"/firefox-bin \ - "${ED}${MOZILLA_FIVE_HOME}"/plugin-container - - # Patch alsa support - local apulselib= - if use alsa && ! use pulseaudio ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - patchelf --set-rpath "${apulselib}" "${ED}${MOZILLA_FIVE_HOME}/libxul.so" || die - fi - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - newins "${FILESDIR}"/disable-auto-update.policy.json policies.json - - # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" - insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" - - if ! use gmp-autoupdate ; then - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - einfo "Disabling auto-update for ${plugin} plugin ..." - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" - pref("media.${plugin}.autoupdate", false); - EOF - done - fi - - # Install language packs - local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) - if [[ -n "${langpacks}" ]] ; then - moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" - fi - - # Install icons - local icon_srcdir="${ED}/${MOZILLA_FIVE_HOME}/browser/chrome/icons/default" - local icon_symbolic_file="${FILESDIR}/firefox-symbolic.svg" - - insinto /usr/share/icons/hicolor/symbolic/apps - newins "${icon_symbolic_file}" ${PN}-symbolic.svg - - local icon size - for icon in "${icon_srcdir}"/default*.png ; do - size=${icon%.png} - size=${size##*/default} - - if [[ ${size} -eq 48 ]] ; then - newicon "${icon}" ${PN}.png - fi - - newicon -s ${size} "${icon}" ${PN}.png - done - - # Install menus - local wrapper_wayland="${PN}-wayland.sh" - local wrapper_x11="${PN}-x11.sh" - local desktop_file="${FILESDIR}/${PN}-r2.desktop" - local display_protocols="auto X11" - local icon="${PN}" - local name="Mozilla ${MOZ_PN^} (bin)" - local use_wayland="false" - - if use wayland ; then - display_protocols+=" Wayland" - use_wayland="true" - fi - - local app_name desktop_filename display_protocol exec_command - for display_protocol in ${display_protocols} ; do - app_name="${name} on ${display_protocol}" - desktop_filename="${PN}-${display_protocol,,}.desktop" - - case ${display_protocol} in - Wayland) - exec_command="${PN}-wayland --name ${PN}-wayland" - newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland - ;; - X11) - if ! use wayland ; then - # Exit loop here because there's no choice so - # we don't need wrapper/.desktop file for X11. - continue - fi - - exec_command="${PN}-x11 --name ${PN}-x11" - newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 - ;; - *) - app_name="${name}" - desktop_filename="${PN}.desktop" - exec_command="${PN}" - ;; - esac - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - "${WORKDIR}/${PN}.desktop-template" \ - || die - - newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" - - rm "${WORKDIR}/${PN}.desktop-template" || die - done - - # Install generic wrapper script - [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" - newbin "${FILESDIR}/${PN}.sh" ${PN} - - # Update wrapper - local wrapper - for wrapper in \ - "${ED}/usr/bin/${PN}" \ - "${ED}/usr/bin/${PN}-x11" \ - "${ED}/usr/bin/${PN}-wayland" \ - ; do - [[ ! -f "${wrapper}" ]] && continue - - sed -i \ - -e "s:@PREFIX@:${EPREFIX}/usr:" \ - -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${wrapper}" \ - || die - done -} - -pkg_postinst() { - xdg_pkg_postinst - - if ! use gmp-autoupdate ; then - elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" - elog "installing into new profiles:" - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - elog "\t ${plugin}" - done - elog - fi - - if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' \ - || ! has_version 'net-misc/curl'; then - einfo - einfo "For using the crashreporter, you need gnome-base/gconf," - einfo "gnome-base/orbit and net-misc/curl emerged." - einfo - fi - - use ffmpeg || ewarn "USE=-ffmpeg : HTML5 video will not render without media-video/ffmpeg installed" - - local HAS_AUDIO=0 - if use alsa || use pulseaudio; then - HAS_AUDIO=1 - fi - - if [[ ${HAS_AUDIO} -eq 0 ]] ; then - ewarn "USE=-pulseaudio & USE=-alsa : For audio please either set USE=pulseaudio or USE=alsa!" - fi - - local show_doh_information show_normandy_information - - if [[ -z "${REPLACING_VERSIONS}" ]] ; then - # New install; Tell user that DoH is disabled by default - show_doh_information=yes - show_normandy_information=yes - else - local replacing_version - for replacing_version in ${REPLACING_VERSIONS} ; do - if ver_test "${replacing_version}" -lt 70 ; then - # Tell user only once about our DoH default - show_doh_information=yes - fi - - if ver_test "${replacing_version}" -lt 74.0-r2 ; then - # Tell user only once about our Normandy default - show_normandy_information=yes - fi - done - fi - - if [[ -n "${show_doh_information}" ]] ; then - elog - elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" - elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" - elog "DNS traffic to Cloudflare by default is not a good idea and applications" - elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" - elog "(\"Off by choice\") by default." - elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." - fi - - # bug 713782 - if [[ -n "${show_normandy_information}" ]] ; then - elog - elog "Upstream operates a service named Normandy which allows Mozilla to" - elog "push changes for default settings or even install new add-ons remotely." - elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" - elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" - elog "concerns prevail, which is why we have switched off the use of this" - elog "service by default." - elog - elog "To re-enable this service set" - elog - elog " app.normandy.enabled=true" - elog - elog "in about:config." - fi -} diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index 96f109931454..fc5035cf9ac8 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -1,99 +1,3 @@ -DIST firefox-78.4.1esr-ach.xpi 500672 BLAKE2B c9241f614ffc831373b7f83da35fc02268e0b1a9eeccb541d486c52e254f4efeb48e2bdfc2382c0b085b6183893c362510a04e85568cc8e36d5ab13594709e48 SHA512 8d8b0d7515dcadf7453e1a439745be7e7a5415d6181928d810f1d03768768f6531e02a4ea27edcd29a9f2e2c9c0a15d64814342267c11f7f8b7272db52d7a62a -DIST firefox-78.4.1esr-af.xpi 444081 BLAKE2B 6cd3f018c3795e6b1897b83f96cc1def628ddbb576aacc32a8c8436fa797f42370a1fb4863960d02a970d79b4ff711c9f2ad5179a503c95a2201b5cfd56beb5f SHA512 364952d6b25f598512d9fe668ad193800401c5338c4ce0ffb2f23fcebf9456459f513ba516a180a93388ad44766b627a08016abeb9ded7a025bc623f1a1bd3f7 -DIST firefox-78.4.1esr-an.xpi 511464 BLAKE2B 7b1b315af4fca8d9e859e4231fe549c3d24df35c7e3f94ccdf262d49b0e1446efdb24c99ccce141804ddd1da980c19ff7956b8220affdc29539b5aa384b2b58c SHA512 7695a8fda0179eaf1fc8b7a7d0c819a7576d079a85fd58b825259bf8131469c3b9a131c933ba2548cbeeac1f22762c4ebda323760375dbc12f63e81fd73ffa24 -DIST firefox-78.4.1esr-ar.xpi 588701 BLAKE2B 88ea4918685e0388cc7c2dd3d07a607d3ab08102b2249df7d53074cf318d9d5680574f13b0656dfd71c612d90d1fd0b9ea5fa06b6673add084779cdffa4b5692 SHA512 e4899a7f5948b31586fa5508b948a5129975bbefc2c781cce98c4aaec57f23e5635f6a9fd7adc76a6881eb8d1c2ccbb12f3fbf8df21a4e02cc02521147cdb31a -DIST firefox-78.4.1esr-ast.xpi 500542 BLAKE2B 3fdd654e4ad837ee295b0f9e7cea41e6d4dd62e7ebe148de679b63a8837b229f0f87fd3cc47be7eb47feb5dec9e9ce9a6ec00dde95ca3f00fc31cf7e68cb77b0 SHA512 7186711912266f74fe662b626070ea7348d9649a15297c05c7e5ee9c25874b0b2cbade7a9652460516cd66220e2bab7831bbc3c1e73dd1f182ae9534c5de001c -DIST firefox-78.4.1esr-az.xpi 537586 BLAKE2B b68d597c7b963bf3e41c4e59217e561f4ea1f8534524f73e96dc88c183a6093556eeac975b9de449389d1d8c6d97d140b2b01810f802d14b665f2eecc6b856e3 SHA512 d9d87cf1833c5a7463163a3160ec8007ac9413825a97e22117bcf445d9db41a7d21b592704579d849747922f487246bcd7a79188f2527543b8dd3bc5d1855a78 -DIST firefox-78.4.1esr-be.xpi 647666 BLAKE2B dcc2139a545077117528b9b30a9ff58a1a92f2711df260460ad06d457f481a2549a810e6c358ff6ab1902a39eda0160a22d3c45d5ea4b0671a8048c9d36d0e1f SHA512 b95744ac5d8660e13a9b71fab70ae7e9b324ecc6b6ad740685cf3c35ac9f933f3cf43aa3463b9c1151ec5666cd6e84dd3d9a37ed3444b48530aeb108a8600487 -DIST firefox-78.4.1esr-bg.xpi 608535 BLAKE2B 2c176fd469dc29c9879b33a3d09356b05d51a7849677c15be361acd03197e9f529a9096f03b79d58e4d0feafd38746aa8ce5d1c812dc2f3069aaccee48b7291b SHA512 9592e308903d57b8c1a42eb9843f3dce509ca57d61cae3d474de2eace9f5a70c6a7eb022c27dcd4fa216eaae2c05a3976470a5a5acd3ce2f09e63e5a29a967ec -DIST firefox-78.4.1esr-bn.xpi 634045 BLAKE2B 5f40707f16621cf639fddeeba14c4b60d096010359e30246cfc1f195e3c498365c95733ddda2881d21b590164bf6a3bbca6a3c8a757ae2788404e7c0312ae346 SHA512 f8192c16116d9faac846a81284f02dbe01803da0b04fb73267f1cb4156bd97e580abb0021bcc4c1e6ec06559a48251f7dbcdfea925c864047aaa7449f5baeb7b -DIST firefox-78.4.1esr-br.xpi 551260 BLAKE2B 5335d48cde3fb04e354c12d7bea0e25e756b027943c5014da754ffc8182625dc95de3e2083b5d8822d70fd96e5bc4a51e01dbb219036990170fb0320e4ddaede SHA512 b63f8c1fc1b425a77b34668f8ecbfeb20007146065f8e1fdfd1bf860bc81d456f1a6008da9f7d51bcb329cbfce3bfc8046e73ed8c906b40c154e66c965068815 -DIST firefox-78.4.1esr-bs.xpi 506394 BLAKE2B 376b4bdf8c817799c4e80365a9eb45bd66d5dcf93970d9fc00ff4bb9f30b00319c24f0f27626c7e38d3440e58adc3338bd448846fd16bb88b8316c93fb9102d5 SHA512 5f57f316da4d9709643f0d2b14f8138a6279ae5551a30e676cd0c68eac0990ebbbc0eeb593213fc841e3a175cda0835c167e764dba32ca43e165e09be8ffe997 -DIST firefox-78.4.1esr-ca-valencia.xpi 558392 BLAKE2B 3234e79bd3872f800b846ef92801bf087f6f7ffeb804d66c3086423fe0fc475c49f25cd451dca1ab0e5fc964ba1a475d47f26072d105ea5d493304174ae90a13 SHA512 f7c11040a97d8e859bfbeb804ac8aa7b519fa8175fa6a55cd35d54c19fad9451a63914de9911540e1b966882fac340e7995e7b8d57263af1d62cacd1d36810b9 -DIST firefox-78.4.1esr-ca.xpi 552881 BLAKE2B b6db49780f674ec6ffb40b741047646f5e4c18047a26524964f1d014845d748124edea84beab1f320719ed66cca05d21ce8bb2d62aae2bdd295a574a0ebcd005 SHA512 bb67676c9360e240ecdcbb7a0b5a962325988be960ce1c841fc87df11254f5cb2a7bdc10d7403efa859408cde14168fd728b65a5ba931007fb45e305b7903bfb -DIST firefox-78.4.1esr-cak.xpi 584929 BLAKE2B 8818df9c001fa355b87987109bdd3d93e71a503670d0da1bb2b5941a2df016b603231707835363cb1c1bdb7baa2e89ee9332e0129de8cd50d142f67d21e800db SHA512 6e95c249e17348a4a3b2a3b6a2d7018078d85358ed8d54fe9fa598caa973be73ecf0339d95e8f325823a64eecf7260b0d002aa8735c439094ed0a103ed3d1ce7 -DIST firefox-78.4.1esr-cs.xpi 585533 BLAKE2B c284d73cb99ed4d7b48f559cba78a898e1e2ede7271819995b2c1c62e76742d45a9c13b543fe903e63e2dfc742a11f9b6c8ad6d22466c5c065e00cd1a788a376 SHA512 a6df083c9a9624257f6ac6ab148ca7cdf170b8ec69348a3064f17c9e33407c01a74bb9df70ad6dfb4c94b262f6e79cd03c177de521b6e7e36a78434fc9e20c27 -DIST firefox-78.4.1esr-cy.xpi 563226 BLAKE2B 5a6de4b94e499850f2da37d1d59dd0e4770f1be8323bed711589e04098cd0e3ec815eb4faaa10bd393f5be5f72812a257b4e1f941826502d8b41fbc1f1ef05ad SHA512 03e13ad7d4df5fc83e57482f14fac81717293fde34adab5178ae47a344e700a41968d6131eb5443c1d7b2a99ef11e2b934eb331eeb01318251b735f81146a749 -DIST firefox-78.4.1esr-da.xpi 552321 BLAKE2B 2121b9bad5eae61055786ef2e52746fe1903cfbee181a5821eab70ff64b664acfd6ec7d366a924f97cef88ee260a4f9531592bc0b4a1d54b23e8fb06c415478b SHA512 16a13a0a956572dee06723915c6f26d191669d7a909af392d0d546507f9bbeb1700cbd123bed19932e1d2653523bae51ad7b1705d911d35c087636a2718c9cbc -DIST firefox-78.4.1esr-de.xpi 576945 BLAKE2B 5fa54552e9d803c558f908dd37bcabe4d4c4edbf0986b3cab6345ce27d9a7bbdbf8f19a149720e6bc36bdfeceae996aa28070be6df284297b7a38a9b16912f4a SHA512 e904444aa40eb5a9601c1ca4d8d0617c51d1128b5a39ae7458d03a7942fa7c1e701b87b5b7e4fc732b6d9df26c33a7f790103e92b3d1cdf7feab03ba9215c02e -DIST firefox-78.4.1esr-dsb.xpi 589037 BLAKE2B 5091c78a01ed6a19f43c222d7c6cd802e64de73b31abcabee8900ee56de1a9e52a44d3bbeddc1d132faf7e0a9702e5420c1fffd403a7b54f4a994c008b104ff7 SHA512 c22dd4e9309ce58e0246d991e1fe50b97d03b472b921d92fcc949ed6d7392121983b921f6a2dfde46dd3943d259247a8ae4f0a9b8cf1dd53fb6a943f6a5598fe -DIST firefox-78.4.1esr-el.xpi 665908 BLAKE2B 0fda612ed26a274a965c7860cf3fd4c7cf1a8654d0b6ed6cbd23ab2d00114db4a317196ea6ae1ad142efbba2f214919b1f9f9107f7a5f9690057324a96424766 SHA512 f562acffeb90d25dca6f919adc20b963f71e9fe0a3a9797424449576cb5b312d683ff346e436d4b47bedb9a5a4d6258a71a6ce254df97a77ddaea464468540e1 -DIST firefox-78.4.1esr-en-CA.xpi 531410 BLAKE2B 6b07aab590dacb9908b9a5c92565a18f55cabc4d0caf5734cdf19c958ff88577a53ab83fbaad6b8f4824b520c81c8300e618a62ea955128e3a8be62c45672e65 SHA512 32c8048abdf3987901c841a6302cc762b11dc52a78fc6cf6438dc94824b3ffda70bd513efe361d8444ff40ab3dff551fbe7f7498493044c9d66cfb4d81cfd436 -DIST firefox-78.4.1esr-en-GB.xpi 531212 BLAKE2B 2a04af91dde6bc48a86469aa568ad6b01734753722726332ff893f59f1f128317b3efedc956c2c1332ce9134e254619c860ccaadc0adc2d6dd377e3b771c22f6 SHA512 df42bbd84501104e8b17a43764eed92f80f702f377b9af74cdbd22eedddb88de37451bc48f6df6d9977bee25330eafd2a1c534cdd75aea93d369e4f15576f42d -DIST firefox-78.4.1esr-eo.xpi 558622 BLAKE2B 47cf9719de3f37c3a7a7172d618257465059305ec7bf51fb3cfe26fcf5f6818fbe9de913e00c237fd3a645cffae967d366e25e3fc502a9a54e9f1011c3acf3f8 SHA512 6de0a606e7e4867ccd02044c91615fce7463d057803cfd5d9f61606c7e09e3b75951d63c297589ff1b8f59bfdc751939a4947ea563f64ca7a06be9a13727d274 -DIST firefox-78.4.1esr-es-AR.xpi 568392 BLAKE2B 7dd05402d5278e970979b17fb4c859fc9991953858e019d253d9900071b157e5ecd3210045162cd9446272413612ddf25ed78354433c70cf43e2959a34037597 SHA512 c79235b5a65ab156094f4a850f1cf96fa6c9245a0b6df354a28d01e7b62e699ba38b0c34a9312315107cf9c15388322b3224531801b911ac612a7ac693221fee -DIST firefox-78.4.1esr-es-CL.xpi 567585 BLAKE2B b1459a6141915988f1ad65d6f8799c1f771d6453fdd1c5488635e7607ad9bf1f92cd60115cf0c79169015e4c202a94a33ff0f65cab838a87914faac04d00d076 SHA512 0ad80d786921e26a4437a95b9cd8d315a01178a315df0c0837a2da18b5eee3d198fe78598400fbf3ad77fa30d3129512631946c192632ed8fd72025ddb477c5b -DIST firefox-78.4.1esr-es-ES.xpi 551505 BLAKE2B 349b33831d7d1349f8b229f39eb6412ec903b01de7444106d637250e8569b2d7b8b9ec93fc950875407471f8cc9e882649723e6e0c939b1cf3c5417858b1d8ef SHA512 e282ac35e9e47431ba975ea303f7678b89a6ead3b1276e7c0c6741af9a493f98e5dfcbcb4a1d9b9c00db7e88ecd652e5ee6e3acc36a91e374773193976062560 -DIST firefox-78.4.1esr-es-MX.xpi 569780 BLAKE2B a9b2c9d4130156f44697ee3c222ff71d7a368484da26efb296834a3af11504f1338a008e80857257590de2d97f08fcc373870c367d781a64b6fb37ac063cefdd SHA512 f7ca995a7220979b9da10d49e48170bc17c8ba9f3e086b82a03665386497bf75f103273db049d574f8422360f6b1a09e8fd3c5f2a616c23e4b19fb5156a2d6f3 -DIST firefox-78.4.1esr-et.xpi 535626 BLAKE2B a9be6b4162ff1d73ef03ec4e1b16b534d9e57bbacc15afbfb5c39a0d85596dacbfb2a8ad25632c4e66e26869767b63e13c2eddc1856e52d0faecb4416192851f SHA512 6e015658dbe065198c42b24a3651367f8f43b4fa92f3e3433c9f5ec6f8ec3925b071fdefe2f888f14f6130f4e804e3830aff89f3a290627cc89bbdc6ee915890 -DIST firefox-78.4.1esr-eu.xpi 556809 BLAKE2B cd6d5c48e20f01bfa1376f56c85faab0c12832dc66dfb919f677e2fc80dba9d0a5e1bf87ce961839c0633fd6c7a64afbfef1347188065e07e9abb8cd4772aec0 SHA512 a77472aabe841dfd0ac6356e4566812a8c16ca173a98f4ab6fc53618ccc4f645af9c651e641d4ef604dafbdaa275a45f21ce42b1146d4b8f46109ce3876890eb -DIST firefox-78.4.1esr-fa.xpi 593501 BLAKE2B d697514267f5aa647e813eed42b182228535be17a393c80556b1cdd7f6be8c3cdee2918596011ed1290c60970b1cabf2e666472e288d0dfed41e01000b9e6a2c SHA512 fe9ea5c9dedfb848d83ad0af7b1a0474bd0a90308961c89a699b45a139c1c536de80543a2ade238fef988eeb7dc74ce0071d37b846247afae1abf0ff20a31954 -DIST firefox-78.4.1esr-ff.xpi 531575 BLAKE2B 458a075c8fc2fab5b71e271553d1c25f770ddd81b4fb8983eb00941e126108e5873765c3cc23d76b8895fad7c796305cac0b6b4256b45be40e71acccbc1a559d SHA512 3ed6a88a30dd7f39118a068e39b9e18804b4d168ebf567b7978c1899aeeb7e1b6cac2b6c9c26987b33e9c583bd8e09bced2ce064be832b35e12e832dcaf88921 -DIST firefox-78.4.1esr-fi.xpi 554034 BLAKE2B 5bd76fb180b3bdb86bbbb219c6587232a1391136c8d19b5d74d077f30802c923d795c2058b8ce24d664661a071f81d759fffc947457f4bcc9bb6b371234447e2 SHA512 2f1131876df3a7a01100327863132955efd13329e1b4adb282613d825e0376e6f968151a32991d278118802df5627cf4a09bf9aed6ba7e9d0e131ef1c92606a9 -DIST firefox-78.4.1esr-fr.xpi 580678 BLAKE2B 0efe76a896cb580e12c3d6e18620efe7fd56031d03c3129c75b9f177819999a3c1eb6acfafbae1c7d689892309836467b6f323f3b56f5a2e3955eefa11d2b5f2 SHA512 2e05f021cb58fd52d880e6fd21f23673c22b6f6179ab6f386336c72a43880ab0d349d4ba28e5647800e86d715b0367ae4e041a8ac5906b8a2207d7fd3442847c -DIST firefox-78.4.1esr-fy-NL.xpi 565453 BLAKE2B 090243d8b8cb2206a0cf4344152645c34f00071031abaec1a8fca44a0cc3beae46cc49082dd6fd675942d745146e24576fa9c91a83a0444751e29482641bb356 SHA512 6eccac436dc7ba2fcaa2624740ce25324ea428f4c2c089dc72fd3a00a37984d9e50025753590ddb1004af3330a24ff154bb80a3fb97c4535fce65900fb8b2743 -DIST firefox-78.4.1esr-ga-IE.xpi 514578 BLAKE2B 31b04df297c55f7e1a16063ebc47adb9408272d0aab60a6a9ec6180c6997a74577bf6d38e7c8f3d09cdb2d556015ce746a68579e6c8179400445cbe91767135a SHA512 ba6bd1fe486df9c5d94ac7c94da4a9a08e3a33d10e1c3b713099b585841a151614b47707b5971440f7864b1be7c342f8d9e874e61f68a570c0b144ab88e242bb -DIST firefox-78.4.1esr-gd.xpi 544418 BLAKE2B d3d84cfe0419c01996f1452b7e2ae56e3d91dc1a806a367edc08efd9e76bbc3fe4f9654fa62fbe71a6d680d1db5ada0cc2370493705ee88996055f4c7563fb69 SHA512 380ec39988515ab2e54d8e26d8864dc76af2bcea8d130ec893aea9aad5cd1a5942d962c558723bfcd50b3f3df879c0e7765861fd97c4ca6e08af6128a3c6c38f -DIST firefox-78.4.1esr-gl.xpi 508275 BLAKE2B ebf161c32934bd585606559543d2155f5f742ef3cdc03dad2602d9a874d7f01e01609695ebe18d9c5d0893ce45eafb1278d24c3efad3af781389da8733295fb2 SHA512 c03cd177710c1f051bf125d8b93898ac5528edc4cba4d830ffecfaf877a33e53c5f71a0bd75616b6a0f12d2c88d8caf7e6b415e0a5d0ffdf8f3e0497d0e0e536 -DIST firefox-78.4.1esr-gn.xpi 582152 BLAKE2B f0bf7e6d3743d009186fc5f99c0acb6cac788c4776ec21ffad5ae06089778273a769f5ce151cec5799507174d6f1458a874f08826e0e01d6d921b829d352942a SHA512 30cef51faf477107b5dcce8b06bf7263e5f7cd0f5a0b2beac3fd3294c57d087649ce2c664439dd7f2325568dd9bce89a606a767bbffa1e955e19d70d06fa3b35 -DIST firefox-78.4.1esr-gu-IN.xpi 602913 BLAKE2B c4b45c46eaf31b456a97c75b8b48b07ecdbd1c444806c8a8d7fb4c114f4cbba5390882127e654033582474b3dac2b7489175e13481cf32851dfd2f6390926279 SHA512 adc1d3ab611405a89883bc0aaa09149d06649b119f494ad92913a841eb5a07f36d8612f43c59409b272b960ff3abb2a4c2a4f8e3e1e7bf199e59be3651085d41 -DIST firefox-78.4.1esr-he.xpi 582420 BLAKE2B 542889b7cea65b50e9b5a57c55bfab8e5feec504cc53f0ceb6d008cb4eb25308ffc6b530595bdc4b190e4abc04814d9a420c65074cdbdfb1aa2b292d1a84f326 SHA512 8c162958853d2b1063c0d8621da5c305bdd5edc471744094e6330f29da14957ff707a8145d2da69acd1ae754c58062737d383870a3b0750d503adbdf85ca663e -DIST firefox-78.4.1esr-hi-IN.xpi 622433 BLAKE2B 4c5fe16c4aded7867c6055bcb26a62884673a61758f20d28c13e0ef6875db355e91d61c747880dd8ecce1b16c600d933462756aaddf2edf81a0d7aa282d1b473 SHA512 02c33dcff2a35e4d6af59bb5ed80b072230d3dbe177ff0347b8accdf3edfcefb01d6553869b6e6abcbaec49bbd80866069e02e9349aa6c951ce82c7cf7049180 -DIST firefox-78.4.1esr-hr.xpi 560778 BLAKE2B c6298ac23aa9e8b15a4272eb6b854a7851b620fe0261ff7a9ee797fdd272c2f20ae80129a2c4d144523fb1b5141246ed8687c5edcecb0f49f679e6bf9338ad07 SHA512 9d5f14274e8ed7e6b9cd8f1dce91b0dadb1a191b8dd5b00ab9628118edeb97a64420707e9e8682761e6bc75f89180e9f29c1275f639d07cbf59cc1720ab26c55 -DIST firefox-78.4.1esr-hsb.xpi 585292 BLAKE2B 4d1be9e68adb2bf6e308340d7b65acad872a54cd5786fa928720ce8b10a5bb4bec7ac1a5e1932f55e3638a82979064d612460b375d2b7b02c8470bd5e6ab678b SHA512 a36566bd7c9f6f95934729e63b13695b739b1797f387ae663dcb57c96ef84cc849f122118b77185ccaad59fe2540cca654f75835e0237f647787894c56381ef7 -DIST firefox-78.4.1esr-hu.xpi 588750 BLAKE2B d87921414903174c60c117a1659710806e629508a72b7f62f0d1990d38d21dd27e2a2cc2424545d182bcf2dd4ad1a3e558ce87ebd50bdeed1c6c89c25361d7cc SHA512 0387368285ca81820bb08e6a321a2bc340068fd8666c5653cd01764c30f80d94dce52884f3ca55d84c7c460563c4d8c6a2a284aa65d9be56fa4b2e8779ce3cdb -DIST firefox-78.4.1esr-hy-AM.xpi 649352 BLAKE2B 25a94c0ac7b1f4cb5cee48cd68ce589e7b521ce107c3e4e7325bdd4092ed3748ad4847c9c3c3f3512f3795df20dfeea25ed3e128a444c39eeb26e837721f6322 SHA512 a627068e77a5df8dabfa22ceee6d0ea79ebf77ca306648473f55248e4b46a411675d5c6890fb7d5c4b22d13a5c0fdc08a77495190c62b64dd1e086a80e645a39 -DIST firefox-78.4.1esr-ia.xpi 554118 BLAKE2B faa0b3aa5fbd09d145144bc8da32de8383a2a5b043b9994d58c99a0667494938aa0ee23ac82ab7d4e56ecf1a0f9681afbfdcf5c21b2d0f636d4f43f6c1308036 SHA512 39e9d0399e28450e365a776b46123e44cb91cf8f12a02c1bcb6baeaccd690bec9a101f6c1598be39bc578727e36856f94f5b3f099b9cf52c91a3735ea7512173 -DIST firefox-78.4.1esr-id.xpi 551933 BLAKE2B 6788f1de7b9abe8e9cad3f33c1664fdac4d6af00405b71384d0e7bef431ede46cacde073637556dd10db653358c1f0a649881d535d413a8a5773d6578da45f04 SHA512 bf148e14ba1d83c8a5998bad814875552e2a0f51b28a85a0bdd4cd22c1e5728b2637fdad68bc5ca967b4f40cfedeea3f95059ad2293aeb88a2c3d8de5ced4a66 -DIST firefox-78.4.1esr-is.xpi 527499 BLAKE2B 70971fa713863e917d408afa73e8fe78f06811f59d5f73d0d8009f9a0396411de7d230079de70ade1c23595e5b1a81bd348e38f1ad633e88bfa71e11060a6536 SHA512 dddbc1119d9e539dc132319c6a46b43f0e8429aff9267f143e0ab0e592567faea0a4cbf99a7cda551f7ad69f9fef3c32a69673f62cef6af59056d98fb049fff9 -DIST firefox-78.4.1esr-it.xpi 455019 BLAKE2B 9e8439feed885ac0098449a46582381343e0532558ca5b687e2c9e12af481446591acefd6094f388d34942c207c9e8cae5501835997dbadfa42633b081b8c04b SHA512 ca9485eed28e9ac2f183a0ddb91792ae52777adf9d1b5949fd0f66ca7b0a1b193b2cc1e1495cd0418dfe12b217b487ad86844fdbb5db87eacac7231e83c2782d -DIST firefox-78.4.1esr-ja.xpi 615914 BLAKE2B e92376ec1af11e8948196dc27c2d6b14f20617a219ce4d06d59f9f972ccfb92c54da281404ead4b095df17d6a5832c76f9a87821da66e8b6206d26750536b3b0 SHA512 8b17151041f6348e0b1dbee82b999b5951ef0c10bfbace350944f7729893d533242de4fecf8b972e0cb1468858561129e4459f1ed4cdc414532cba237c0e73aa -DIST firefox-78.4.1esr-ka.xpi 612302 BLAKE2B 75ce1e932eb5122c1d4f34c1064d0cc5bd0e6fa78446bfd6df3265d4fe025fa34cf1caa3e8e5a89e78cc2579d29115c8982c710cca53cfadc22f50e16b8962f8 SHA512 b62b56bcbffd58522f8b33800218e82b7df955c4507a75e3c627fe2e3ce57199eda0d229e8136dc2e3d366981910361162cf504af470aafb4afd0ee3e35cef87 -DIST firefox-78.4.1esr-kab.xpi 574002 BLAKE2B e50fa95bbf52c2061df20b0be619720df8f42bcd8752f5f31f3d3b81fb704d8bd0a9726229a441a42a3041a25c053b998d242495170475d1b5925b0bc9c94cb6 SHA512 d1401c32b5f9f03997df895e376eec0852c011c33245957346b86c1b803f70e11c23984b125ccba94a66a749b106d802a125ffbec2bdd9d414f506436bd273cd -DIST firefox-78.4.1esr-kk.xpi 642145 BLAKE2B a79132a4648e3cf1aca395902aaf2ed5baba75713dd803866f2cbb4959bd0ae80b4b15164407a0ef775e7a7001c8da4fedc73d8a96abc3fc0ec9a9fdd86106c3 SHA512 fd32ebd540e49844307019be21c233867c56c3dc1750260a155f181429f613fc5067cd0f091921d18b869aa76e180f8b7ae19e22a820b92d03bcd6391e8641d3 -DIST firefox-78.4.1esr-km.xpi 567233 BLAKE2B 09029e7efe722f7b667c554f77dc8dc60fc5c44621d23a7a6e2b7929bbd3330406bcb9e7b2f7d6c66074cc7fb4838724e60382e63a2acfc20864827c8c772de1 SHA512 a8f026609e3ed3020338fc7252fd74056ee973dddae8586aaa1719d86652f714d663c28674519f082949b945ee7591f956033263f48d7e6c8c3a3a93a5b962fb -DIST firefox-78.4.1esr-kn.xpi 558808 BLAKE2B 10677595ef47bf60be15b2d0503a21a1cb474a0c701d414573e0c77c2c152cf7235808698dfbe21f7556b607f3d7a9dbd9925acf0b8e229e9dbb392ed5bb0b42 SHA512 3ee47ff127f972d49e0d711af94c62424c44692ac253223f56936c0d5d9af892f618fdfbce66bdc04c0702331a2d4875aba967de1b015ab58cb00149b75e94a4 -DIST firefox-78.4.1esr-ko.xpi 602753 BLAKE2B b4aa8ef7a9556502f8a39ae3978c767a5e52db54b24324f164e1d87bc160005f0f0c82cfc5bf909a8f1664374dfa9a5a37ea8e12e3d92327932e51e3643e600b SHA512 c96b5c5b2dc5645bb64859b25044b54acf486e57c8438fff0aca957ae94038cd38519f870a354165ed7a10951f17b7751b8423aa037eee9486de0e93f60f6abf -DIST firefox-78.4.1esr-lij.xpi 526114 BLAKE2B 05c9abb924d5bf9a998671c6809af4feda97e4f2d63b8d2cd48cdc72dfad20430d4a14d360210fd70f210017ccd35a31ba46069abc11eb0109aaa1f1b717159d SHA512 8dd5f58a01d6df4bce0d84190eac0216ad95e83d8ff164ebc54047b442a144ce6c3a1cf5839aa873db786b4abbd76302972a9d485aafbca3c06e478f05be113a -DIST firefox-78.4.1esr-lt.xpi 579642 BLAKE2B 6f06ef47200975fcbd22b3d5a5e0ecbf0902fbd03a219b7b5d7fe90683e895bde53d5be9b07b72e4de1fe0bbe34a7e920cec5bb71bf828dac5e55d1acae1f99d SHA512 05203ba171f0a7361057979c201e5545225a04327e22b765b92b380df0bd7c927b0c37f2f774ffbe59adc4ec6dc16abdb649e58098a3154fe279a2f883f7313a -DIST firefox-78.4.1esr-lv.xpi 516868 BLAKE2B 66b9f263b090c5d860775fb4442d67991a8502eb824150f6760f86088aa996ad0af2fbebcd637ea229dfa8c0b26a71ded685ec355bdd1712c3543e406724fc75 SHA512 559329307fc7245d30c440da0478ee20d0c00518f1250d71e7e1af80ab0031981f44aa05bcad11fe3a28dc05d2f388cb42b6351766f4ddeeca8799a8973c4515 -DIST firefox-78.4.1esr-mk.xpi 482937 BLAKE2B 521dfe37decb61a7c60634a0e71e6a13fe34a8c7b787159b870301a3aeb766a5b893c869ca8c8b4e82ebec112198d93bb582507e9d19389191807cf0c7f59277 SHA512 87275f8ad46f652738e5fa1c3b4efa6efe4ff3f2131148687f5ce444ba1eb3ecd85f0c2f051ed0c796992e7de7be47d1aaa6ec972701e329c6e6d9ea6a1eef68 -DIST firefox-78.4.1esr-mr.xpi 599915 BLAKE2B a6da4dd16d1be25d87213499917a17aed537d1e465ae62a71a1ef562b21d19167ab6e523a2e023e0ccb88160de907072b0b23444b20f2cc7e20ac573fd3d6536 SHA512 5c610ef324536873abb40adcda6aa66d7bc5601e1662b057b9384c9cc919fbc61f2ac529c954121557de0b27e431aab1fe489ec6658876ebd732d22a88d3a8ad -DIST firefox-78.4.1esr-ms.xpi 500956 BLAKE2B b6f3960ee621469bf55d7e5d5af933770e4656810105f987a0fa59b7d16f09bd97b974aac0d9edd8c68b36aeb1e01e7abe50f04d27fce8448b2868099d62ef8f SHA512 46207a65b95ac692724156b1d73032a0e38719deab6824a74ab2fe071d694b36a2cbf7652e7f52bae613f76ecec402545ee88880f3542a188ca4b073a80bb8b8 -DIST firefox-78.4.1esr-my.xpi 557200 BLAKE2B e5084224461d51e72390852107b3a7e317e91e5bcbff464f33cbb4333945d0e8f6ef3d6479e55280d07d04b755c3297f53dbfdac05554399d4b61a924ea0c237 SHA512 8a2707a039970d1166a574c7f6270583695d9f3b6cda9362b8e9dad83ed6654a56193490e2b2b899aa11537d06f999e010af4b98594ebc639bb1a699c8f22585 -DIST firefox-78.4.1esr-nb-NO.xpi 549572 BLAKE2B f7436bf5008957fca7acf2fefe237ef71f251ac8c61793b7667f4250c740817d405315931162f2f2b088e15b75f04681e8bbe7f9debb95240d3af1bb7f945ba5 SHA512 00c21aac918a40df90ac2272a0e2a3fcd2a66b247016c9f7b83e760ba38a721c7d7ff3bbffed5d6ec712156f060d1b945a41ccfcc74f83df8b10c9f3d0d23aac -DIST firefox-78.4.1esr-ne-NP.xpi 529239 BLAKE2B c6dbab4abd1683b46a096b167ae40569ec360fc59409291932952cebd4be08c8fffa05112de88a5c6f8a08265b6e643d117fb3f8eee0e4c7b4a1d37c63fe7a69 SHA512 cbc8f046489e5466c9a8cf92b93979b0b16b4f5847b449ab45da27dcf7ff6dfc00ca4d01cdceac5d8d310d0d01bef471341aef8c90579c1f7d03117370a031c5 -DIST firefox-78.4.1esr-nl.xpi 558801 BLAKE2B f88de8c29a136042d2fae92bfb52500ae61239ed0b63b83e1d75891fc7618870882917e125f67df71c318a3a38e914caec2d8c8584b6b06864bdc984b38ed629 SHA512 5e82d146f8275a45d286273c9a73dd4dc718712116a95dfe6462df3077ce90f157376e402cd7324b0a6c4bbc691cfe2770f667f7e27be071a272b27851b64776 -DIST firefox-78.4.1esr-nn-NO.xpi 552128 BLAKE2B 578f5cfeb33f2a5a0e8252d235061a2ae80b498bac20c071c377882ca12efa94d59d463161941d905ea063540cd77068a925b35dcf505b35a5f6462b4ac192c2 SHA512 da22dac70eb3dc99c1c0656054bcc0d04011345808383f1de3ef465ac7968c9983cfb43fb07352789bf95cda728de76a283be68d9c0c537f2936694938d68674 -DIST firefox-78.4.1esr-oc.xpi 576264 BLAKE2B 2108ff824f57caa063c7c5478ec74886d80a74aac6d67ca1e913de98e07f52f1d7befef747725ca283629854379708909a6a5353ad35d07f75febe28536c09d4 SHA512 5627311702aee4af706b50c1827940ad546ffed83ccaf39d361aac244c92e445603ce1ccdf89b432ebd2e1c53e775958b8d84243f89f1bf391280f423fa3deb6 -DIST firefox-78.4.1esr-pa-IN.xpi 606188 BLAKE2B 700bb212a35dc7fdfe84673f9ba3b530d5c336f4c8df0c1431ce776c4fe588bdb3b824b2b71ce7350e21bc0f0db1dd693e7dd2e928c3a895f70e683556851fe9 SHA512 140019ef9d579a5f89a4079c3910741578a4f6f7e498c04b58028f06deed5d9dcefbe5c020f66248046e71e7343a35628636b0b85e63394d62667be21872eb38 -DIST firefox-78.4.1esr-pl.xpi 574914 BLAKE2B 8f42d1e1a635dff79c06e661c30d1da1211bab6a6eecf4648e4d04ab34698f738db3fd0c3e7cccfba72b93ee3c44500b80140df97d03bc3f02e6c6237292de4c SHA512 351d6558c482c4f84af73cc79898d8ceb80fdc069b6ce1189b4e8799f7131ccf1872612d9bd2206697c9543068beb643effd1277a466c774eb1dc2f84a91110e -DIST firefox-78.4.1esr-pt-BR.xpi 558032 BLAKE2B a32dd4028345a8f760aef290db90552c8a37d3decd356cd519946f245f407a7a7b083ded110bd6ed22bf559aea2366cb88ab9938b41c10ba0753ad5e40285894 SHA512 10a97dae9d415af94794235ac88dd108a75a8b3138de1441f1043a0737144455d21ac69d822ba0af0f8112f8ed83d18b2b79b30cb32ea742d0ce2f493c7075b9 -DIST firefox-78.4.1esr-pt-PT.xpi 565633 BLAKE2B 2681f5e7690ef790201f140b8b796f1349c20bacfb06be162408458e977a85ebfdece5c6daec9020f2aa5aebe5ee3e62cf705f477cd9edba81a462fb3b88991e SHA512 7886d05eb4f23fbcf7371d916cf10f9a7b217b477fc4bcbe985a324a876c973298b31343670f9e016dc28c25b018f4e139f8ee305b181e63070330077278c79c -DIST firefox-78.4.1esr-rm.xpi 557926 BLAKE2B 2ccae2445e2c36401e88704416ff6b787dbd36f7e5f9513837831ee880aca5af7a6a067ca53dcd3c295fbe75fdd98e7cf04051e4ae67b33ecf2bf4d0127233aa SHA512 5174c6c918de2c0b7c608023a4883cd0f22be65727abfc1bd19040fc1500a000527f2085c8f8b35b5f0f350e1be57d0584553ff3a803abf55dbd825df69fdd71 -DIST firefox-78.4.1esr-ro.xpi 569395 BLAKE2B e01a41b96dca3ac6788ba01725ccb63bb9e39f7e46239a6ed9a62f5fb9284cbf09330a8a3170b6c07acbc652825937bbbd63d8821c49e440c25af20dfc815630 SHA512 67a6dd482dddf5c015ad0db3c9f6b745b5602d9e3ebb140a327a64d5873741465c2860e0f658a3ca26f03f4841727823821174d0872343bb2519ccd5c2e71faa -DIST firefox-78.4.1esr-ru.xpi 650695 BLAKE2B 30dc61bc56a46ffbdb0a2f2e1723eb0caff215dc1b195e4dce9d138d1a52850172c15d11b876c0567dfe38c527c46c556fc42710f5dc50013764a45dd5be0fe7 SHA512 29b903fa8ce09d86b3517afece67f9ffb3f33c1bd0475eadf77340830788a89226934b0ab32cbb7bbef7f6efaf47bfc7b7f2097f89498f44763626bb0167b8ab -DIST firefox-78.4.1esr-si.xpi 534194 BLAKE2B 5bd69cd2399d20263525c6075e49cc492662e62435b3b04ddc7fc131543fce5b7b1d1f5c9fafc1098da8e0a7925fdc2320befc62c2616a905283fbe07707749c SHA512 241fac5ddce9c098b47e61ae8a2dea0a975daa9032f9ecfa370d0a17268545d4dd55677c4d010f8ef9cfc68bece6e8d542492c403896390639c631adf814e0c3 -DIST firefox-78.4.1esr-sk.xpi 578525 BLAKE2B b2d74bbae306a00bb8446758c1ac40479837ea551552eede86bc08dcfb4023628b8fa7587eab28148744b2e2468ff73a63cfdbd137ce4f4e9407d55997f869db SHA512 8c284d84867f09836e5582ace7c905e04a248d028c4ee3d2a3bfd2183e4969a7c453322a9829c35da69e9b860b2a0976cc4e6be77f2eeb90b631cb1c65677c6e -DIST firefox-78.4.1esr-sl.xpi 563033 BLAKE2B fa032aac291bbc53c1067ae409a9dcb1f32c5512fc01b905fc3d80ee59fdeee51fe61602539665f2f0e9ec43c987fd7b900a3e1afac00b1f92c7b5ce6fa90202 SHA512 e9a121d239469bf09caefcf842618ceff37215bdb300b53f9f5fa2e181f44979410c55550c7a7f22a42fb0411dfeb1b71272c5cf9b4b41613e21f80eebc17099 -DIST firefox-78.4.1esr-son.xpi 454241 BLAKE2B f4ba354db7215759e2a61e551cb8af017cc4546308ac74af37c5397573f344f3d998fb28dadf8f778609cda74ad64b3a7944a696c63810eed772e58230507c1a SHA512 d611fefeee4c561ca0c96112795b5f74543faa5eef748056f4b8e0cad778d79da6ff01589f4366dfa633777f12a696f3ae941cb961056179fe80f1558a9b825f -DIST firefox-78.4.1esr-sq.xpi 580002 BLAKE2B 004af64e23e7657098b1bb74b03fa3be3537976fe40ef8eee87cb298b129607d2f4f482eb4f352d89b1ce9e5d9fcc0ebd8172a821a225bdced49a0efc25f26b7 SHA512 442d805d372abe0e47a6204859e8bd91cab926a0b98a69930e4b6b9cc2905f49db39a035a4c8d8ecb6d85e3b5b72c92bd2522137f85edca6523343b2cf735f12 -DIST firefox-78.4.1esr-sr.xpi 604547 BLAKE2B 68f37b7963a5580e2a52fece6c7bf07e7ee38a73d60a843c38813ce436a497d89026c00ae88213392d71861857473010fae64e56c6bdca658e9838100fcf7a56 SHA512 78bd9056e8ceb7bbdc02dec8549ca3060733c16356069346280c1bf82de368a9f96f1b0622f1f083e41bcf92a4385aeeca6e90cf6cad787c384b469ec7122343 -DIST firefox-78.4.1esr-sv-SE.xpi 561875 BLAKE2B 8b54d8852ddca0440e4d552c0f8ee41496148d46bcf24e8b43eb99d44db960dd260e7a81fd7b1681b3a266f48813c2208be6620d079766d63b7f945b5fd87de8 SHA512 f4702b76f68d3de965ca6e3d95704a8fb3a4532f2340ed4bf55b62dd55523def679cdacc4a16eda3f7870e1a6afc5987a3a1bc135e3c0ff96c8e35c17f5c4973 -DIST firefox-78.4.1esr-ta.xpi 572349 BLAKE2B a06c31e58ab36244b9e214a206dde66804077f120e55d189d4aa8527b57d8df3aeb1a34d19bba8062c9bfb51956a4f5c07a3f60554151eb701cc280721704cf9 SHA512 3998ffd29d8f9bbb89496a5713d90babbca82124198579556df2433187ad6e302797e87b8c3570880bb8b0334d5f6da8a0d121b9be9255275e870ec3253b2d45 -DIST firefox-78.4.1esr-te.xpi 591657 BLAKE2B 5bd309bc52a849cb7c0b40eba3ab534f1938c9113f9d32c25b2eb0ad5b9033ecfd90cea8608cdacd02101e779a44e7c1a0327bf7f3411411e559b651efddf022 SHA512 a58159ca7ac1887bbf8aa6eb63d7abad82c1a6fbd3ce5f1750115e49e1517edeca332b5d7210d2a4ffba7c736c6c1ec9afad4ee6da2178885a5dd7aef4ee127a -DIST firefox-78.4.1esr-th.xpi 628308 BLAKE2B 811a3cf9d98b04d71354648eca84f86c56e2112ff3020c7bf5f3c6024322381471d84a67b4ec61344b2f0ac26d9c57913354dd15cb66d315155c8038fc0367d7 SHA512 05b33bda2c08df0185728c79d3ad01ea8d2712ba3415e91defb780f94c250359eb5febd87b1ffa24fc192320c2dfb96c41e595dbe85defd8a2347ca079c5350e -DIST firefox-78.4.1esr-tl.xpi 552298 BLAKE2B 6b6d3599b3b5d5401443b881407f5c4cb3d379155cd74c8fdf6f80de7a353cedc6bac333a4f12c854f974cf7191bedb821bb2c1f73d360353c80467743398375 SHA512 92a4dd6a9572dbed34c85490db118ead8bf14338314c419d6fa5162319f4b44f23afa233fbc195e42efc350fbd901781311ae3bc6adc69a8bfc307a9e68c512a -DIST firefox-78.4.1esr-tr.xpi 576356 BLAKE2B 372a1ea56ef074d0c15739e6253210bcfe95a0272f32210f6cd9971ab5b6a760b43a7bd3ac1c873f3c5b0e31f1eed886c199132a7a0be34a5e9297921cb7e721 SHA512 82d1b0be39b196f3c55267d3b853c0f08483a8154ece667e665a9581480a7dc17767a643c0e2a0eb728ba8b05c78f26282170cfe54d53cf59ffb93aa5f16ea7a -DIST firefox-78.4.1esr-trs.xpi 540197 BLAKE2B 66e19b1d069987d75240cb57d0807c1651b92602913c826048cc4c452708291eeba4c5952f30c9a35a4fb1252d51e06079ba9667fad64f523447c3c369cf31e3 SHA512 d3e76a11fddb02238649428224dc998c5e140d96c4e54fc5777103857a46c8632d0f65b642e02cea21960d8aa5daded0e40e307f20d24badc15ff9fd8c672277 -DIST firefox-78.4.1esr-uk.xpi 646863 BLAKE2B 3c7835a626d0533d69fed3bf47c3b27766ad8323997fee6779f115e064c9931564d99fdb5366c0bf20efd1db176e84cee291b0f52ba959f7dda970cede7edd40 SHA512 76f9ac565d288d15cf67179241d960ac1c655f3a04e75b0d08f3a6c1b9af9f19b41616ecda7bdc767a55d873b07c89d844d86257a714b9704afd25f832eb7c94 -DIST firefox-78.4.1esr-ur.xpi 608136 BLAKE2B 019bf0b8e056081b1296c64657cbabb7c658d5473b780bedccd320e39993038f16bb430c82e311cd2d57f3c18f55d109a0029d134947c1b8807fa1da37610b43 SHA512 59838b8a76a1d80e54f629934dd5f8de1f6363ae222d44a1cbd1f8ebce4d9fca38f3992975b095a4339022a83701f5392853e13e08aa507340a1dcd387115f38 -DIST firefox-78.4.1esr-uz.xpi 521138 BLAKE2B ca55f4624df3f19646b919fb7c24edf3ae8a79850a490faa174c523601913838470c470caad0780ccfc05caebc42aea05f2972338c9c3277977aad660b97a5a7 SHA512 c4bce6f31ad0d5defc0addfde6917388c46637035bf9150334f57ecf174ecd5171fbb08bff71e5094604896fe829fbf99908577756233826b6855e7606269b7a -DIST firefox-78.4.1esr-vi.xpi 596835 BLAKE2B 85558c438c348c870b16c54d0aca7c8f6648463040c61298161a93e84cecd6f4302ffd851753b65d90a78ae10069d23683b11ebcb8b85e5f8c305192b495dc4f SHA512 69d053eaf2294c8583dd79c55a8f72c4fb628eba0def6a5fe8806e7394cf4e26b467d98003b3a499ad784c3f7986463c1ad24eab1ec718e590d7e0e994255622 -DIST firefox-78.4.1esr-xh.xpi 458906 BLAKE2B f02bd178123b30d731233ce95582b28cd7bf6143ff2a0957115d5b04cfcf8dfbb92727093d38a74dbcece2fa71783de03415dc662dbf2f3af9b6119759cd0588 SHA512 77f1b40120dbb105ca5a6a9dbf35b97501d7ff56dcf7e6fcceac8fb4f6e553f36a3b06606f5e22cc0ef9520bef0d818aa28a87224d033f0f66805f38a97e57bd -DIST firefox-78.4.1esr-zh-CN.xpi 600187 BLAKE2B 51460ea46512ab017a2b645d304365fb860b196f88f6b8502632ac656c9cef60fbfcbdec1e72af3a538262023720da0d99176a0f3627db78d752a7817c9c451a SHA512 13c4957e13160882fa07218dcd3f81a73e869a0d03af201a8f4293b6265302925e50de5a7ef11b510b158b921a02947fa82c6e075185028ae7a0b67e6d0aea90 -DIST firefox-78.4.1esr-zh-TW.xpi 599284 BLAKE2B b765121ce6abba620914bba3e6491c39df629bfd5478985986d7b42483aca7d5bcfc72f9df3ae9830a84434d8ac2ca13baa38ee88703140864e4bb139fb98402 SHA512 502e07a7a48bcce03cbb55fd619a4e4bb3a5c771f93571ca4a4514d16bdf28bc228de04509666a8d22bd2f870c5243c38408078493b1007ee943d3830dae44cf -DIST firefox-78.4.1esr.source.tar.xz 334673424 BLAKE2B 3ba8bf545c4c2b92914bf7f63b539ba61dc2ee6c14fb8995a6d75adb4bd11988f1d47d2c64639cbecf7a4b01b99085e63af4eb3afc7a27047f03048ffa9c2c2d SHA512 287096ad67e86b307554475c3b5d1003a325d6d13987bfbec2ec79aa0f8004dce1614ab62585ba5cf153545618906ab640cd4657d5a910085afb3d8ceb46e8de DIST firefox-78.5.0esr-ach.xpi 460247 BLAKE2B d1ffbc64eba48fb54458c03ea2d10eb4e56643ce7f3e65cee541de2bddece240cadedbb770e0f973df8ae56644470d74f263412005628a0fe78f3a11ec77dd59 SHA512 aa5793fcdd086f1aea5453f781430b1430e11d7f53d8f70ad4e285239659931fc9c418268996a43bfe14eaf61141cfbab9c1750148712b8345a2c13ba3f7aff7 DIST firefox-78.5.0esr-af.xpi 428318 BLAKE2B 6d7c39f7a706fac1e8ab5d6def3167962277ae9caa03d0a7a75d1b50bfd47fd262da796a4e523a6bd927cf6c5b880a1623b67894d63ef93d21856fdc66acbfbd SHA512 e85d067efed7bcc73a509f4e80cd777d151433606b4a62f67c671a17d34bbe4a7abb811e67847d68cb09339ad521035adaf80da9763397d0243c0cde9001d237 DIST firefox-78.5.0esr-an.xpi 508339 BLAKE2B 4f1a008d793155243254e1cbaa80301763d72889579a01bde62916151bc8d2381c12521271ee9696197add77df28f531edc381ca2d8be925d79bc0d4c97f26a9 SHA512 e8195cd18c94b70b607214941c5bccc6c3866089fb7d74d916a4fbd046aa1c5d48c6d6637f91d88666517fb1aee2904865b1b247ed18842f94787c0be516e2dc @@ -190,105 +94,7 @@ DIST firefox-78.5.0esr-xh.xpi 427806 BLAKE2B 676da7d81426b40c2649b225733df74ff8d DIST firefox-78.5.0esr-zh-CN.xpi 564767 BLAKE2B b5c3e773c3bc58ba80180bd018467df1552b8cf355ca33d96fd4153e169acbdb64dd22f3b4b7449046a02835f406046d2847b161f6220edca6c087cc9e5a8c25 SHA512 489052281501ba642270d65ece7b6c4e5bf2e7ca5101b9dca4c657000e8affd06d838b7ca06d6d399b35d401d288b44d18da2661d3a2c96a04214fd8bf4a4bde DIST firefox-78.5.0esr-zh-TW.xpi 564724 BLAKE2B d55faedb630ecc2629d1e2b1adcfd4cde51d119fd4599d25ef0800e5875efea65db5102fec36366b6531791f16d0f94e8e0dee0bdc18868ad9bf5208471d65c3 SHA512 95e4fa378cf07927b13a9b0e9d37d6320c4cba26f26df6dfab65fcfe1ddd21d38cb5a387663c8c96b6b3e2015999af4d355c0b672848f874101c998abd117047 DIST firefox-78.5.0esr.source.tar.xz 333995288 BLAKE2B 35140afb6b4d15052858e7864753ca74099edb24ed5e459f1f48114f0946f5e007486b5561ba9a545566033d71a69f0e6163dd17204cab717c441323972f089e SHA512 0d16013342b6e8d67adb5c111177ea4796db4fb593da8aa254d0d95bdf33fad798c2dbb235d44db4177c32dd2d7b3ac26b938b476342753ee8d6c83d968d0281 -DIST firefox-78esr-patches-04.tar.xz 171504 BLAKE2B d51e55c255d1f5cfa0c7c030b1ea50cb54951bed3bc21b21f5cb3b1e4b8b2ad406b3d12db2baabd4a90e3c88a38f187f277e7a4afe441ea6cf82c48f84bb0ac5 SHA512 6f00ec898fafb34d7c7e0ff2a6fb5c1cbf1205458845e14eb39c131125c5bf6b2418fea1050bb72449ec40e18fd775fc844437ce0290281d66961de40a53235a DIST firefox-78esr-patches-06.tar.xz 36764 BLAKE2B bba340f1c275cd9f140864599bf8b8b69aab44a3b66352182f403bc5edb6e375af5da8dbbffb0a0fa45aec2150857f23b01d103d8f1e8d16ad3ff88f81075022 SHA512 638a11e6b46e6023c0c0a2904032c9726cd1d143c2e0671ca762341d2bb7cb95d5c309bd09e7b80cc883420f612cdf5e7ddf26896dfe8df894bfa393435f962a -DIST firefox-82-patches-03.tar.xz 33700 BLAKE2B 0ef9bda2136be7a6489021be7bd873d4bbd14f85e6994bbb2ac254f2f92d83a471eee4fb6dc398c90cca24414e3b4087c0045a992ebc9ebd0106ec495d263308 SHA512 3cc1948ff7915aaa3f4a86e547978932e46a02514bb2a0081fd0deecea71627959f50062865d7e0b18175e01fa13be87652d46ea6d72fb305616e0dc3451dc9f -DIST firefox-82.0.3-ach.xpi 460148 BLAKE2B 2f9f4dbd2d37ed1ed8006b7db099a08d1e3ce34c23b8e6c79b204a8dd02ad7d6bbcfebdd852707dbcf95c46ad42b5d3036721374289861e882b289dfdc22fcd2 SHA512 dce49b86aad428e054a129b402d183ccb4b82a3b146f0d3f074051421b2fda54f7f54dca45e50cc09f5ad14263caefc536b41aed46154c313131ca5f55f99564 -DIST firefox-82.0.3-af.xpi 430109 BLAKE2B 52f3a2a0859efb31f328e8e3fff58bd44e0e2c2a42568ab6a4b68745e74c3b94f43bc2571e2ef05c4492379b33c53ebcccc9012e69d4add5016200fe28a1a290 SHA512 79509b066a5fe749bcf235030284a89ef855f8de423593cde0fe8d28d3dfdf638e0400e1af086d6734705f963437d5bafe080b5fd3b49fa51cb52a801c6c7b62 -DIST firefox-82.0.3-an.xpi 510106 BLAKE2B 50773f6dd874c6e1504c6959f1a0338629f02d64287d8f316e3802e88e8ae84cd0d0a41e298718ac6b3c09ead9864958df3686080b91dcb46739db203ed2385c SHA512 834d46a04317f42dce0b95e48ece9519d455ac494f852e819ec6eb250ec4bbb5d4210cf2a9c9534529a0476155ca8d6ee90b6ea210b20cc11dbbe9f4999ea420 -DIST firefox-82.0.3-ar.xpi 558780 BLAKE2B 246dfedc80ff5d3c73cd073da67e96292ac0ab193c1a1cf4e1d3794473504b03a5256634db31794355b9585662f225f00081db1404757e45a98157d7c7535ac9 SHA512 efe6ac60cb57cf7af524c4cdf621a1de66053c8aad94105702f25f16627d0d3084a05fb3fdfb133e16310a24e9b0271327ceacf8e1dce9efc3cf7067e4e07f44 -DIST firefox-82.0.3-ast.xpi 458399 BLAKE2B 0829acd403304063a44318c5f17851d8263e091139a3468955ff1d485f880bb5bd61db0d1f5dcb89ec556de1589ad0b6ed8b38f1dc00072f126c802d33c0e2ba SHA512 85d86c5d09d744302562a5eefe206cb70a02561151db77f2723da8947230cbe38ec4b38b36882387df0e8300b5c375567421f638c21a8539d907862aa66f1eee -DIST firefox-82.0.3-az.xpi 494307 BLAKE2B 3dc950aee9a36f40c9634117a092d0e3b6b436576f91833718a56d25e137097475c1478693c78b6c9f0a1cb58cbbed4000e8962dc50b267ca29c258c1a9d26d8 SHA512 4e268133d1750f94114510132dcab4e312dd6a89058890c11cfe68188f075b21c71f91a1bbef10e3deefc2c9174e7981822e51e494b58d50467d923c1b7ae097 -DIST firefox-82.0.3-be.xpi 597435 BLAKE2B 57cc4a25cb336cf166d281a689a70bdd875f842c37572acd517b67230fbec41a4036537c402048c02e1e224924206f04ea97cfcd26bd82e99f0dd652b1694742 SHA512 7f0303bcec56c38a5f3448b4ff4ceb1c621f80b67879d26d4d355f1295623b6f5c208abf7fe3f97a38e74739b00083887b7032b751284dcf64ebef461544b9df -DIST firefox-82.0.3-bg.xpi 556545 BLAKE2B 330821786a6acaa2bdcc73ea0d643f78b760a8a25bd0d929d31e27c2a4826556eb374f0bfcdd1025079288c53916e4a90c2b52d80c2a703ca96c8cf0e3791f2c SHA512 f7335e25713eb4bdf6cac5848cbc0b8c0656df2ad0217b6db00cbcf77463f5e2daa4fbfd7c1337412efb5db72f88c8c484a2a0dc152f75bd0a3e8259e6e7046c -DIST firefox-82.0.3-bn.xpi 574254 BLAKE2B c6e2eb712236d7d864fd035405df8235f5e98042b839327d5a2e5d8634ef4908dbed7780f091f84d0e50f966239ad6645ff7896340e16e904f09ee39488db3d4 SHA512 940376604552cb76bd34ba40742668d57b0ff8c57a87283d5f8846979520a2211de0918787831f7b7912e01852a1cc15ef2e2754bcf7da6e564721bb0c3c37a0 -DIST firefox-82.0.3-br.xpi 508921 BLAKE2B 71d101740617226330ff8b993ad1eb03bceac91df3024cdee065693f96000a1d3ab8775f22290799f45ce77e18521265e3b76638844477b6b102daebb1ef2f00 SHA512 396f6ffd6ad84d7b0acafa9e77969b4ff848d5df0bb5b1b3978f412cb9967767201177fab28cedabc2f077e1a8e551363c75514b21113efe10f05cc4ff4269bf -DIST firefox-82.0.3-bs.xpi 466545 BLAKE2B c5c4cbbaff837cb9b57a8d30c1eb5c906db5c2f5f4832e3549e3fc5f383641846307a6fd36c78219600ece0d98d559a28290257c23860b8d6db4e820512605b7 SHA512 5141d66a133ff92bc2b8608c1d11d9f8f3c11adc57a709d87ef3f2fc395614b199ffe1839d175ca98efab4873771e74f02f3e720f8dbd46b727cc55dfdbc426c -DIST firefox-82.0.3-ca-valencia.xpi 518882 BLAKE2B 21d7c9a685baab56e6351df095188f015b3c2ddc27053e24254fdf1563462ae7d61d063d0dd09be38a90ea8fc20ffb9b14ac38c2e1dde212a7504319f095a739 SHA512 df9be434b6357349dca4733ce9d6767242ec9260dbd5da6825ecf51e1310cfd1dae8d01100ddb2aa9249e2e276a57c54d86634e00e970e6ff5f6901df5fa4ca2 -DIST firefox-82.0.3-ca.xpi 515056 BLAKE2B 099f26b1df9fbc2175312d67603ac1cfc1bb8ebbd90c87d304151593fd8222720103161e2ef752906205a330091afc269bb980567e17005e7af0a01fa5444b2c SHA512 f46f7960d75384f85c1017169e0b836334f9c3ef0bf1d3d4f6c3289d3c31e61aef14a72c5604b28fed4f69a0f55295ce956ae08c26893d48d54c033ea81bc597 -DIST firefox-82.0.3-cak.xpi 544753 BLAKE2B bca6385cdaa1a82c23985b544263eb38001ed90c71ca3504ae2c331b6b21a50bce46c9088e2788883e65fd42c73099cc4657907af7b48680b7f5ad4c722bad8e SHA512 21f6d1a14487d1c9d280121e870f37facd41732cdbbca4fb78f68cffbd25d6557b8a65f13541208b5211d95145bb20c45bb6944c9620eb49d2aff067bcd2064b -DIST firefox-82.0.3-cs.xpi 541199 BLAKE2B c0184e39175a0e850869114c8d42a7978d57b6262d28f2608866924cf3d3456dd1bf431e7cf419ed44d9d8d22a7c5d86d73b003cf95c0ce56c56b7e655fc9b5d SHA512 6818b03481e9878962512d9671a26c5f5a42b4cf20ad1c25c8d3bfdd4495bbfeed72208938188b9fe48b78bfbe1ff3be6dea77f222d1154a2f9cb3de62951761 -DIST firefox-82.0.3-cy.xpi 524808 BLAKE2B 9182ded6b8ea71b4f4eeece3240d854e12d59681cdb0a05313a6598be81c88390be4e4e2bf862563779b86265732b1efb8a060c661e28f2b8a4ec226fc3bb6c8 SHA512 ffd1792417a9b25e882d0c5b4e6a8431c0fd7fdcf223f240614ffbb98dc7930a27f0159c16ec62af6d6d500f6d1a2c9a62fa7b6b467b5965dc1f48a0d9b69c8b -DIST firefox-82.0.3-da.xpi 516301 BLAKE2B 6256f6e0be1bf56206b3dd7e12bf315a9f0dd05d66aa61a186174ac1115aa570d5beadb288402708239c525da289ff73c2fd7a3272a4e99d2c2379fa49a2ec63 SHA512 98560c3fc4a75900c63467d98f117ed3a00ac97d4a70a941ee139531c540492dde0392e21634a7f4e2272eb9e98a5286fafa180f1a364eab492f65cfd16c3ef0 -DIST firefox-82.0.3-de.xpi 537103 BLAKE2B f42bc6fd13c94742917b6d2af47f8d30de2e47dd0efc9f02de17ce4f0dc2bd5dba98556c8f51dddfed1af233231dd4a01778ed61fd6760546f1e7ad28f1489c5 SHA512 80b67219cd7a7defc42f6a25540fc664d7f834fba66f777ed7ca64f52ce86b94cec1e06c907950b00bf9e87cb625eec92a5604911a6575d23c216d3286d38a99 -DIST firefox-82.0.3-dsb.xpi 547682 BLAKE2B a7389f5101e69d8496c0c90fdc0d6fec118222b623dbec7774ee9217479df850ba0f0901938afd5c653211dae2f840052c93d4ebe406a7c27014c900f40741c2 SHA512 34507ee5dc3de27f00fe0d3c5f47f5efacc3cdd2c619f436165a1275bbe344710c2d95ec8bb2e8746c446f55d5a3a22ceaffc2d668a760423ec5ad31b0f82345 -DIST firefox-82.0.3-el.xpi 617994 BLAKE2B a496bf61a6e8be78a99ce2935150bf0b0776570ee145a34eaa71a141285a69f897e9200c7a9e010bb82aa4b62af1698573946a66089813411f353da823b5fd46 SHA512 443a6bac8dbf9b7447cf4791099fa641fa32f750c832e037996ff73d3b9226cf5436a35a30d077a6afa733161141c1e9b4652df2c5fd2128a3c85c91e94a03a5 -DIST firefox-82.0.3-en-CA.xpi 495425 BLAKE2B a403092c681da215a852ba29625b59028b55dfee3b64019039495c589b16a8f6c1f3369d1becccef39bb68be428120f657def0b19b6eb98936019ff2f266c134 SHA512 d658ab51225a29b3e9a16d590d7d048b76dd6a5c108acf4572a3ffda9b29938de313f650db23d2121a361a3356ad71a6178849ca6770d0abcf045b6490cdc85f -DIST firefox-82.0.3-en-GB.xpi 495343 BLAKE2B 5119fb1e801251ea466c3e892ad2735acea76d9e9211711f7d25d80e992eddb867cf6b45f056fbeb33b66a27fa1ff972297292d071ce08e6549caea4300d84be SHA512 d23a2c774f74c207e2e3d9a6caecce0f2c0737972b980d91073085140da37b57749ee8dc6d3e0a7f3907ab2b8068a946031c09e1803534804bf2374dd0c0c57d -DIST firefox-82.0.3-eo.xpi 518013 BLAKE2B d822bd9b2b46230f93e0b0a46bd3414425638b0cc3f4e014f12e661bcbf389169ef7c7edc05bea062d2a1a3c7de29749d2a067dc39e813a17cfa994f5db2001a SHA512 081a6a9a1dcd1e375952b1b005aec93aec44a391be3012196f1fb2e4212fda779b67218e684cc139a6968bb5b0a90ed1b0b58462724fce6cf19da69d36703210 -DIST firefox-82.0.3-es-AR.xpi 529939 BLAKE2B b8fc25cd5edd71cb31b793bb03d56328e47f47353700c7e092fa6eee448d468585de60163a7527ba61871d438f5459ff509ba897383d9773b4a10b94bc044424 SHA512 c430783c6cd3c816a5e74d9c7d7ca97188471b08bc2cb0589ed2dfa0f0dc071d9c391e35bd62cd564e6d02c77171ea7a5da3367b3bdfdd8257823a4eb63fdfce -DIST firefox-82.0.3-es-CL.xpi 528864 BLAKE2B 5e224f6e39ad0dcaf2360e002a8eafa6c10586cd46a985b0da38bcf154dac77b0712cb3ffbad137d88f80f8d44ac838d82851c67597dcaed53ea5a4a34a04be0 SHA512 71725ffc1452b390772443c094543d191be284fb9f4859c187a244b11a856f1c97c9c05e471fd75a383465d0aaa047ec057d016fcf8ed13589fa991b7991472d -DIST firefox-82.0.3-es-ES.xpi 519173 BLAKE2B 201a266b869256294384fb747e93fff1faa0ce96d23a70e74379b9f9975eb620e86b5967ddd81eb3dda3f6433c2b52a552f99281dea76314657e00cefa854785 SHA512 9e659bfecb1b3035daae7da2dce0a2a5c5dc23ec934601e40735f080cfa74de738b458e8d75c45a1bd230d508109cd0234e2766722d9ea968af489e312bd8f60 -DIST firefox-82.0.3-es-MX.xpi 530749 BLAKE2B f65465cc1835dbffb9246db07f368c4c3ed65cbba5ca1cfab01a28f2eef9a560c7805119221e5e4b59376a11e72b76b0619c2c55c803880cb3040446d7a4477a SHA512 340e315662911bb15866c6173d5f42bb5f268c8402aab6511e9274f401c552fba42e43be09f45c405041e10e39b793edba62f50a5ae6443298962989ab82587e -DIST firefox-82.0.3-et.xpi 487801 BLAKE2B 8b2e6490506ba57eb540d12e01a416a71366e7cdc4351a3d5ce9ff13ad62cf66a72dd9184621b3f0514c91f096f28aaf7dc75cf55238c6d4a75f689d2c441401 SHA512 58d7506d176280d0c559bd0a756594010afc0a885708d2ab7e390ea7e4a6745b0b49d731be50e123c952786a4da819c123952bbf943d26e56027fd867391aa9f -DIST firefox-82.0.3-eu.xpi 507209 BLAKE2B 7ffd468bc6c87879db5a8a894cbfe30d4f808c421544e8f574e68cb822b5fa6ed027ba814f622ab86173756a81f189d6df5fa008f706e4f86ec7ef3a4948228a SHA512 dbf4e98cc434185b2a461df237f0217864b3de20a9cf852f0d013e380239bc7e28ec9157fc8a6e74a1cb5aa853dab85d3ed5bd2f8d2f3c90a466965a42592cc3 -DIST firefox-82.0.3-fa.xpi 540636 BLAKE2B 38256dff45754de3b4a0bfa3fe01b5c64c675dcfaeac7040b5fc6af51a5aa84e7d0da14d7b8e7049428479311d88986f28ad76fff6b04cf7fe6012e75af546ae SHA512 a07283e049bd3cf03885321c730140942c4d234153a810962cd1828e4bf67e0e8d555430561d1e4ad8b9c3cc9f7ddd2d64e6f8bca3765c424603e4e17bcbc80a -DIST firefox-82.0.3-ff.xpi 484119 BLAKE2B ed0921119754285444e9cd8ac9878d635a99d04a04087edbc51dff7e68d02854692e50aae338648536598de84fbd0d698e8eaa2c436d4afd2c762d6638f0788d SHA512 e4301039bff525d1eaf75d530e333643aa8f8a771bfe18d0bbedb13d988c9c20aad0c28b0d9bf012837ae49c218decc24d9c1e7bb03183802f85d23bbeef5a86 -DIST firefox-82.0.3-fi.xpi 515704 BLAKE2B 66d3601226817d5d38d707b437fc576e5d0001932b0a4098dbc30e2f715e5d54d98f209c142c8ee2905213a453011efa3a3688c91dd0d2fbedad743eb88967b7 SHA512 47efec1963e17a67ee4caba7032a37df5e2629f4c33c1a936bbdf93b780dfb6ff00bbca7241b845d2b8e00df08c050f68ca27885d4cc84dd1e171fba4521d5ad -DIST firefox-82.0.3-fr.xpi 539740 BLAKE2B 8b0a693d0044943efa58bb7980ed2b2a1414c1a3b732b18cb68dea3457648ea6c717595c879faa7d2736782b88f922fcfc458457f4bb67b4c63234a6dbebc8f2 SHA512 66c2f2f35e480f32e0da3b7e550475848a4f780618d1f07acf0b8b220551917100ccad7f6fb265019debd67940b120d7e6b9b995efab37729bc0b175c545e99f -DIST firefox-82.0.3-fy-NL.xpi 526570 BLAKE2B b5e95aba6f277fe7c91b016f3d9932e5765601781d07f26a23c74d024a1152f1e60cf4e16b94ab790fa6f3c2d3edb1468bc882234658cd0afebffc72bb70275f SHA512 24c44033d1f79596e38a876d9d3b75e7767e78024dd80302e76e10170bb380e129f3f2fc4f52df7cb65fd4597bbe1504b184a32cdddc6036d6de2e7757102971 -DIST firefox-82.0.3-ga-IE.xpi 469071 BLAKE2B cda19a6af873ef4e3ac5d0c68a1ad077ab0737cba22d2686a0cd6f1c11a5f8695de8d20f94f91ffdd39cb9a0ef14bf5c5121b58b3b94f882d4485e29a9644d85 SHA512 ffcdca8ea8fbec652ed3081e13ce3cb5da1688e37ad50f89ba5b37b0e8ccaff36bad48589c53f179daf5d8e1d9344aea36b116e6750f45d30961168369b5e214 -DIST firefox-82.0.3-gd.xpi 494276 BLAKE2B e9c88bd1ed10941a767974ca9e425fd898cb32f2d48953fe52533938919207734f3aa0f03c27431e2515ed1bcee10f06f582699c65029729f020cd471fe374e7 SHA512 f791184022e1691fbf8a2142511e4c7d6e457791f3f0b6844bb3a99b845d9a55635832ca9168c734435e222a5a3ad7e96877c59db57b8ae95bb3c70e01f4ba0e -DIST firefox-82.0.3-gl.xpi 523765 BLAKE2B 16c3ce4d6e2520219114a3c8b6063577f3f3c09a771e0ca020162b0640aa2af83711cc3650d7ff72c00a2cf543162cbfb8ae5a1dde557482323318663a8337c4 SHA512 51480e2f8b3fd71fc68c43c5f52a5e3ef69293d700b717b9dbdb99420a98a91ffd40f3f681817020929f493a3675aff1510cb8eaaf120f231892545694b2226d -DIST firefox-82.0.3-gn.xpi 540663 BLAKE2B 8a3c9a5695f86a1e52ffacacc3d8df4e73e3aebd5eb74998d7f4fee434ce47abd26044768dbeae190fad2ced575d9ec2832458cabdc8c09c216d38017e5f1761 SHA512 b85d921002239fc4e4b2184f56e996d936897ddfeca9f2ce7f2750848273d3745383850059d251e70a3a8661f5b29d1c12e794e3ca3793b3e1119f9cbc70724c -DIST firefox-82.0.3-gu-IN.xpi 543086 BLAKE2B 9c879aae5853e9eeb94ef9c2387523db980f09b3aeb036bf43926ec684cab2a840f13cbb05e1977f0d16966854925fde3abaf66e344db39ca22c9b73beff8239 SHA512 8a57788d050b1804341de936eafc4b92d59e2c16aefe87e18cf1f8957c2dfe85d89dabf5057fe6ee2ff5245c35021754f392dbbc8b25b320f152742bd2c98287 -DIST firefox-82.0.3-he.xpi 540938 BLAKE2B 445e5dc34b2833b5d6e9a9382440e6e3338c6493fa2ff653900836eb3a52620cfed4c9895f62c85546e6d73e5463cffe0ca2da61fd2c4b58de46005881aa0203 SHA512 ab1f1c1660bc05ff4a05ae8ddc90d5b74ec4d41fc594bffea34bafe137794adbcc1febcc8a64bc2dd974581cfd9715ed86ed69aad234482a62e031dcd002dac4 -DIST firefox-82.0.3-hi-IN.xpi 568419 BLAKE2B e8a0e420b5ad236d8c55a7a55c3dadc5be5f78642ca198f8ecba410b9f3158d7400464f6040b176dad5d6b00ccc4e46bd7f529f400a80268c1518dd3cfd1a026 SHA512 985517f3b861bee3d95d8ab40fcabb54e9aa174137d9c9f620868d47af8faafbe730a030bb1ce845cc043d60dec4869af3be585ba9d44b53a4668d2ff6991200 -DIST firefox-82.0.3-hr.xpi 521176 BLAKE2B 47f7c1127de70dec0758ae3939bdce1357f46128dca5a8f400c4432bfdbcf66b4fcbbb54044e51550b037daa61b193a948fbeb23ba1b5d40058a1b7743b7e7fb SHA512 6349a11102a60907e713eb9b33240d7d152b31fd88592021258d62d928fc45c9820cb7c7a20d9ecec3e8627439e1ba0678de1e4538fea06310ec71e3ecf4d8f6 -DIST firefox-82.0.3-hsb.xpi 544284 BLAKE2B 7e622670321ef92e8603e1f11a428c9d80de3168d9f145c6403def826fd0cedb2d358ae68e0f6f6c8af01b4a1b68412ca263e04c4cc34e7bde3719dbf8b6b1d7 SHA512 67b476ff3fa9e90d148ad70df9f5405bdc26d9845d61830f37dc52a8a7c2bb7f0c48eee69ae791eb1d1dc3d610682d595acbd81c7eba08f3cc0f882ee9ab6168 -DIST firefox-82.0.3-hu.xpi 548599 BLAKE2B d76c602fce5455165b006cfd45256eb99e549d73210861173526f269ae4c8c1582661849d8b13befa04445edf4ec874fc505e1bc907720960be488bab2ce9800 SHA512 100fb7b6b975f9d066e63fee4207d5bc2366cefe0262360e75046f873101f419d8955b5d542a32c8f2e13c2316354dcf0d5bfdaf34c92e500fb7e99abc3ff211 -DIST firefox-82.0.3-hy-AM.xpi 589713 BLAKE2B fbdbe95acccb191c7206f0a6e0af670c6ad8fc27da0557e3ce863c2c863e60f40c4fb08dcb5503affa89e2e92ecff6473b43ff313645efdd4e7eceab4a35bf87 SHA512 0ffcbf0711d1b127b044d1798dd4e9d25585f3860798e1592a32bdfd23c9aeec437dfe6c91d837fd53453b7741ad12e1a3e5e7d1eeeef4646216f0db47db208d -DIST firefox-82.0.3-ia.xpi 516184 BLAKE2B 58eafb8dfc127fdd50e5212f6f7d4cbd1bc8696e8b6b140e57b87cceb98a96d434acdb8ce4f593cab49a966a345fcf7c7a60385e90a71243e9eb3ee9cff6df78 SHA512 651aa6988f57569f145cd8b7e1f6f590aef76c824e09f5fe4a12f88e9274c75faac7865a64c5b0f68503dd7eeda7cf1189d5a1924f4554c810ff1a8075318179 -DIST firefox-82.0.3-id.xpi 508789 BLAKE2B 5257776fcc6021a531b4a6858c05f78eaea5aa6a982ef4d9342ffaf0f382dbfc3b95abdd578d16627bc4a967ce7aa00d677d2c548d4ec4221087982440f4b495 SHA512 42d123a6fcd1cc2dd61e13b99ca1836a20692fc8fcb98008208787c32f9a88a530156ee604259488db38dde060ef46487f8ea8f3921422404fa735d45111bdb0 -DIST firefox-82.0.3-is.xpi 479636 BLAKE2B ea8e8643718a259308a359cc159c01caf824b6c5b94b78352abd662d9107d42b3f8842a540396512c968bb2aece78e227219a6dc4dad4fdeb4046ddecce4984e SHA512 8c865bccac9bade9be5f9a192a0852fde2a40020f8434055380286b323a6b700640f993cb1c3f941b9819c2d2f5ead716450a66b8d17b6fa2e4c357d5c678e2f -DIST firefox-82.0.3-it.xpi 444598 BLAKE2B dfc8fc668ce7f47099f1e7e267580c606b5b35c772ee22aa2e5861c8d5ffccb0216901ecb7372716991c94bedb56eb112f67d183ea57e0866bbc86bd240d8f4d SHA512 a552c0b6c486f3447ca8338f56d7ce57766741b9dd6dc1e84f9d93fd1f46b47f12a398a818d8ce54406e9aa19407266582546859ea37362d3d71d2f0351ce3ef -DIST firefox-82.0.3-ja.xpi 573549 BLAKE2B 480226278ccb89544e38ba261ff64a153f7b12da9d0d909435c3c76db0af162d32a8b35ebf54c3fdaa80c7978728eb56a4c75936a2e928cc0bc03e1bebbf32af SHA512 82f9e3ce8a0c8109c3ff6dacda1dc79f3f71dbd8df19bf1ef6a88c1fc39c885c9e3c281d02e8c2814ec3d538220f8e69497207c852a88c3e71ef78bd363422c7 -DIST firefox-82.0.3-ka.xpi 573562 BLAKE2B 920778e0eb28945237e414feb5a9ecdc996cd3f286494dacbf57151beebf97370949228b9ec4887e726a496aced7cc136ef578c559c7ec74d697aab17ffff6b0 SHA512 b2597312f47991688a4ecdabb9cea873438af1182eff792cc5733bb6d42fb071edc4e4a7eb764edd0132f8ee85746f1990d474e343d3360ca9358c6f67850c03 -DIST firefox-82.0.3-kab.xpi 534409 BLAKE2B 8506cc25288172d8432556988c1c0bc157f96f29619ed2e93080c938945c63c1e9d5030f3612ad64a016b04aad33519a01ea594574077d97460c3336c66c00f8 SHA512 a7feee5242bc22b2a99d621f43603f3c64563240ccb72bf843cae591be5cdf6696275809fb79706c131967c6535d3c0f1a911cd626e0df448931485635941c1b -DIST firefox-82.0.3-kk.xpi 591695 BLAKE2B e0f513e36c7c1f299e6631b36e81d17e677537772ab6b7c90af46e0d44771636b2856f847afaa0fc30685d234c449619d1c20282133c8348f0edf101a5915425 SHA512 b3856f5b8749ef7551e5aede3b17926e7b9b455a9a333a9ac847199c2f4308ab79844f1b7ef9666ab5c5fad3b5841e3f10cbe275ba744d3ebeaf0ad3dabe6d6b -DIST firefox-82.0.3-km.xpi 527006 BLAKE2B 979771d11c95cb96783af85ae8579af7ba32ff8046291b041464aedf5329d9b0abd84b90ee4abd89274cbc81b19d0494e0e6043769ea6dfcf920c0b67cd9da07 SHA512 c9c76a3bd461153b7cd83f7df050354d3ec428cafd14903b3c4c806c4903f205b8642b0932768b16976bd8893839920076626be407ede95e0e8dde3ef6cb402f -DIST firefox-82.0.3-kn.xpi 507973 BLAKE2B d28579416116c32f6c59417db722af7bc1fefc43052444b9ffe2efa474d0e3476e27f8cb96f4fc0648c345ac22fbfae68fb2c631e67e457484fe307565a11b1b SHA512 a160da5445ed85f217a988a45625aecb2ef3e0a15ad7ca49465f5449d4865975582a649f11f51987aa062723989e50a79cbdbd05ab3c8c3b99e3b72eddfa8675 -DIST firefox-82.0.3-ko.xpi 560882 BLAKE2B 615ff1a10e7ee10cf8e37d589a697932375d4ef6f4e3b4130d94be83f3b5a877c0e8ca50a77d1938045385b9b26fd7287ca99c2f74141bfb8b8e50ef9c602faa SHA512 2da0bf4aedacbd6ea41498a7a95d1177b5ff2c86b66fe5b9d6ade5a65bab1cd6196f16b3deea4b4e4bd8a3c62a8681e1ce28865eeeb439ed2209e8d47e24cbf6 -DIST firefox-82.0.3-lij.xpi 477687 BLAKE2B 842dd88e58321577f31e1def7ba4794448ec66eb12595281959cef51316a5df6f10a123ef375fe02b1b3ccd1d7c6df0d2a854cc34be53e6d476dc0aed5bb57a0 SHA512 7deffad7cf7c989847ad28c2ea64d9cbe0765e4831569ea4068c523b79dde0d74629e7accd131c01c7d8539b1c845ef3fa853398c3a306d2e3d6296bedb32b04 -DIST firefox-82.0.3-lt.xpi 538353 BLAKE2B bb13a9a86cbcc7131f77f4748b19b6fe2f3564ea388406040e79449df0d19e88fb5d195864f95111ef5b272a69f4e9804c352243bfc41ae296b25e60846f48f0 SHA512 02a884188fefaa668baa555b159a3c427288c244a622413c75bde4f4f08ebcb3a7158d1fc5498e47497f8428eea6ffe520233289d6f48c8fb686db5d2261b50e -DIST firefox-82.0.3-lv.xpi 469970 BLAKE2B 1cd7da60613190fcef58087495a3b810adc5949aa5370bd6c8094420d981ff12411c4541af8933a9d630564c198b80beabc857d542a2a7f6616019681b8b4514 SHA512 a6c430838fa06d0a2455fb3085a3b92dccb970b2b546bbe8f364bedd005dc362a3d8a3cb92acb83dab00c327fc700da9394dfe2a7b1f47dcc04ae689a75a3fe9 -DIST firefox-82.0.3-mk.xpi 460998 BLAKE2B 8e0cc542a0fbe6975bc774c580edbffa8dd23281f8631c1d340ed89894164c7148fe104c1ed6cd6c9492767819b1b8f0aab63972431334bc3a1a452167b5d376 SHA512 baa32cde51678d4059af0ac088a2e8de0e2de3a678ab1516af4701922ec6d50e0de74fc9e624c83ec36d95df6b147ac0c4d4fee25c366b09ce253000ac24b720 -DIST firefox-82.0.3-mr.xpi 543116 BLAKE2B 3d9e84a747bd34f2389053011a961b6eb780ac6cbbfdc3654cbfec9361167804f34c0e633849461274e645293eb033a61078db4fb2cba52f2500cc3cad715a2a SHA512 6a0861786e768ee87acbc7e22ba62102da78d9d082071e80ea55f2c6d8f662489eacfeaf45d08058cac914a34d7efd963791cd62c75c1e47ca79228c09d8ba7b -DIST firefox-82.0.3-ms.xpi 455699 BLAKE2B 745391cb3a7804fb3bf4a9326f06eedef219c2a6e587fdf396129a7e4c5553ab8c76a05f8c4dcf5b7d61706d9dfd65d3a95034bebd02e354ad18f1d474452504 SHA512 e639d37be088bafc0e03bda4268ce431619b0f614df8e0f7a805b681b0f5c4c17bbf5b9787255e517f2efb38b72a8105a07ab036502ce36c7e78915b6686f47b -DIST firefox-82.0.3-my.xpi 527633 BLAKE2B 5a380278d8d5ecb933f3c005a403bba860c200d147b44294851b899cd8980dde0d8f198ab2ce8b5c891113c83fdcbd610328e8243b7bb7b979b0b0e06f76fdc6 SHA512 02d31fc5da926373f9e27923892f7d7abba8b26a429fa1274cfe55471ac0ab0b198343ebe4b761042dc32997272da996a815a221b8c7dc122df7c4c6abadf3e2 -DIST firefox-82.0.3-nb-NO.xpi 513310 BLAKE2B 84cedd0f07c11b37c8ec09b713c58d2208c63c63715c4090d7185b25c8d4ae939a392460385355a64c157aba2483a6b52acac9478175aba611e9873b8c842a43 SHA512 f4f859126dd362ad7b5f3f134f209398a0ca98935ac36fa769559eb1805b4f6837a9d38480dfd9e00009600dd12f258cf9380130227d90bfbe7dd8f58b383532 -DIST firefox-82.0.3-ne-NP.xpi 484756 BLAKE2B e5aab01db2a7aee67b3866976177a9159a57d07b5ceb0ace151838af59a343b4fc6aaa09eceb247b1305e889cb8e832bd861698d098545d8799d28ad97a12f61 SHA512 8c1ce62556ccc111da0d2a2112c9b578cdf842d7571f99331d4a7f92fa9362537d155f277f44a93de3a81f5cf87e44a63804dc427dfdeafb0893293ff8eccd30 -DIST firefox-82.0.3-nl.xpi 520522 BLAKE2B 098878b847bf575707439d4d528d18dfdc90ae135f7c013d36ed91586e98708d8690dedc9f80f6fc3c67199577d68f7cfeeffd23cf6e5a389fa3fb10a26db388 SHA512 5448670d86d43c47af5201d665e874efd7f8a67512813edc40a1ddb28883cbeaf56fc14e23f48b1d141e8979a6b10fca22f1686b08f75c039ba93035b5c71597 -DIST firefox-82.0.3-nn-NO.xpi 515819 BLAKE2B 53ba4052513f237d962c88acacb95c0d212a7889d06422e4b1bf7ec830807d85e9343de3844bce67bd3fc0db9ca2c5cd10385188faf37dd77871faee9730136b SHA512 416166acaec6ddcebb0b5985b35b433e7ec12d79a80f2618221a4bf2440b2853561c261ca3aa549f24f13e0eb3fde46f1ca7a9bbf3a8dfc90e57c0701b0f813f -DIST firefox-82.0.3-oc.xpi 536290 BLAKE2B 2317dedf8b084579ee6bc80db9150a3fc56a9a2ed4dad58df49e8492ef68454013bbecbf4c2e985f8a87843894f277a0ebf80d295f0a350b0cc19760c9613699 SHA512 834a3a5f07c66a3c373e00f829daa5fa841f54dbb4a168f681ab18cbe240f6bdf3f68c237f3c6a5d977feddea7a92073077eef5324de87ca1fb7f68e69370c1c -DIST firefox-82.0.3-pa-IN.xpi 579207 BLAKE2B 0b817b12c907a08b0ead239ab9dc2682c2caeb7ad3240bd036e477dc9993e5ce484faaae76e48ce56d159aa84c89fc7a92c3db811d2ab5dadf4d88fb0fc6d287 SHA512 915b5cf88dac9fbaa672481df763629f8ee3c5eea1be654cb134cab7748ae3c3a0c25b78660f673dfef9fd1315f430df1a8f0483652dfc42ce78fb79e9e45c88 -DIST firefox-82.0.3-pl.xpi 539497 BLAKE2B b7052b3194dc7e3c9fb7090fb9789669ba2a640bbabf8a3f1323aef8dbedac4197549ee6be155beb5fb3aaf199aa0ab411a81efac22bb57c4def16030d8e0023 SHA512 a054e6606e99e0cf6f702f47e26220c43a1ec25fc2b64d57db694c3205eddc4dd4715a1b6b09e844ab2ce848ec1f72f9c64b75e3400210c412702ac7694bf436 -DIST firefox-82.0.3-pt-BR.xpi 521439 BLAKE2B a04007b5673d786e9560ad15f8c48a04397faaed645cb1110a9af1d61ca90400665f301421d8eb3981b604924dc00932c982e2ed7db8d4b931bdba3633f5531c SHA512 e066b7b1e946f1d2808e3feb08d54db04f4d615de886ee8e627ea80b2520c8e45ec0216e9c9f7301051736c9753e384c0b85e31a5d94fa7a9c479ca4877e42c6 -DIST firefox-82.0.3-pt-PT.xpi 529552 BLAKE2B a7807a4a5465dd1dc3f3470297c2d78189ab2da29abf2c96ede3f566edf776273ef4a7c898cbd403f6b0547ce66f9eee11b107f6ce70a2616d2c5ff3e0436a3e SHA512 919f1509f9ac76975f1b3603b9ac7ca5f36e073cb77aa263c2af621a64363546f5ffe5f4ba65f27450cd0786bc2aefaa4fcee238956411bae59cf12730c16f96 -DIST firefox-82.0.3-rm.xpi 518937 BLAKE2B fba7ae0d33d58226652257735624570417e7c962f41f68234ddf6d4251e9515ebbc33aea25237b529aff06cc4fd35d2a30138cab3ba890f0b9823834a0cd0fc4 SHA512 d3e5b5c00df91a6c3f304f91b5c9b9d93f8cbb7cdf29d18859647909afe2430d038b601f58939bc06e06e52deb0248b2e278790a384035fa4f581dcad11ceadb -DIST firefox-82.0.3-ro.xpi 534208 BLAKE2B ee5a7157ab994f6e5fe3dc888043ec82e1cbafc7779ef23e3f52d7c727fa3bc3a33de8fe46c2371a854f10d191fb1ae8277a2ba08b80215abc990a5e6a6f7074 SHA512 f8c3eb7f819d293e99cd8b1065999c887d7f500513f0b49d8238c4689e2305e8045d4b262aa106c15e0bcb1c6dbfbaaa7af86754c6705fd28faac444d5af0cfb -DIST firefox-82.0.3-ru.xpi 607607 BLAKE2B 297975d403b04f7c71897e08dd4b8777e7a948042a6082aa09133b178bf239f4ae61d5f96eda0d8687346935601f480ba696c2bc7d05f640af60b70b38257170 SHA512 ce118798a575e86aab4d738c863db1ec827c9ccc35bc6b9efd79e9309b2c1f244a95e547da566bc57aa91b8ca65ca7de852ae53af38c32a2f4b79be70efbafec -DIST firefox-82.0.3-si.xpi 494078 BLAKE2B 83fab4c302d8163ecaae6bf427e418e4290b444a1ccbf6bf6ff6257f9a0c44c2e27f5e61b1b69f48db2994815b954471c66d318a9502fcfa6388aefeef66113a SHA512 fc8e634395f4d53ffa9bc7405eda72fd42cded7ff605fa0928601695131d635173a7644d93a7fce054b27c3a9647e7fc9f207a4ab803cc18c3c88e961fd98e1b -DIST firefox-82.0.3-sk.xpi 535676 BLAKE2B 4c98c048c208e8064ed47db3f11d6a87af4a4a886046c7797b08915c84e37db41e1b5b82532d32c808d0496e47adb446a6f6b2822f91626876aa8a492ed96421 SHA512 4c29c1e8af6a509554dd559060b0ef68455859deea7e19eb6ee96442f6095eb56b62ee941dd7863f7ddca43ed383086e438f2a59537bd6d3f8aa0cb93c682937 -DIST firefox-82.0.3-sl.xpi 519656 BLAKE2B 4f26dac8eaf504504adad3c7d805d59ecfa6eaeaca88b46b5283046aa56754e6aa8bd6da87ee847c80d009b4d89cfbe7505bf5c7e3f962cbb4eb0761f80d1213 SHA512 3c1738f10258b4bf15a5b7e7230e9f8b297bc910bae0edee3215f6a8c2b0dcacf9a26621fec92a20b376eb265accfa39fb1a389d5d5f253f150dec6a42a039a2 -DIST firefox-82.0.3-son.xpi 426746 BLAKE2B a1fbe1372b58047ae69e483791027570b2054d5e5f422a98dcf5d3b340ebb6a330de8e432ca54e02eb45017484ed3d184fcb147f3a7884235761aa11db849ecd SHA512 f81a11807d64af6583d2c641231e6ff8a026952f5bf556b7c644f649acd709ae1c8f83d19b438b3f7dbe3678adbf8400a33b46bc841ca33a2c2319b0db4786b8 -DIST firefox-82.0.3-sq.xpi 535361 BLAKE2B b5c417f569dd4331235f8303c963eb1ceb80fbe43e452d3ac75a9b4c0ef2921251fda1f74aa5b76f40c9046f7afcf3bb560a41777f8e69ef79ff367702afe346 SHA512 d78ab84eaabdfa984331cd05743ba7044a80e6e37b1a171eba9ec41e3c2e714fb2a41a4cc6bd7b3225a75598bb7158c7e51ffa76cd5eb1fff99e84b9b7f46f6a -DIST firefox-82.0.3-sr.xpi 562526 BLAKE2B 982e5594ca58f8584b6df781bf4f4bf8344cb3b12ce5dc4d2ec2752554f4ef08464461ea26c7540737329885474f39939247335b1178611805758cbe112002ac SHA512 ebc789cb4203f08e1daf735e3a7f5738631753589ae8a1a61af8ec56df488bb71c98ee2b23bd00f9db53344db63a6843b6b7ad2e1c69e9efd2670386ba204c74 -DIST firefox-82.0.3-sv-SE.xpi 524098 BLAKE2B a8dd5d81273d4892e5a0b6986f21b5af7f19a18d257330165f0da4406f52b95917ed1f57ed3085af5c869e9bcbc46c4413ec9971629ca21270d6b4d422b9cb11 SHA512 87c1abec18dde3910ca0f9568d2b0f2605b230125a8bceab0fc9b2fb3665af4c10e87908e785d472e9224e5130ea040f95304ab22a6ba73f6a80835e0ac39a6f -DIST firefox-82.0.3-ta.xpi 522863 BLAKE2B 33e30c6c38e4b6061366365636fc17bce59cda8e3b95c4fdcaec124d1aa266213b45f2ae8b0bfe3859b378b92fbed1b89e80f593ed47d5335b03a40380480e4b SHA512 c154fd8113478675828bc2df16efb0bc5dd52318936624a3f577de73958d64a729b70e86b05e0cfec5e76b79411734c2f531d5465b87afb9ec57cef1be024b0e -DIST firefox-82.0.3-te.xpi 559039 BLAKE2B 0a50efced658dd8db318c5847b5636e59e8442d0a76076b9c05bab4111c72bb498a03cc21e88e6258f3d56d1c91b5d7432ebbfe345859eb2f54b0c2ad73d99e0 SHA512 2f0b708e6846bc48d102d21994867c1073c4e47c0b349a710cece5c6e6a919559eee7b6be1bf93cccb3515bb21b89abba9e4ee1d30cd1f0f92b3d6d35d92157a -DIST firefox-82.0.3-th.xpi 587886 BLAKE2B ff01f3539a6cc49ecf0c36963fe271cf2a5a3ad57aabac68113e169510f6deaf6c50a158bfc654ac1f7ca5f774e60cdd4befddbebcbd0df8c388dec48eb0aebd SHA512 f6bd09b5e4dd19709f75ab8c8cd37ad4b4cbf67f2c1484e369d07544c12d5b7781b3cf5d5e64e09f85b2be11f75a83c0c0159e7c0c3dae4acd86fbd8172731d5 -DIST firefox-82.0.3-tl.xpi 519934 BLAKE2B a1b6edd46778ca22696ebee4a9e7c46f46ed658d12259f71452e967b12531b0c19af9bbcde7d02a9c5fbdcfe47e0729ef81afd083c24d2538b20220ef2eb3288 SHA512 3ee1e9e36980a09cc61975f5bd5630293dac70fecf1c69b04c34ceeb992b6334f9dcc821be10082eeee283d02f1fb2948bc448eb11e9db7379f3aaf811cab028 -DIST firefox-82.0.3-tr.xpi 532923 BLAKE2B 96f62eeb21c3b27aa6385d9ce78ede1c99d307a87ae051d3797872eb4bde4854249061b4b13a53e1119da513c0069cc39d2b1746b8654b3b587c123532a25c48 SHA512 5944f5d1a03733b23e81153e069c1286a621ffa8cde0d884d23e2e8ace8a41eb935a0a78a9bda6ca4941000d540e17b415be9cbdeb42c09150ba4cd8a90e9143 -DIST firefox-82.0.3-trs.xpi 501730 BLAKE2B a61bbccc023f4d7998655f4e61f41f620efccf4b53b77d963386c8ea494a6027469b622ad50615e677842c7ebf362120224b728f61196079f0645a1cc9152061 SHA512 6cbe94b32094400f710b14837bfdbe370d52f51355d2e9719b9dabec32f877a3c7edc0cd069351c5f8c2bccb531a7e75f6662d681e05c481a9efefff14889f76 -DIST firefox-82.0.3-uk.xpi 601679 BLAKE2B df216a0a44e355bd617bc978ec4b225ac52418bb1bd870c2677b8eac3df77468ceb076d816a95f47c2b85583f2c4891f181d4bd50d4c161b833e10188303de53 SHA512 b22bd4367173330bafe2a38e2898c80b51f164b3bcafc61cda6be44fc2ab9fd77d154ee453c2dfcb7c7bb9f253fcec90baca8ad3e42b83f086636836792208b3 -DIST firefox-82.0.3-ur.xpi 559770 BLAKE2B 031d86f1bab92c374976ab36480bf782a0e55509261173bb1c836e18d907ae434fbf3e6274af02e6b742dbb13cab226ca5996aa122d0fec629bc8c93879c32ac SHA512 8ada4de712a2b9fce019d178581048b333ae7900230628f96c85d7729011c8ce724b135ff88af845fa3a58f2a38a6337340f225648765339141854a63109ff78 -DIST firefox-82.0.3-uz.xpi 479460 BLAKE2B 522baf4d7a53b16a8f17ef4a2c2745424fe0d02c1cb169e1e952299454306b8b9c430644bc8a188d610490427996a42898ad3dcb8d5edc16124730c5d86c6b33 SHA512 9f8afd24b48365481ff56aba5fccd2cc78d471faa6e0373c3fd9ff18efcec95ffc638b442a6cfb06d60eeb2749036046ea11016bbfefb0abbc4ee93ecb6e7662 -DIST firefox-82.0.3-vi.xpi 557262 BLAKE2B 12caf1c97653a27eb74d952759f74f5cb6105760be37d8b61af1635e522f687c4f909f3ea412b1e9d26bc4703ddabb5f5c7ca54b193429e677b75f0cbc1b3ece SHA512 92fbd34775fbec94e600ca9b59cc93ee87321ffc260a20dea2a1184839f89ae9ac9b8c3cae6f8a58655d61c7a7381fc44c764e1bd1fccd111fd82f77b0cc177c -DIST firefox-82.0.3-xh.xpi 428931 BLAKE2B ca141f337911c2a479515ad1b96def2605818a25e7e5afac9240a209b2635b03fe69bf809c72df7354745ed07c6948fd9957238deff9274e9ae1ec505278dc95 SHA512 89484cdca5480d6966b248343efa93896b79135b71d28582d2a46ccc893d3905e2f8c0b4435b1c88353c25468f24a8778f882854d24ebe8e9738bb49c6b80480 -DIST firefox-82.0.3-zh-CN.xpi 558338 BLAKE2B ad4e28793f2a2fc1613c2d52e4597c507a82769dbb13a08adcd81076e05c9f7febf9c6bb9cfb2fdbc9b9a6b69293c4f987356b706b3409f6b687b9d5129f618b SHA512 7e0ced73e10240574f051d318e55259cb858eeffb9a42aab00d04a994d51c3016dfaae10abf6f68c033527ce67d567145e542e817a4d6cee18f6cc73f07e7939 -DIST firefox-82.0.3-zh-TW.xpi 558251 BLAKE2B 92ef5bd5c05d3632f423c23f1f10e0ff731153a7bdd733c1409b708fd58ef60465a904d90265a1947644f34b80aecffa45f7480e8272e1e078c678113e992198 SHA512 2e838ded7a6d9f4cd9859d24f4c345f75c26654852171d0a9386474d7776c8c3120b44460cacd3be4f5c8363e41a56815e32d38ff88e21e9e0c2b445074a43ed -DIST firefox-82.0.3.source.tar.xz 341480104 BLAKE2B ad5bf8322ac6c54afb0a56c4ac801db8e914d2d16da781c9023f4ebd062aa123d2cfa05c7b26fac35e983ea4728ff705ef003b80e1f5948c5e6383437d2b8427 SHA512 b12c35cd1aa223e481be8b79ddb6aa7949531f9dc519bb1caa492ea32c7cbf495c1dd7382692a3428c75955f911f3b8905906e77d246d9f4a0ba12bcd3155d24 DIST firefox-83-patches-02.tar.xz 122028 BLAKE2B 510c5e7ea1f93be1b35a99969a005e11bf3ebe3c58c2058977eaa841e9811197c8bed6cd3c64bf075a6ff387c7353bff43a25bacbe0c965df6075d5aee1e9f5a SHA512 e04792a687698574afe0f97c2656dacf871864a3c3827fb44c521e3eaa69df0163d4a6320d2eca1d744f4ac2b32d3bcbe148adba40c0d23930f08c54e314c9c8 DIST firefox-83.0-ach.xpi 463987 BLAKE2B 2173c637ae155ec474d18250adf8cd67ff7732ed9ecc7533004296934f82dfdd2f83f5f59dbd6b095b519bf5d3caf888f5e07913004a27771a13376ac080978d SHA512 cb1644bb1451311923bcbbbafe727fe8b35c33cf9643dceac603e802b82a2684451f9005ef6bfdd1ddebde01548926eb62dcd511e1f8a960248ea5b74f5f72e0 DIST firefox-83.0-af.xpi 431349 BLAKE2B b4f912e706b464728e779bfc3cbdb7304bd763c55347140c32bdf309b3b4869ebc4bc1433f5cf5c970774f69aabddc4b5f5fce568dc32c50c4aaf90e9d07e13f SHA512 076e9084ae00dda0cfde5b09cf2dae7ed8994543c8de645a70b2f116d01da9e024159114d4d6ef21ce134b7d7cd16b95678121b41300ec5174a36112d41da4ed diff --git a/www-client/firefox/firefox-78.4.1.ebuild b/www-client/firefox/firefox-78.4.1.ebuild deleted file mode 100644 index 366747a47d11..000000000000 --- a/www-client/firefox/firefox-78.4.1.ebuild +++ /dev/null @@ -1,1120 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -FIREFOX_PATCHSET="firefox-78esr-patches-04.tar.xz" - -LLVM_MAX_SLOT=11 - -PYTHON_COMPAT=( python3_{7..9} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -WANT_AUTOCONF="2.1" - -VIRTUALX_REQUIRED="pgo" - -MOZ_ESR=yes - -MOZ_PV=${PV} -MOZ_PV_SUFFIX= -if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then - MOZ_PV_SUFFIX=${BASH_REMATCH[1]} - - # Convert the ebuild version to the upstream Mozilla version - MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI - MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI - MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI -fi - -if [[ -n ${MOZ_ESR} ]] ; then - # ESR releases have slightly different version numbers - MOZ_PV="${MOZ_PV}esr" -fi - -MOZ_PN="${PN%-bin}" -MOZ_P="${MOZ_PN}-${MOZ_PV}" -MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" -MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" - -inherit autotools check-reqs desktop flag-o-matic gnome2-utils llvm \ - multiprocessing pax-utils python-any-r1 toolchain-funcs \ - virtualx xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -if [[ ${PV} == *_rc* ]] ; then - MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/candidates/${MOZ_PV}-candidates/build${PV##*_rc}" -fi - -PATCH_URIS=( - https://dev.gentoo.org/~{axs,polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET} -) - -SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz - ${PATCH_URIS[@]}" - -DESCRIPTION="Firefox Web Browser" -HOMEPAGE="https://www.mozilla.com/firefox" - -KEYWORDS="amd64 arm64 ~ppc64 x86" - -SLOT="0/esr$(ver_cut 1)" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -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" - -REQUIRED_USE="screencast? ( wayland )" - -BDEPEND="${PYTHON_DEPS} - app-arch/unzip - app-arch/zip - >=dev-util/cbindgen-0.14.3 - >=net-libs/nodejs-10.19.0 - virtual/pkgconfig - >=virtual/rust-1.41.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 ) - )" - -CDEPEND=" - >=dev-libs/nss-3.53.1 - >=dev-libs/nspr-4.25 - 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 )" - -RDEPEND="${CDEPEND} - jack? ( virtual/jack ) - openh264? ( media-libs/openh264:*[plugin] ) - pulseaudio? ( - || ( - media-sound/pulseaudio - >=media-sound/apulse-0.1.12-r4 - ) - ) - selinux? ( sec-policy/selinux-mozilla )" - -DEPEND="${CDEPEND} - 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 )" - -S="${WORKDIR}/${PN}-${PV%_*}" - -# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or -# overridden in the enviromnent (advanced hackers only) -if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then - MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) -fi - -llvm_check_deps() { - if ! has_version -b "sys-devel/clang:${LLVM_SLOT}" ; then - ewarn "sys-devel/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - if use clang ; then - if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then - ewarn "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - if use pgo ; then - if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then - ewarn "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - fi - fi - - einfo "Using LLVM slot ${LLVM_SLOT} to build" >&2 -} - -MOZ_LANGS=( - ach af an ar ast az be bg bn br bs ca-valencia ca cak cs cy - da de dsb el en-CA en-GB en-US eo es-AR es-CL es-ES es-MX et eu - fa ff fi fr fy-NL ga-IE gd gl gn gu-IN he hi-IN hr hsb hu hy-AM - ia id is it ja ka kab kk km kn ko lij lt lv mk mr ms my - nb-NO ne-NP nl nn-NO oc pa-IN pl pt-BR pt-PT rm ro ru - si sk sl son sq sr sv-SE ta te th tl tr trs uk ur uz vi - xh zh-CN zh-TW -) - -mozilla_set_globals() { - # https://bugs.gentoo.org/587334 - local MOZ_TOO_REGIONALIZED_FOR_L10N=( - fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE - ) - - local lang xflag - for lang in "${MOZ_LANGS[@]}" ; do - # en and en_US are handled internally - if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then - continue - fi - - # strip region subtag if $lang is in the list - if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then - xflag=${lang%%-*} - else - xflag=${lang} - fi - - SRC_URI+=" l10n_${xflag/[_@]/-}? (" - SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" - SRC_URI+=" )" - IUSE+=" l10n_${xflag/[_@]/-}" - done -} -mozilla_set_globals - -moz_clear_vendor_checksums() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -ne 1 ]] ; then - die "${FUNCNAME} requires exact one argument" - fi - - einfo "Clearing cargo checksums for ${1} ..." - - sed -i \ - -e 's/\("files":{\)[^}]*/\1/' \ - "${S}"/third_party/rust/${1}/.cargo-checksum.json \ - || die -} - -moz_install_xpi() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 2 ]] ; then - die "${FUNCNAME} requires at least two arguments" - fi - - local DESTDIR=${1} - shift - - insinto "${DESTDIR}" - - local emid xpi_file xpi_tmp_dir - for xpi_file in "${@}" ; do - emid= - xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") - - # Unpack XPI - unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die - - # Determine extension ID - if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then - emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") - [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" - elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then - emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") - [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" - else - die "failed to determine extension id" - fi - - einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." - newins "${xpi_file}" "${emid}.xpi" - done -} - -mozconfig_add_options_ac() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 2 ]] ; then - die "${FUNCNAME} requires at least two arguments" - fi - - local reason=${1} - shift - - local option - for option in ${@} ; do - echo "ac_add_options ${option} # ${reason}" >>${MOZCONFIG} - done -} - -mozconfig_add_options_mk() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 2 ]] ; then - die "${FUNCNAME} requires at least two arguments" - fi - - local reason=${1} - shift - - local option - for option in ${@} ; do - echo "mk_add_options ${option} # ${reason}" >>${MOZCONFIG} - done -} - -mozconfig_use_enable() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 1 ]] ; then - die "${FUNCNAME} requires at least one arguments" - fi - - local flag=$(use_enable "${@}") - mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" -} - -mozconfig_use_with() { - debug-print-function ${FUNCNAME} "$@" - - if [[ ${#} -lt 1 ]] ; then - die "${FUNCNAME} requires at least one arguments" - fi - - local flag=$(use_with "${@}") - mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" -} - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]] ; then - if use pgo ; then - if ! has usersandbox $FEATURES ; then - die "You must enable usersandbox as X server can not run as root!" - fi - fi - - # Ensure we have enough disk space to compile - if use pgo || use lto || use debug ; then - CHECKREQS_DISK_BUILD="13G" - else - CHECKREQS_DISK_BUILD="5G" - fi - - check-reqs_pkg_pretend - fi -} - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]] ; then - if use pgo ; then - if ! has userpriv ${FEATURES} ; then - eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" - fi - fi - - # Ensure we have enough disk space to compile - if use pgo || use lto || use debug ; then - CHECKREQS_DISK_BUILD="13G" - else - CHECKREQS_DISK_BUILD="5G" - fi - - check-reqs_pkg_setup - - llvm_pkg_setup - - if use clang && use lto ; then - local version_lld=$(ld.lld --version 2>/dev/null | awk '{ print $2 }') - [[ -n ${version_lld} ]] && version_lld=$(ver_cut 1 "${version_lld}") - [[ -z ${version_lld} ]] && die "Failed to read ld.lld version!" - - local version_llvm_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'LLVM version:' | awk '{ print $3 }') - [[ -n ${version_llvm_rust} ]] && version_llvm_rust=$(ver_cut 1 "${version_llvm_rust}") - [[ -z ${version_llvm_rust} ]] && die "Failed to read used LLVM version from rustc!" - - if ver_test "${version_lld}" -ne "${version_llvm_rust}" ; then - eerror "Rust is using LLVM version ${version_llvm_rust} but ld.lld version belongs to LLVM version ${version_lld}." - eerror "You will be unable to link ${CATEGORY}/${PN}. To proceed you have the following options:" - eerror " - Manually switch rust version using 'eselect rust' to match used LLVM version" - eerror " - Switch to dev-lang/rust[system-llvm] which will guarantee matching version" - eerror " - Build ${CATEGORY}/${PN} without USE=lto" - die "LLVM version used by Rust (${version_llvm_rust}) does not match with ld.lld version (${version_lld})!" - fi - fi - - python-any-r1_pkg_setup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset \ - DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XAUTHORITY \ - XDG_CACHE_HOME \ - XDG_SESSION_COOKIE - - # Build system is using /proc/self/oom_score_adj, bug #604394 - addpredict /proc/self/oom_score_adj - - if ! mountpoint -q /dev/shm ; then - # If /dev/shm is not available, configure is known to fail with - # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py - ewarn "/dev/shm is not mounted -- expect build failures!" - fi - - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then - MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" - fi - - # Ensure we use C locale when building, bug #746215 - export LC_ALL=C - fi -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - unpack ${_src_file} - fi - done -} - -src_prepare() { - use lto && rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch - eapply "${WORKDIR}/firefox-patches" - - # Allow user to apply any additional patches without modifing ebuild - eapply_user - - # Make LTO respect MAKEOPTS - sed -i \ - -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/build/moz.configure/lto-pgo.configure \ - || die "sed failed to set num_cores" - - # Make ICU respect MAKEOPTS - sed -i \ - -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/intl/icu_sources_data.py \ - || die "sed failed to set num_cores" - - # sed-in toolchain prefix - sed -i \ - -e "s/objdump/${CHOST}-objdump/" \ - "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py \ - || die "sed failed to set toolchain prefix" - - sed -i \ - -e 's/ccache_stats = None/return None/' \ - "${S}"/python/mozbuild/mozbuild/controller/building.py \ - || die "sed failed to disable ccache stats call" - - einfo "Removing pre-built binaries ..." - find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die - - # Clearing checksums where we have applied patches - moz_clear_vendor_checksums target-lexicon-0.9.0 - - # Create build dir - BUILD_DIR="${WORKDIR}/${PN}_build" - mkdir -p "${BUILD_DIR}" || die - - # Write API keys to disk - echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${S}"/api-google.key || die - - xdg_src_prepare -} - -src_configure() { - # Show flags set at the beginning - einfo "Current CFLAGS: ${CFLAGS}" - einfo "Current LDFLAGS: ${LDFLAGS}" - einfo "Current RUSTFLAGS: ${RUSTFLAGS}" - - local have_switched_compiler= - if use clang && ! tc-is-clang ; then - # Force clang - einfo "Enforcing the use of clang due to USE=clang ..." - have_switched_compiler=yes - AR=llvm-ar - CC=${CHOST}-clang - CXX=${CHOST}-clang++ - NM=llvm-nm - RANLIB=llvm-ranlib - elif ! use clang && ! tc-is-gcc ; then - # Force gcc - have_switched_compiler=yes - einfo "Enforcing the use of gcc due to USE=-clang ..." - AR=gcc-ar - CC=${CHOST}-gcc - CXX=${CHOST}-g++ - NM=gcc-nm - RANLIB=gcc-ranlib - fi - - if [[ -n "${have_switched_compiler}" ]] ; then - # Because we switched active compiler we have to ensure - # that no unsupported flags are set - strip-unsupported-flags - fi - - # Ensure we use correct toolchain - export HOST_CC="$(tc-getBUILD_CC)" - export HOST_CXX="$(tc-getBUILD_CXX)" - tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG - - # Set MOZILLA_FIVE_HOME - export MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" - - # python/mach/mach/mixin/process.py fails to detect SHELL - export SHELL="${EPREFIX}/bin/bash" - - # Set MOZCONFIG - export MOZCONFIG="${S}/.mozconfig" - - # Initialize MOZCONFIG - mozconfig_add_options_ac '' --enable-application=browser - - # Set Gentoo defaults - export MOZILLA_OFFICIAL=1 - - mozconfig_add_options_ac 'Gentoo default' \ - --allow-addon-sideload \ - --disable-cargo-incremental \ - --disable-crashreporter \ - --disable-install-strip \ - --disable-strip \ - --disable-updater \ - --enable-official-branding \ - --enable-release \ - --enable-system-ffi \ - --enable-system-pixman \ - --host="${CBUILD:-${CHOST}}" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --prefix="${EPREFIX}/usr" \ - --target="${CHOST}" \ - --without-ccache \ - --with-intl-api \ - --with-libclang-path="$(llvm-config --libdir)" \ - --with-system-nspr \ - --with-system-nss \ - --with-system-png \ - --with-system-zlib \ - --with-toolchain-prefix="${CHOST}-" \ - --with-unsigned-addon-scopes=app,system \ - --x-includes="${SYSROOT}${EPREFIX}/usr/include" \ - --x-libraries="${SYSROOT}${EPREFIX}/usr/$(get_libdir)" - - # Set update channel - local update_channel=release - [[ -n ${MOZ_ESR} ]] && update_channel=esr - mozconfig_add_options_ac '' --update-channel=${update_channel} - - if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then - mozconfig_add_options_ac '' --enable-rust-simd - fi - - if [[ -s "${S}/api-google.key" ]] ; then - local key_origin="Gentoo default" - if [[ $(cat "${S}/api-google.key" | md5sum | awk '{ print $1 }') != 709560c02f94b41f9ad2c49207be6c54 ]] ; then - key_origin="User value" - fi - - mozconfig_add_options_ac "${key_origin}" \ - --with-google-location-service-api-keyfile="${S}/api-google.key" \ - --with-google-safebrowsing-api-keyfile="${S}/api-google.key" - else - einfo "Building without Google API key ..." - fi - - mozconfig_use_with system-av1 - mozconfig_use_with system-harfbuzz - mozconfig_use_with system-harfbuzz system-graphite2 - mozconfig_use_with system-icu - mozconfig_use_with system-jpeg - mozconfig_use_with system-libevent system-libevent "${SYSROOT}${EPREFIX}/usr" - mozconfig_use_with system-libvpx - mozconfig_use_with system-webp - - mozconfig_use_enable dbus - - use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme - - mozconfig_use_enable geckodriver - - if use hardened ; then - mozconfig_add_options_ac "+hardened" --enable-hardening - append-ldflags "-Wl,-z,relro -Wl,-z,now" - fi - - mozconfig_use_enable jack - - mozconfig_use_enable pulseaudio - # force the deprecated alsa sound code if pulseaudio is disabled - if use kernel_linux && ! use pulseaudio ; then - mozconfig_add_options_ac '-pulseaudio' --enable-alsa - fi - - mozconfig_use_enable screencast pipewire - - mozconfig_use_enable wifi necko-wifi - - if use wayland ; then - mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland - else - mozconfig_add_options_ac '' --enable-default-toolkit=cairo-gtk3 - fi - - if use lto ; then - if use clang ; then - # Upstream only supports lld when using clang - mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld - - mozconfig_add_options_ac '+lto' --enable-lto=cross - else - # Linking only works when using ld.gold when LTO is enabled - mozconfig_add_options_ac "forcing ld=gold due to USE=lto" --enable-linker=gold - - # ThinLTO is currently broken, see bmo#1644409 - mozconfig_add_options_ac '+lto' --enable-lto=full - fi - - if use pgo ; then - mozconfig_add_options_ac '+pgo' MOZ_PGO=1 - - if use clang ; then - # Used in build/pgo/profileserver.py - export LLVM_PROFDATA="llvm-profdata" - fi - fi - else - # Avoid auto-magic on linker - if use clang ; then - # This is upstream's default - mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld - elif tc-ld-is-gold ; then - mozconfig_add_options_ac "linker is set to gold" --enable-linker=gold - else - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi - fi - - # LTO flag was handled via configure - filter-flags '-flto*' - - mozconfig_use_enable debug - if use debug ; then - mozconfig_add_options_ac '+debug' --disable-optimize - else - if is-flag '-g*' ; then - if use clang ; then - mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols=$(get-flag '-g*') - else - mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols - fi - else - mozconfig_add_options_ac 'Gentoo default' --disable-debug-symbols - fi - - if is-flag '-O0' ; then - mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O0 - elif is-flag '-O4' ; then - mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O4 - elif is-flag '-O3' ; then - mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O3 - elif is-flag '-O1' ; then - mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O1 - elif is-flag '-Os' ; then - mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-Os - else - mozconfig_add_options_ac "Gentoo default" --enable-optimize=-O2 - fi - fi - - # Debug flag was handled via configure - filter-flags '-g*' - - # Optimization flag was handled via configure - filter-flags '-O*' - - # Modifications to better support ARM, bug #553364 - if use cpu_flags_arm_neon ; then - mozconfig_add_options_ac '+cpu_flags_arm_neon' --with-fpu=neon - - if ! tc-is-clang ; then - # thumb options aren't supported when using clang, bug 666966 - mozconfig_add_options_ac '+cpu_flags_arm_neon' \ - --with-thumb=yes \ - --with-thumb-interwork=no - fi - fi - - if [[ ${CHOST} == armv*h* ]] ; then - mozconfig_add_options_ac 'CHOST=armv*h*' --with-float-abi=hard - - if ! use system-libvpx ; then - sed -i \ - -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build \ - || die - fi - fi - - if use clang ; then - # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 - # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 - # toolkit/moz.configure Elfhack section: target.cpu in ('arm', 'x86', 'x86_64') - local disable_elf_hack= - if use amd64 ; then - disable_elf_hack=yes - elif use x86 ; then - disable_elf_hack=yes - elif use arm ; then - disable_elf_hack=yes - fi - - if [[ -n ${disable_elf_hack} ]] ; then - mozconfig_add_options_ac 'elf-hack is broken when using Clang' --disable-elf-hack - fi - fi - - # Additional ARCH support - case "${ARCH}" in - arm) - # Reduce the memory requirements for linking - if use clang ; then - # Nothing to do - :; - elif tc-ld-is-gold || use lto ; then - append-ldflags -Wl,--no-keep-memory - else - append-ldflags -Wl,--no-keep-memory -Wl,--reduce-memory-overheads - fi - ;; - esac - - if ! use elibc_glibc ; then - mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc - fi - - # Allow elfhack to work in combination with unstripped binaries - # when they would normally be larger than 2GiB. - append-ldflags "-Wl,--compress-debug-sections=zlib" - - # Make revdep-rebuild.sh happy; Also required for musl - append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}",--enable-new-dtags - - # Pass $MAKEOPTS to build system - export MOZ_MAKE_FLAGS="${MAKEOPTS}" - - # Use system's Python environment - export MACH_USE_SYSTEM_PYTHON=1 - - # Disable notification when build system has finished - export MOZ_NOSPAM=1 - - # Build system requires xargs but is unable to find it - mozconfig_add_options_mk 'Gentoo default' "XARGS=${EPREFIX}/usr/bin/xargs" - - # Set build dir - mozconfig_add_options_mk 'Gentoo default' "MOZ_OBJDIR=${BUILD_DIR}" - - # Show flags we will use - einfo "Build CFLAGS: ${CFLAGS}" - einfo "Build LDFLAGS: ${LDFLAGS}" - einfo "Build RUSTFLAGS: ${RUSTFLAGS}" - - # Handle EXTRA_CONF and show summary - local ac opt hash reason - - # Apply EXTRA_ECONF entries to $MOZCONFIG - if [[ -n ${EXTRA_ECONF} ]] ; then - IFS=\! read -a ac <<<${EXTRA_ECONF// --/\!} - for opt in "${ac[@]}"; do - mozconfig_add_options_ac "EXTRA_ECONF" --${opt#--} - done - fi - - echo - echo "==========================================================" - echo "Building ${PF} with the following configuration" - grep ^ac_add_options "${MOZCONFIG}" | while read ac opt hash reason; do - [[ -z ${hash} || ${hash} == \# ]] \ - || die "error reading mozconfig: ${ac} ${opt} ${hash} ${reason}" - printf " %-30s %s\n" "${opt}" "${reason:-mozilla.org default}" - done - echo "==========================================================" - echo - - ./mach configure || die -} - -src_compile() { - local virtx_cmd= - - if use pgo ; then - virtx_cmd=virtx - - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - addpredict /root - fi - - local -x GDK_BACKEND=x11 - - ${virtx_cmd} ./mach build --verbose \ - || die -} - -src_install() { - # xpcshell is getting called during install - pax-mark m \ - "${BUILD_DIR}"/dist/bin/xpcshell \ - "${BUILD_DIR}"/dist/bin/firefox \ - "${BUILD_DIR}"/dist/bin/plugin-container - - DESTDIR="${D}" ./mach install || die - - # Upstream cannot ship symlink but we can (bmo#658850) - rm "${ED}${MOZILLA_FIVE_HOME}/${PN}-bin" || die - dosym ${PN} ${MOZILLA_FIVE_HOME}/${PN}-bin - - # Don't install llvm-symbolizer from sys-devel/llvm package - if [[ -f "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" ]] ; then - rm -v "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" || die - fi - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - newins "${FILESDIR}"/disable-auto-update.policy.json policies.json - - # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" - insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs.js all-gentoo.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/all-gentoo.js" - - # Set dictionary path to use system hunspell - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set spellchecker.dictionary_path pref" - pref("spellchecker.dictionary_path", "${EPREFIX}/usr/share/myspell"); - EOF - - # Force hwaccel prefs if USE=hwaccel is enabled - if use hwaccel ; then - cat "${FILESDIR}"/gentoo-hwaccel-prefs.js \ - >>"${GENTOO_PREFS}" \ - || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" - fi - - if ! use gmp-autoupdate ; then - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - einfo "Disabling auto-update for ${plugin} plugin ..." - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" - pref("media.${plugin}.autoupdate", false); - EOF - done - fi - - # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it - if use system-harfbuzz ; then - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set gfx.font_rendering.graphite.enabled pref" - sticky_pref("gfx.font_rendering.graphite.enabled", true); - EOF - fi - - # Install language packs - local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) - if [[ -n "${langpacks}" ]] ; then - moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" - fi - - # Install geckodriver - if use geckodriver ; then - einfo "Installing geckodriver into ${ED}${MOZILLA_FIVE_HOME} ..." - pax-mark m "${BUILD_DIR}"/dist/bin/geckodriver - exeinto "${MOZILLA_FIVE_HOME}" - doexe "${BUILD_DIR}"/dist/bin/geckodriver - - dosym ${MOZILLA_FIVE_HOME}/geckodriver /usr/bin/geckodriver - fi - - # Install icons - local icon_srcdir="${S}/browser/branding/official" - local icon_symbolic_file="${FILESDIR}/icon/firefox-symbolic.svg" - - insinto /usr/share/icons/hicolor/symbolic/apps - newins "${icon_symbolic_file}" ${PN}-symbolic.svg - - local icon size - for icon in "${icon_srcdir}"/default*.png ; do - size=${icon%.png} - size=${size##*/default} - - if [[ ${size} -eq 48 ]] ; then - newicon "${icon}" ${PN}.png - fi - - newicon -s ${size} "${icon}" ${PN}.png - done - - # Install menus - local wrapper_wayland="${PN}-wayland.sh" - local wrapper_x11="${PN}-x11.sh" - local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" - local display_protocols="auto X11" - local icon="${PN}" - local name="Mozilla ${MOZ_PN^}" - local use_wayland="false" - - if use wayland ; then - display_protocols+=" Wayland" - use_wayland="true" - fi - - local app_name desktop_filename display_protocol exec_command - for display_protocol in ${display_protocols} ; do - app_name="${name} on ${display_protocol}" - desktop_filename="${PN}-${display_protocol,,}.desktop" - - case ${display_protocol} in - Wayland) - exec_command="${PN}-wayland --name ${PN}-wayland" - newbin "${FILESDIR}/${wrapper_wayland}" ${PN}-wayland - ;; - X11) - if ! use wayland ; then - # Exit loop here because there's no choice so - # we don't need wrapper/.desktop file for X11. - continue - fi - - exec_command="${PN}-x11 --name ${PN}-x11" - newbin "${FILESDIR}/${wrapper_x11}" ${PN}-x11 - ;; - *) - app_name="${name}" - desktop_filename="${PN}.desktop" - exec_command="${PN}" - ;; - esac - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - "${WORKDIR}/${PN}.desktop-template" \ - || die - - newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" - - rm "${WORKDIR}/${PN}.desktop-template" || die - done - - # Install generic wrapper script - [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" - newbin "${FILESDIR}/${PN}.sh" ${PN} - - # Update wrapper - local wrapper - for wrapper in \ - "${ED}/usr/bin/${PN}" \ - "${ED}/usr/bin/${PN}-x11" \ - "${ED}/usr/bin/${PN}-wayland" \ - ; do - [[ ! -f "${wrapper}" ]] && continue - - sed -i \ - -e "s:@PREFIX@:${EPREFIX}/usr:" \ - -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${wrapper}" \ - || die - done -} - -pkg_preinst() { - xdg_pkg_preinst - - # If the apulse libs are available in MOZILLA_FIVE_HOME then apulse - # does not need to be forced into the LD_LIBRARY_PATH - if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then - einfo "APULSE found; Generating library symlinks for sound support ..." - local lib - pushd "${ED}${MOZILLA_FIVE_HOME}" &>/dev/null || die - for lib in ../apulse/libpulse{.so{,.0},-simple.so{,.0}} ; do - # A quickpkg rolled by hand will grab symlinks as part of the package, - # so we need to avoid creating them if they already exist. - if [[ ! -L ${lib##*/} ]] ; then - ln -s "${lib}" ${lib##*/} || die - fi - done - popd &>/dev/null || die - fi -} - -pkg_postinst() { - xdg_pkg_postinst - - if ! use gmp-autoupdate ; then - elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" - elog "installing into new profiles:" - local plugin - for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do - elog "\t ${plugin}" - done - elog - fi - - if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then - elog "Apulse was detected at merge time on this system and so it will always be" - elog "used for sound. If you wish to use pulseaudio instead please unmerge" - elog "media-sound/apulse." - elog - fi - - local show_doh_information show_normandy_information - - if [[ -z "${REPLACING_VERSIONS}" ]] ; then - # New install; Tell user that DoH is disabled by default - show_doh_information=yes - show_normandy_information=yes - else - local replacing_version - for replacing_version in ${REPLACING_VERSIONS} ; do - if ver_test "${replacing_version}" -lt 70 ; then - # Tell user only once about our DoH default - show_doh_information=yes - fi - - if ver_test "${replacing_version}" -lt 74.0-r2 ; then - # Tell user only once about our Normandy default - show_normandy_information=yes - fi - done - fi - - if [[ -n "${show_doh_information}" ]] ; then - elog - elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" - elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" - elog "DNS traffic to Cloudflare by default is not a good idea and applications" - elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" - elog "(\"Off by choice\") by default." - elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." - fi - - # bug 713782 - if [[ -n "${show_normandy_information}" ]] ; then - elog - elog "Upstream operates a service named Normandy which allows Mozilla to" - elog "push changes for default settings or even install new add-ons remotely." - elog "While this can be useful to address problems like 'Armagadd-on 2.0' or" - elog "revert previous decisions to disable TLS 1.0/1.1, privacy and security" - elog "concerns prevail, which is why we have switched off the use of this" - elog "service by default." - elog - elog "To re-enable this service set" - elog - elog " app.normandy.enabled=true" - elog - elog "in about:config." - fi -} diff --git a/www-client/firefox/firefox-78.5.0.ebuild b/www-client/firefox/firefox-78.5.0.ebuild index f7c8cee16535..064bd9128d54 100644 --- a/www-client/firefox/firefox-78.5.0.ebuild +++ b/www-client/firefox/firefox-78.5.0.ebuild @@ -57,7 +57,7 @@ SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES} DESCRIPTION="Firefox Web Browser" HOMEPAGE="https://www.mozilla.com/firefox" -KEYWORDS="amd64 ~arm64 ~ppc64 x86" +KEYWORDS="amd64 arm64 ~ppc64 x86" SLOT="0/esr$(ver_cut 1)" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" diff --git a/www-client/google-chrome-unstable/Manifest b/www-client/google-chrome-unstable/Manifest index 9e18a11481f0..19bf2bda6a9f 100644 --- a/www-client/google-chrome-unstable/Manifest +++ b/www-client/google-chrome-unstable/Manifest @@ -1 +1 @@ -DIST google-chrome-unstable_88.0.4315.5-1_amd64.deb 73652632 BLAKE2B ffb039327d26c465a21a35d26abeb1cac04eeb3f8f66f9c114b07591af3a344f3f1e01d190f839227898c94fdd72e2ff0d92b52a43a081b1f96f3038dbfd8ae1 SHA512 d582a9c93602b34789152c38ac5f7cbd33b06d66e1f36cd505c5e8b6d90a746da539738f7aa06874fdb62b2a15dd5f6e90d635f7d4f11aa3d1bba42a9dc8623f +DIST google-chrome-unstable_88.0.4324.11-1_amd64.deb 75169984 BLAKE2B ff582bc5eed34ca53d7b4780993de7039dcb672f97b59565b39e474a49ad1907cfcfa1f009f0310c3989751ec12aeae9dc225fafaab244fbea15dff031316fe0 SHA512 bd3d5641588adc0abe6d9340b5ae690a3d41ddf4319cae038abebd99b646dfbbcac319ff798b6935da55518f26141f12446c9b424c09af59f5f6c91f737a4845 diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-88.0.4315.5.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-88.0.4324.11.ebuild similarity index 100% rename from www-client/google-chrome-unstable/google-chrome-unstable-88.0.4315.5.ebuild rename to www-client/google-chrome-unstable/google-chrome-unstable-88.0.4324.11.ebuild diff --git a/www-client/microsoft-edge-dev/Manifest b/www-client/microsoft-edge-dev/Manifest index fa6cb6770121..a5a9c2fadaf6 100644 --- a/www-client/microsoft-edge-dev/Manifest +++ b/www-client/microsoft-edge-dev/Manifest @@ -1 +1 @@ -DIST microsoft-edge-dev_88.0.692.0-1_amd64.deb 88884072 BLAKE2B 1ed57468e1bf9eb64203b0b1d260a6f4f0addbaabf25efc1674d592322a9ee4a704013696335fce11294c589cc7020a89278108a701dd8037ba6de15873df824 SHA512 a4982c62ddf1fb4ff48b1f861778428b63c1ed345018b0c47825d0ed63f446c78eacdb21fb498f0b3139494b3ca7487c182339b91f9bd0c5b3cada5771d82003 +DIST microsoft-edge-dev_88.0.702.0-1_amd64.deb 88571350 BLAKE2B bc270cb7f0620c314bd6fcfa2ea47027d65f0176b000bd0dc1fdffadf427892f4fca834ecebff3a0ac3a39d60c129e7d129399d2036c4eed98a5526561927538 SHA512 36ab87ac82faf0b4d4b6b28558e9ed7efd41af07f849d16394167f852aeae8f1f60ce687e303c9ec0c34494357efee79090e4dee40f5782927cef6470c4731da diff --git a/www-client/microsoft-edge-dev/microsoft-edge-dev-88.0.692.0.ebuild b/www-client/microsoft-edge-dev/microsoft-edge-dev-88.0.702.0.ebuild similarity index 100% rename from www-client/microsoft-edge-dev/microsoft-edge-dev-88.0.692.0.ebuild rename to www-client/microsoft-edge-dev/microsoft-edge-dev-88.0.702.0.ebuild diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest index e5014fea0d2e..0b4e545f7bfa 100644 --- a/www-client/seamonkey/Manifest +++ b/www-client/seamonkey/Manifest @@ -2,6 +2,8 @@ DIST seamonkey-2.53.3-system_libvpx-1.8.patch.xz 3128 BLAKE2B f73802d2715a11964a DIST seamonkey-2.53.4.source-l10n.tar.xz 12110188 BLAKE2B 6bf25f25bd72e35252824221d6ecf43f910cae65e21e2e15b628d9340256a3196b11a20522ce6284cee28a92141907ddcd5366427c356e57fb1a0015a064a2c2 SHA512 a5ac165412d3391206b7bcb2e7112693ce272e47e6cd2da321a60f52799fb04ac0d1ea84fb535ba73ef8d9faf5d582b314d2890768fd440136c830f3c88777cd DIST seamonkey-2.53.4.source.tar.xz 294513316 BLAKE2B 79425b0d15f99e30bd70871c28636ed8c567703b7048a46534fa971debbfeb90dd05880feca49354cb818c4a127cbc1f3ff17729784f90de91ba82db6da5fa59 SHA512 3450d6251f309bee96aa792cdce66b946d841089e0031ccbcf606845b1e0c951d58a8117a9e61e2d2435c1df614110944e5eac7ae9bd08429146bfe7334137fb DIST seamonkey-2.53.4_beta1-patches-01.tar.xz 39676 BLAKE2B de7742e6c286ca21403d003e22e3eba56e4d59c3f628c9768b47bac148abefbabfcd0510c89cc319c29e0775e316922c680d3de3dbfc542cae4f1f4942773124 SHA512 e97d6de074041f17cfe935995ce7116dee4249dc736315c82ed3878a92189d09542f141f65499ecdfd8621638d130b6d5786ab6033f3f794a805e136acefec3d +DIST seamonkey-2.53.5.1.source-l10n.tar.xz 12108000 BLAKE2B f8e3b3bcdadf92decaa2cffacac937a6c219017a205385136e98fa6fa13d5176dc000ee00ac910951d1e623c82241b1ed3d0b0b6754c5c5e0d2cf315c9bd097a SHA512 6532465d0ffbe2f36e5db0b54a801bf3b5d5481a1f39933620bea641e7faf8fcc0a04f5ff1e72272f119954835663e6d1fdb3d0595468a2fbb336b71d0290ce6 +DIST seamonkey-2.53.5.1.source.tar.xz 285624492 BLAKE2B 1785872f9b5e3fdd92cc9d9b53f503e923451af116cc8c0581b6e61cf542d8fff7a4139f57c6d3db55865caa2f1292eaaa8125fe05ca1e18cc0ee02376c5644a SHA512 6ee8a1c5b81ede02cabcfc7b650805bab661b2898fd0f6d7c0ae1f99da19930efb69f25ce7374888cac6333e669ec79d72705fec69cfe617054b9daacd31297c DIST seamonkey-2.53.5.source-l10n.tar.xz 12108000 BLAKE2B f8e3b3bcdadf92decaa2cffacac937a6c219017a205385136e98fa6fa13d5176dc000ee00ac910951d1e623c82241b1ed3d0b0b6754c5c5e0d2cf315c9bd097a SHA512 6532465d0ffbe2f36e5db0b54a801bf3b5d5481a1f39933620bea641e7faf8fcc0a04f5ff1e72272f119954835663e6d1fdb3d0595468a2fbb336b71d0290ce6 DIST seamonkey-2.53.5.source.tar.xz 285387556 BLAKE2B 34f0a0b24f15f13bd8b7975a863a9351e2d29494bc374f5d525d3c2720a834fe328320aaea88556abb76e6b131c756a107c3ee9275c2a65da582a6beecdc94f8 SHA512 d2722a8864bcdb58851447802576877198e1b71a76a0be04df9ccabd449bdbdd200402ca10041bcab21eca757edc8e6a1c3dc7ec3244cca119f2d1c8979d3a9b DIST seamonkey-2.53.5_beta1-patches-02.tar.xz 44096 BLAKE2B e0c31af11b3bf88f572703403f186bda71af0c26cd52a99b773dfd765961c430f2d516bba266871b28e5848d5c0f9e9df1a074b05f4b5da7323fd9042c25054e SHA512 434e4cad74d659f46a051207bf43087ad780e40c29b465a9c4c8e7366e9d8b197da20e5ffbafadb8ddb3f1754ad81b75f3d7a899adadd3bb8a7b83e501cfaf9a diff --git a/www-client/seamonkey/seamonkey-2.53.5.1.ebuild b/www-client/seamonkey/seamonkey-2.53.5.1.ebuild new file mode 100644 index 000000000000..054a541ccb38 --- /dev/null +++ b/www-client/seamonkey/seamonkey-2.53.5.1.ebuild @@ -0,0 +1,539 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +WANT_AUTOCONF="2.1" + +PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_REQ_USE='ncurses,sqlite,ssl,threads(+)' + +# This list can be updated with scripts/get_langs.sh from the mozilla overlay +# note - could not roll langpacks for: ca fi +#MOZ_LANGS=(ca cs de en-GB es-AR es-ES fi fr gl hu it ja lt nb-NO nl pl pt-PT +# ru sk sv-SE tr uk zh-CN zh-TW) +MOZ_LANGS=(cs de en-GB es-AR es-ES fr hu it ja lt nl pl pt-PT + ru sk sv-SE zh-CN zh-TW) + +MOZ_PV="${PV/_pre*}" +MOZ_PV="${MOZ_PV/_alpha/a}" +MOZ_PV="${MOZ_PV/_beta/b}" +MOZ_PV="${MOZ_PV/_rc/rc}" +MOZ_P="${P}" +MY_MOZ_P="${PN}-${MOZ_PV}" + +if [[ ${PV} == *_pre* ]] ; then + MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/candidates/${MOZ_PV}-candidates/build${PV##*_pre}" +else + MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases/${MOZ_PV}" +fi + +S="${WORKDIR}/${MY_MOZ_P}" +SRC_URI="${MOZ_HTTP_URI}/source/${MY_MOZ_P}.source.tar.xz -> ${P}.source.tar.xz + ${MOZ_HTTP_URI}/source/${MY_MOZ_P}.source-l10n.tar.xz -> ${P}.source-l10n.tar.xz" + +MOZ_GENERATE_LANGPACKS=1 +MOZ_L10N_SOURCEDIR="${S}/${P}-l10n" +inherit autotools check-reqs flag-o-matic mozcoreconf-v6 mozextension mozlinguas-v2 nsplugins pax-utils toolchain-funcs xdg-utils + +PATCH="${PN}-2.53.5_beta1-patches-02" + +DESCRIPTION="Seamonkey Web Browser" +HOMEPAGE="http://www.seamonkey-project.org" +KEYWORDS="~amd64 ~ppc64 ~x86" + +SLOT="0" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +SYSTEM_IUSE=( +system-{av1,harfbuzz,icu,jpeg,libevent,sqlite,libvpx} ) +IUSE="+calendar +chatzilla +crypt dbus debug +gmp-autoupdate +ipc jack minimal +neon pulseaudio +roaming selinux startup-notification ${SYSTEM_IUSE[@]} test +wifi" +RESTRICT="!test? ( test )" + +SRC_URI+=" + https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz + system-libvpx? ( https://dev.gentoo.org/~polynomial-c/mozilla/${PN}-2.53.3-system_libvpx-1.8.patch.xz ) +" + +ASM_DEPEND=">=dev-lang/yasm-1.1" + +# Convert to BDEPEND once the ebuild goes EAPI-7 +DEPEND=" + app-arch/unzip + app-arch/zip + dev-lang/perl + sys-apps/findutils + >=sys-devel/binutils-2.16.1 + virtual/pkgconfig + >=virtual/rust-1.34.0 + amd64? ( + ${ASM_DEPEND} + ) + x86? ( + ${ASM_DEPEND} + ) +" + +CDEPEND=" + >=app-text/hunspell-1.5.4:= + dev-libs/atk + >=dev-libs/glib-2.26:2 + >=dev-libs/libffi-3.0.10:= + >=dev-libs/nspr-4.23 + >=dev-libs/nss-3.47.1 + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + >=media-libs/libpng-1.6.31:0=[apng] + >=media-libs/mesa-10.2:= + >=sys-libs/zlib-1.2.3 + >=x11-libs/cairo-1.10[X] + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-2.18:2 + >=x11-libs/gtk+-3.4.0:3 + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + >=x11-libs/pango-1.22.0 + >=x11-libs/pixman-0.19.2 + media-video/ffmpeg + virtual/freedesktop-icon-theme + dbus? ( + >=dev-libs/dbus-glib-0.72 + >=sys-apps/dbus-0.60 + ) + jack? ( virtual/jack ) + crypt? ( =media-sound/apulse-0.1.9 + ) ) + startup-notification? ( >=x11-libs/startup-notification-0.8 ) + system-av1? ( + >=media-libs/dav1d-0.3.0:= + >=media-libs/libaom-1.0.0:= + ) + system-harfbuzz? ( + >=media-gfx/graphite2-1.3.9-r1 + >=media-libs/harfbuzz-1.3.3:0= + ) + system-icu? ( >=dev-libs/icu-59.1:= ) + system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) + system-libevent? ( >=dev-libs/libevent-2.0:0= ) + system-libvpx? ( >=media-libs/libvpx-1.8.0:0=[postproc] ) + system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) + wifi? ( + kernel_linux? ( + >=dev-libs/dbus-glib-0.72 + net-misc/networkmanager + >=sys-apps/dbus-0.60 + ) + ) +" +RDEPEND=" + ${CDEPEND} + selinux? ( sec-policy/selinux-mozilla ) +" +DEPEND+="${CDEPEND} + amd64? ( virtual/opengl ) + x86? ( virtual/opengl ) +" + +# allow GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z ${GMP_PLUGIN_LIST} ]] ; then + GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + +BUILD_OBJ_DIR="${S}/seamonk" + +pkg_setup() { + if [[ ${PV} == *_beta* ]] || [[ ${PV} == *_pre* ]] ; then + ewarn "You're using an unofficial release of ${PN}. Don't file any bug in" + ewarn "Gentoo's Bugtracker against this package in case it breaks for you." + ewarn "Those belong to upstream: https://bugzilla.mozilla.org" + fi + + moz_pkgsetup +} + +pkg_pretend() { + # Ensure we have enough disk space to compile + if use debug || use test ; then + CHECKREQS_DISK_BUILD="16G" + else + CHECKREQS_DISK_BUILD="12G" + fi + check-reqs_pkg_setup +} + +src_unpack() { + local l10n_sources="${P}.source-l10n.tar.xz" + unpack ${A/ ${l10n_sources}} + + mkdir "${S}/${P}-l10n" || die + cd "${S}/${P}-l10n" || die + unpack ${l10n_sources} +} + +src_prepare() { + # Apply our patches + eapply "${WORKDIR}"/seamonkey + + rm "${WORKDIR}"/firefox/4000_sysctl.patch || die + # browser patches go here + pushd "${S}"/mozilla &>/dev/null || die + eapply "${WORKDIR}"/firefox + popd &>/dev/null || die + + # Shell scripts sometimes contain DOS line endings; bug 391889 + grep -rlZ --include="*.sh" $'\r$' . | + while read -r -d $'\0' file ; do + einfo edos2unix "${file}" + edos2unix "${file}" + done + + use system-libvpx && eapply "${WORKDIR}/${PN}-2.53.3-system_libvpx-1.8.patch" + + # Allow user to apply any additional patches without modifing ebuild + eapply_user + + local ms="${S}/mozilla" + + # Don't error for format with gcc-9 + grep -rl -- '-Werror=format' | xargs sed -i 's/error=format/no-&/' || die "sed failed" + + # Enable gnomebreakpad + if use debug ; then + sed -i -e "s:GNOME_DISABLE_CRASH_DIALOG=1:GNOME_DISABLE_CRASH_DIALOG=0:g" \ + "${ms}"/build/unix/run-mozilla.sh || die "sed failed!" + fi + + # Ensure that are plugins dir is enabled as default + sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \ + "${ms}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!" + sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \ + "${ms}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!" + + # Don't exit with error when some libs are missing which we have in + # system. + sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ + -i "${S}"/suite/installer/Makefile.in || die + # Don't error out when there's no files to be removed: + sed 's@\(xargs rm\)$@\1 -f@' \ + -i "${ms}"/toolkit/mozapps/installer/packager.mk || die + + # Don't build libs-% locale files for chatzilla if we are not building chatzilla + # (this is hard-coded in the build system at present rather than being based on configuration) + if ! use chatzilla ; then + sed '/extensions\/irc\/locales libs-/s@^@#@' \ + -i "${S}"/suite/locales/Makefile.in || die + fi + + eautoreconf old-configure.in + cd "${S}"/mozilla || die + eautoconf old-configure.in + cd "${S}"/mozilla/js/src || die + eautoconf old-configure.in +} + +src_configure() { + MEXTENSIONS="default" + # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) + # Note: These are for Gentoo Linux use ONLY. For your own distribution, please + # get your own set of keys. + _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc + + #################################### + # + # mozconfig, CFLAGS and CXXFLAGS setup + # + #################################### + + mozconfig_init + + ################################## + # Former mozconfig_config() part # + ################################## + + # Migrated from mozcoreconf-2 + mozconfig_annotate 'system_libs' --with-system-bz2 + mozconfig_annotate 'system_libs' --with-system-zlib + + # Disable for testing purposes only + mozconfig_annotate 'Upstream bug 1341234' --disable-stylo + + # Must pass release in order to properly select linker via gold useflag + mozconfig_annotate 'Enable by Gentoo' --enable-release + + # Must pass --enable-gold if using ld.gold + if tc-ld-is-gold ; then + mozconfig_annotate 'tc-ld-is-gold=true' --enable-gold + else + mozconfig_annotate 'tc-ld-is-gold=false' --disable-gold + fi + + # Enable position independent executables + mozconfig_annotate 'enabled by Gentoo' --enable-pie + + mozconfig_use_enable debug + mozconfig_use_enable debug tests + if ! use debug ; then + mozconfig_annotate 'disabled by Gentoo' --disable-debug-symbols + else + mozconfig_annotate 'enabled by Gentoo' --enable-debug-symbols + fi + + mozconfig_use_enable startup-notification + + # wifi pulls in dbus so manage both here + mozconfig_use_enable wifi necko-wifi + if use kernel_linux && use wifi && ! use dbus ; then + echo "Enabling dbus support due to wifi request" + mozconfig_annotate 'dbus required by necko-wifi on linux' --enable-dbus + else + mozconfig_use_enable dbus + mozconfig_annotate 'disabled' --disable-necko-wifi + fi + + # These are enabled by default in all mozilla applications + mozconfig_annotate '' --with-system-nspr --with-nspr-prefix="${SYSROOT}${EPREFIX%/}"/usr + mozconfig_annotate '' --with-system-nss --with-nss-prefix="${SYSROOT}${EPREFIX%/}"/usr + mozconfig_annotate '' --x-includes="${SYSROOT}${EPREFIX%/}"/usr/include --x-libraries="${SYSROOT}${EPREFIX%/}"/usr/$(get_libdir) + if use system-libevent ; then + mozconfig_annotate '' --with-system-libevent="${SYSROOT}${EPREFIX%/}"/usr + fi + mozconfig_annotate '' --prefix="${EPREFIX%/}"/usr + mozconfig_annotate '' --libdir="${EPREFIX%/}"/usr/$(get_libdir) + mozconfig_annotate 'Gentoo default' --enable-system-hunspell + mozconfig_annotate '' --disable-crashreporter + mozconfig_annotate 'Gentoo default' --with-system-png + mozconfig_annotate '' --enable-system-ffi + mozconfig_annotate '' --disable-gconf + mozconfig_annotate '' --with-intl-api + + # skia has no support for big-endian platforms + if [[ $(tc-endian) == "big" ]] ; then + mozconfig_annotate 'big endian target' --disable-skia + else + mozconfig_annotate '' --enable-skia + fi + + # default toolkit is cairo-gtk3, optional use flags can change this + mozconfig_annotate '' --enable-default-toolkit=cairo-gtk3 + + # Instead of the standard --build= and --host=, mozilla uses --host instead + # of --build, and --target intstead of --host. + # Note, mozilla also has --build but it does not do what you think it does. + # Set both --target and --host as mozilla uses python to guess values otherwise + mozconfig_annotate '' --target="${CHOST}" + mozconfig_annotate '' --host="${CBUILD:-${CHOST}}" + + mozconfig_use_enable pulseaudio + # force the deprecated alsa sound code if pulseaudio is disabled + if use kernel_linux && ! use pulseaudio ; then + mozconfig_annotate '-pulseaudio' --enable-alsa + fi + + # For testing purpose only + mozconfig_annotate 'Sandbox' --enable-content-sandbox + + mozconfig_use_enable system-sqlite + mozconfig_use_with system-jpeg + mozconfig_use_with system-icu + mozconfig_use_with system-libvpx + mozconfig_use_with system-harfbuzz + mozconfig_use_with system-harfbuzz system-graphite2 + mozconfig_use_with system-av1 + + # Modifications to better support ARM, bug 553364 + if use neon ; then + mozconfig_annotate '' --with-fpu=neon + mozconfig_annotate '' --with-thumb=yes + mozconfig_annotate '' --with-thumb-interwork=no + fi + if [[ ${CHOST} == armv* ]] ; then + mozconfig_annotate '' --with-float-abi=hard + if ! use system-libvpx ; then + sed -i -e "s|softfp|hard|" \ + "${S}"/mozilla/media/libvpx/moz.build \ + || die + fi + fi + ################################## + # Former mozconfig_config() end # + ################################## + + # enable JACK, bug 600002 + mozconfig_use_enable jack + + # It doesn't compile on alpha without this LDFLAGS + use alpha && append-ldflags "-Wl,--no-relax" + + # Linking fails without this due to memory exhaustion + use x86 && append-ldflags "-Wl,--no-keep-memory" + + if ! use chatzilla ; then + MEXTENSIONS+=",-irc" + fi + if ! use roaming ; then + MEXTENSIONS+=",-sroaming" + fi + + # Setup api key for location services + echo -n "${_google_api_key}" > "${S}"/google-api-key + mozconfig_annotate '' --with-google-location-service-api-keyfile="${S}/google-api-key" + mozconfig_annotate '' --with-google-safebrowsing-api-keyfile="${S}/google-api-key" + + mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" + + # sm-specific settings + mozconfig_use_enable calendar + + # Use an objdir to keep things organized. + echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig + echo "mk_add_options XARGS=/usr/bin/xargs" >> "${S}"/.mozconfig + + mozlinguas_mozconfig + + # Finalize and report settings + mozconfig_final + + # Required until mozcoreconf-v?.eclass-es are finally fixed... + sed \ + -e '/--enable-application/s@comm/suite@suite@' \ + -i .mozconfig || die + + # Work around breakage in makeopts with --no-print-directory + MAKEOPTS="${MAKEOPTS/--no-print-directory/}" + + if [[ $(gcc-major-version) -lt 4 ]] ; then + append-cxxflags -fno-stack-protector + elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]] ; then + if use amd64 || use x86 ; then + append-flags -mno-avx + fi + fi + + # workaround for funky/broken upstream configure... + SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ + emake V=1 -f client.mk configure +} + +src_compile() { + MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL}" \ + emake V=1 -f client.mk + + mozlinguas_src_compile +} + +src_install() { + MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" + DICTPATH="\"${EPREFIX%/}/usr/share/myspell\"" + + local emid + cd "${BUILD_OBJ_DIR}" || die + + # Pax mark xpcshell for hardened support, only used for startupcache creation. + pax-mark m "${BUILD_OBJ_DIR}/dist/bin/xpcshell" + + # Copy our preference before omnijar is created. + sed "s|SEAMONKEY_PVR|${PVR}|" "${FILESDIR}"/all-gentoo-1.js > \ + "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ + || die + + # Set default path to search for dictionaries. + echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \ + >> "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ + || die + + echo 'pref("extensions.autoDisableScopes", 3);' >> \ + "${BUILD_OBJ_DIR}/dist/bin/defaults/pref/all-gentoo.js" \ + || die + + local plugin + if ! use gmp-autoupdate ; then + for plugin in "${GMP_PLUGIN_LIST[@]}" ; do + echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ + "${S}/${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ + || dir + done + fi + + MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \ + emake DESTDIR="${D}" install + MOZ_P="${MY_MOZ_P}" mozlinguas_src_install + cp "${FILESDIR}"/${PN}.desktop "${T}" || die + + sed 's|^\(MimeType=.*\)$|\1text/x-vcard;text/directory;application/mbox;message/rfc822;x-scheme-handler/mailto;|' \ + -i "${T}"/${PN}.desktop || die + sed 's|^\(Categories=.*\)$|\1Email;|' -i "${T}"/${PN}.desktop \ + || die + + # Install icon and .desktop for menu entry + newicon "${S}"/suite/branding/${PN}/default64.png ${PN}.png + domenu "${T}"/${PN}.desktop + + # Required in order to use plugins and even run seamonkey on hardened. + pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{seamonkey,seamonkey-bin,plugin-container} + + if use minimal ; then + rm -rf "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} + fi + + if use chatzilla ; then + local emid='{59c81df5-4b7a-477b-912d-4e0fdf64e5f2}' + + # remove the en_US-only xpi file so a version with all requested locales can be installed + if [[ -e "${ED}"${MOZILLA_FIVE_HOME}/distribution/extensions/${emid}.xpi ]]; then + rm -f "${ED}"${MOZILLA_FIVE_HOME}/distribution/extensions/${emid}.xpi || die + fi + + # merge the extra locales into the main extension + mozlinguas_xpistage_langpacks "${BUILD_OBJ_DIR}"/dist/xpi-stage/chatzilla + + # install the merged extension + mkdir -p "${T}/${emid}" || die + cp -RLp -t "${T}/${emid}" "${BUILD_OBJ_DIR}"/dist/xpi-stage/chatzilla/* || die + insinto ${MOZILLA_FIVE_HOME}/distribution/extensions + doins -r "${T}/${emid}" + fi + + # Handle plugins dir through nsplugins.eclass + share_plugins_dir + + # revdep-rebuild entry + insinto /etc/revdep-rebuild + echo "SEARCH_DIRS_MASK=${MOZILLA_FIVE_HOME}*" >> ${T}/11${PN} + doins "${T}"/11${PN} +} + +pkg_preinst() { + MOZILLA_FIVE_HOME="${ROOT}/usr/$(get_libdir)/${PN}" + + if [ -d ${MOZILLA_FIVE_HOME}/plugins ] ; then + rm ${MOZILLA_FIVE_HOME}/plugins -rf + fi +} + +pkg_postinst() { + MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" + + # Update mimedb for the new .desktop file + xdg_desktop_database_update + + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${GMP_PLUGIN_LIST[@]}"; do elog "\t ${plugin}" ; done + fi + + if use chatzilla ; then + elog "chatzilla is now an extension which can be en-/disabled and configured via" + elog "the Add-on manager." + fi +} diff --git a/www-misc/Manifest.gz b/www-misc/Manifest.gz index f0b0456fdaa7..81c29698e049 100644 Binary files a/www-misc/Manifest.gz and b/www-misc/Manifest.gz differ diff --git a/www-misc/monitorix/monitorix-3.12.0.ebuild b/www-misc/monitorix/monitorix-3.12.0.ebuild index 84695d5d37fb..f76b1892b920 100644 --- a/www-misc/monitorix/monitorix-3.12.0.ebuild +++ b/www-misc/monitorix/monitorix-3.12.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.monitorix.org/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=" diff --git a/www-plugins/Manifest.gz b/www-plugins/Manifest.gz index fd0ca72fcaca..9375b4f75172 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 9bdd90a87db9..43ffac44463a 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_87.0.4280.66-1_amd64.deb 72746672 BLAKE2B 730d100753aaeaac9254794e4bddfd9871bc5499c02faa75965089d935bc69f7f39a7d9db5ea278a0600c3a062d30ad96edaf3b15ee254b300e8dcfa44fb6d13 SHA512 23158dc27fac73b093663dae01568eafe898d3c9335206d8814c747a30df564930152c2139013d393b71f477868f5206c2642ef4ac481ec9ba89a10cf4b74260 DIST google-chrome-stable_87.0.4280.66-1_amd64.deb 72726412 BLAKE2B 81902234ab4c7df0994eb98aad31f526b05b281f46920e64af492a5f885e1dc6619979006b3c34c2954f952f1327b57e0013edd2bfc634167be94d660aa5402a SHA512 c4c173a69d59c05f5b3b159fb3ed3a6b09e880083adfe07cea45b9f7a592dc3eefca70676b5bae66e679f1030c7459523f99dd61c9a28f676bc7a91d5f72662d -DIST google-chrome-unstable_88.0.4315.5-1_amd64.deb 73652632 BLAKE2B ffb039327d26c465a21a35d26abeb1cac04eeb3f8f66f9c114b07591af3a344f3f1e01d190f839227898c94fdd72e2ff0d92b52a43a081b1f96f3038dbfd8ae1 SHA512 d582a9c93602b34789152c38ac5f7cbd33b06d66e1f36cd505c5e8b6d90a746da539738f7aa06874fdb62b2a15dd5f6e90d635f7d4f11aa3d1bba42a9dc8623f +DIST google-chrome-unstable_88.0.4324.11-1_amd64.deb 75169984 BLAKE2B ff582bc5eed34ca53d7b4780993de7039dcb672f97b59565b39e474a49ad1907cfcfa1f009f0310c3989751ec12aeae9dc225fafaab244fbea15dff031316fe0 SHA512 bd3d5641588adc0abe6d9340b5ae690a3d41ddf4319cae038abebd99b646dfbbcac319ff798b6935da55518f26141f12446c9b424c09af59f5f6c91f737a4845 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-88.0.4315.5_alpha.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-88.0.4324.11_alpha.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-88.0.4315.5_alpha.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-88.0.4324.11_alpha.ebuild diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index 3fe776507722..c64cb01e14c0 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/pshs/Manifest b/www-servers/pshs/Manifest index 39271b1ded9f..d7b0b1140eab 100644 --- a/www-servers/pshs/Manifest +++ b/www-servers/pshs/Manifest @@ -1,3 +1 @@ -DIST pshs-0.3.4.tar.bz2 81435 BLAKE2B e5a72c02efbaa95f0069d2533ce4434da88a5eaf33b7025b5d83bd0679631d6ee0b1faf31a5f3b0ed3bf2e23d4500bf6f473d997cabf99d8b769f4a2c662d32f SHA512 d264b46ad54286d5c4fac601e3353c1029af75ad59f28fea5a2970dc7e9b00327a08dfdd82141c76656f07047cfce1fa35b485b2f69f0728bcf74c835def917d -DIST pshs-0.3.5.tar.bz2 79871 BLAKE2B 07322ce82d80ecc0db166672d1694902a3ae743fd5d43d79261fab66a2f08e58f990d3c5a47dd39c9d041f195cacf31d5db3546336ccc3d961709d17712adf53 SHA512 5cb0cd8950f708f0c4d7b9281e2863440c579557c285fdfda1082eebf849bfb7cd25965de05c7f7b96527eed94b95c635f8cd2d397ebfd4af12195f70b3c5648 DIST pshs-0.4.1.tar.gz 11758 BLAKE2B b3f9422c8ebd47d3de9993b93ea0438232f3ba037d7433b08875a131f449fab880a205bb62616a057328b7d6fe9c00277fbb2e886a1494d2234ab684b0a1e90f SHA512 7ecd0e5019e9778b5f2eff31b8e2f481972cf6da66e4493cff850aa1ec13a4df46e46782799ab25cecd1cc36122f797c6ae0ac2863ea604477784a79191a62d6 diff --git a/www-servers/pshs/metadata.xml b/www-servers/pshs/metadata.xml index f2777ef196ca..7e3e8077f4bb 100644 --- a/www-servers/pshs/metadata.xml +++ b/www-servers/pshs/metadata.xml @@ -8,8 +8,6 @@ Enable automatic detection of Content-Type using libmagic (sys-apps/file) - Use libnetlink (sys-apps/iproute2) to - get network interface addresses Enable generating QRCodes for server URL diff --git a/www-servers/pshs/pshs-0.3.4.ebuild b/www-servers/pshs/pshs-0.3.4.ebuild deleted file mode 100644 index 1cba5442a194..000000000000 --- a/www-servers/pshs/pshs-0.3.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Pretty small HTTP server -- a command-line tool to share files" -HOMEPAGE="https://github.com/mgorny/pshs/" -SRC_URI="https://github.com/mgorny/${PN}/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="libressl +magic +netlink qrcode ssl upnp" - -RDEPEND=">=dev-libs/libevent-2:0= - magic? ( sys-apps/file:0= ) - qrcode? ( media-gfx/qrencode:0= ) - ssl? ( >=dev-libs/libevent-2.1:0=[ssl] - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) - upnp? ( net-libs/miniupnpc:0= )" -DEPEND="${RDEPEND} - netlink? ( sys-apps/iproute2[-minimal] - >=sys-kernel/linux-headers-2.6.27 )" -# libnetlink is static only ATM - -src_configure() { - local myconf=( - $(use_enable magic libmagic) - $(use_enable netlink) - $(use_enable qrcode qrencode) - $(use_enable ssl) - $(use_enable upnp) - ) - - econf "${myconf[@]}" -} diff --git a/www-servers/pshs/pshs-0.3.5.ebuild b/www-servers/pshs/pshs-0.3.5.ebuild deleted file mode 100644 index 6b3e64295963..000000000000 --- a/www-servers/pshs/pshs-0.3.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Pretty small HTTP server -- a command-line tool to share files" -HOMEPAGE="https://github.com/mgorny/pshs/" -SRC_URI="https://github.com/mgorny/${PN}/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="libressl +magic qrcode ssl upnp" - -RDEPEND=">=dev-libs/libevent-2:0= - magic? ( sys-apps/file:0= ) - qrcode? ( media-gfx/qrencode:0= ) - ssl? ( >=dev-libs/libevent-2.1:0=[ssl] - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) - upnp? ( net-libs/miniupnpc:0= )" -DEPEND="${RDEPEND}" - -src_configure() { - local myconf=( - $(use_enable magic libmagic) - $(use_enable qrcode qrencode) - $(use_enable ssl) - $(use_enable upnp) - ) - - econf "${myconf[@]}" -} diff --git a/x11-apps/Manifest.gz b/x11-apps/Manifest.gz index b3a5e8fe5997..a0b9601ee33a 100644 Binary files a/x11-apps/Manifest.gz and b/x11-apps/Manifest.gz differ diff --git a/x11-apps/xprop/Manifest b/x11-apps/xprop/Manifest index 393dc04e58b1..3623568297aa 100644 --- a/x11-apps/xprop/Manifest +++ b/x11-apps/xprop/Manifest @@ -1 +1,2 @@ DIST xprop-1.2.4.tar.bz2 149930 BLAKE2B 93bd20c7c91d6abd9e2fdeca7864b9885ae7248c7ee3ef80a5efa1706bfef2220244b1443764fdbc042f66be8d589b111fd942c732922f05f4143e1c893da183 SHA512 6e770cb89ba87ae057858cc9f0f5498979e78c3ef66ce86361b7c646cc0b70c41a18d76e55ed7225fe715b22b62bc07c56272519a2631b92832e9403ce260da7 +DIST xprop-1.2.5.tar.bz2 151216 BLAKE2B c676a1a733f4f897bc207cd1d7ec1a6022d48d2bb9615072e2ce19c1fec7737a8c9bc0444c97f4972d85a8ec8bc1e990f559a0815eb3656f2378915095c1f85c SHA512 93cfa621fa76ca6e8e780a252c508380b6dc9db39b67bfca16bb9800f0d39110f5d18189409a8577ef79e98bf5eece17f5e23f2218ca72ae8bb04ee7b429d559 diff --git a/x11-apps/xprop/xprop-1.2.5.ebuild b/x11-apps/xprop/xprop-1.2.5.ebuild new file mode 100644 index 000000000000..8f6bae892ffd --- /dev/null +++ b/x11-apps/xprop/xprop-1.2.5.ebuild @@ -0,0 +1,14 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xorg-3 + +DESCRIPTION="property displayer for X" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + +RDEPEND="x11-libs/libX11" +DEPEND="${RDEPEND} + x11-base/xorg-proto" diff --git a/x11-drivers/Manifest.gz b/x11-drivers/Manifest.gz index 7ef09b9f1ded..79373784a80a 100644 Binary files a/x11-drivers/Manifest.gz and b/x11-drivers/Manifest.gz differ diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r4.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r5.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r4.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r5.ebuild index 123424138e83..dc837fe77a47 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r4.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r5.ebuild @@ -45,7 +45,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r4.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r5.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r4.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r5.ebuild index 0aa995c49b6b..882ac5f16862 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r4.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.138-r5.ebuild @@ -45,7 +45,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r6.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r7.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r6.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r7.ebuild index 1cf485cc4a82..cd439460cca3 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r6.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r7.ebuild @@ -40,7 +40,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r2.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r3.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r2.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r3.ebuild index d4cb4d9d301e..f9b8f8b34862 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r2.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r3.ebuild @@ -40,7 +40,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02-r1.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02-r1.ebuild index ad31e621da66..3574dc2ad2db 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-450.80.02-r1.ebuild @@ -40,7 +40,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-455.28.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-455.28-r1.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-455.28.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-455.28-r1.ebuild index 90304645c0e0..98ada6ee050e 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-455.28.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-455.28-r1.ebuild @@ -40,7 +40,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-455.38.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-455.38-r1.ebuild similarity index 99% rename from x11-drivers/nvidia-drivers/nvidia-drivers-455.38.ebuild rename to x11-drivers/nvidia-drivers/nvidia-drivers-455.38-r1.ebuild index 26d200091cfb..836ce3fa1243 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-455.38.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-455.38-r1.ebuild @@ -40,7 +40,7 @@ COMMON=" x11-libs/gtk+:3 ) x11-libs/cairo - x11-libs/gdk-pixbuf[X] + x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index b399080cb5a7..c1e9b04a68e5 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libxcb/files/libxcb-1.14-tests-don-t-use-deprecated-fail_unless-check-API.patch b/x11-libs/libxcb/files/libxcb-1.14-tests-don-t-use-deprecated-fail_unless-check-API.patch new file mode 100644 index 000000000000..cc7f22ba4e9d --- /dev/null +++ b/x11-libs/libxcb/files/libxcb-1.14-tests-don-t-use-deprecated-fail_unless-check-API.patch @@ -0,0 +1,86 @@ +From f01f3c378eb0168fbb055c7be1c2d08a7acd3752 Mon Sep 17 00:00:00 2001 +From: Ran Benita +Date: Tue, 17 Nov 2020 23:43:06 +0200 +Subject: [PATCH] tests: don't use deprecated fail_unless check API + +It causes errors like this when running make check: + +check_public.c:40:24: error: too many arguments for format [-Werror=format-extra-args] + 40 | fail_unless(success, "unexpected parse failure %sfor '%s'", test_string[test_type], name); + +Closes: https://gitlab.freedesktop.org/xorg/lib/libxcb/-/issues/49 +Tested-by: Matt Turner +Signed-off-by: Ran Benita +--- + configure.ac | 2 +- + tests/check_public.c | 30 +++++++++++++++--------------- + 2 files changed, 16 insertions(+), 16 deletions(-) + +diff --git a/tests/check_public.c b/tests/check_public.c +index 2094bfe..aed40c8 100644 +--- a/tests/check_public.c ++++ b/tests/check_public.c +@@ -37,18 +37,18 @@ static void parse_display_pass(const char *name, const char *host, const int dis + got_display = got_screen = -42; + mark_point(); + success = xcb_parse_display(argument, &got_host, &got_display, &got_screen); +- fail_unless(success, "unexpected parse failure %sfor '%s'", test_string[test_type], name); +- fail_unless(strcmp(host, got_host) == 0, "parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host); +- fail_unless(display == got_display, "parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display); +- fail_unless(screen == got_screen, "parse %sproduced unexpected screen '%d' for '%s': expected '%d'", test_string[test_type], got_screen, name, screen); ++ ck_assert_msg(success, "unexpected parse failure %sfor '%s'", test_string[test_type], name); ++ ck_assert_msg(strcmp(host, got_host) == 0, "parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host); ++ ck_assert_msg(display == got_display, "parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display); ++ ck_assert_msg(screen == got_screen, "parse %sproduced unexpected screen '%d' for '%s': expected '%d'", test_string[test_type], got_screen, name, screen); + + got_host = (char *) -1; + got_display = got_screen = -42; + mark_point(); + success = xcb_parse_display(argument, &got_host, &got_display, 0); +- fail_unless(success, "unexpected screenless parse failure %sfor '%s'", test_string[test_type], name); +- fail_unless(strcmp(host, got_host) == 0, "screenless parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host); +- fail_unless(display == got_display, "screenless parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display); ++ ck_assert_msg(success, "unexpected screenless parse failure %sfor '%s'", test_string[test_type], name); ++ ck_assert_msg(strcmp(host, got_host) == 0, "screenless parse %sproduced unexpected hostname '%s' for '%s': expected '%s'", test_string[test_type], got_host, name, host); ++ ck_assert_msg(display == got_display, "screenless parse %sproduced unexpected display '%d' for '%s': expected '%d'", test_string[test_type], got_display, name, display); + } + putenv("DISPLAY="); + } +@@ -79,18 +79,18 @@ static void parse_display_fail(const char *name) + got_display = got_screen = -42; + mark_point(); + success = xcb_parse_display(argument, &got_host, &got_display, &got_screen); +- fail_unless(!success, "unexpected parse success %sfor '%s'", test_string[test_type], name); +- fail_unless(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host); +- fail_unless(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display); +- fail_unless(got_screen == -42, "screen changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_screen); ++ ck_assert_msg(!success, "unexpected parse success %sfor '%s'", test_string[test_type], name); ++ ck_assert_msg(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host); ++ ck_assert_msg(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display); ++ ck_assert_msg(got_screen == -42, "screen changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_screen); + + got_host = (char *) -1; + got_display = got_screen = -42; + mark_point(); + success = xcb_parse_display(argument, &got_host, &got_display, 0); +- fail_unless(!success, "unexpected screenless parse success %sfor '%s'", test_string[test_type], name); +- fail_unless(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host); +- fail_unless(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display); ++ ck_assert_msg(!success, "unexpected screenless parse success %sfor '%s'", test_string[test_type], name); ++ ck_assert_msg(got_host == (char *) -1, "host changed on parse failure %sfor '%s': got %p", test_string[test_type], name, got_host); ++ ck_assert_msg(got_display == -42, "display changed on parse failure %sfor '%s': got %d", test_string[test_type], name, got_display); + } + putenv("DISPLAY="); + } +@@ -183,7 +183,7 @@ END_TEST + + static void popcount_eq(uint32_t bits, int count) + { +- fail_unless(xcb_popcount(bits) == count, "unexpected popcount(%08x) != %d", bits, count); ++ ck_assert_msg(xcb_popcount(bits) == count, "unexpected popcount(%08x) != %d", bits, count); + } + + START_TEST(popcount) +-- +2.26.2 + diff --git a/x11-libs/libxcb/libxcb-1.14.ebuild b/x11-libs/libxcb/libxcb-1.14.ebuild index fce6c58c9a17..979e3d9e1894 100644 --- a/x11-libs/libxcb/libxcb-1.14.ebuild +++ b/x11-libs/libxcb/libxcb-1.14.ebuild @@ -34,6 +34,10 @@ BDEPEND="${PYTHON_DEPS} $(python_gen_any_dep '>=x11-base/xcb-proto-1.14[${PYTHON_USEDEP}]') " +PATCHES=( + "${FILESDIR}"/${P}-tests-don-t-use-deprecated-fail_unless-check-API.patch +) + python_check_deps() { has_version -b ">=x11-base/xcb-proto-1.14[${PYTHON_USEDEP}]" } diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index c4ca13da30ca..bd842ea0a0b2 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/screengrab/screengrab-2.0.1.ebuild b/x11-misc/screengrab/screengrab-2.0.1.ebuild index 37ef4c7ac246..d5aa7c5ddc56 100644 --- a/x11-misc/screengrab/screengrab-2.0.1.ebuild +++ b/x11-misc/screengrab/screengrab-2.0.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" LICENSE="GPL-2 GPL-2+ LGPL-2.1+" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 x86" IUSE="" BDEPEND="dev-qt/linguist-tools:5" diff --git a/x11-misc/xscreensaver/xscreensaver-5.38-r1.ebuild b/x11-misc/xscreensaver/xscreensaver-5.38-r2.ebuild similarity index 96% rename from x11-misc/xscreensaver/xscreensaver-5.38-r1.ebuild rename to x11-misc/xscreensaver/xscreensaver-5.38-r2.ebuild index 315cf9b7a9ce..c45519def6dc 100644 --- a/x11-misc/xscreensaver/xscreensaver-5.38-r1.ebuild +++ b/x11-misc/xscreensaver/xscreensaver-5.38-r2.ebuild @@ -21,7 +21,13 @@ COMMON_DEPEND=" media-libs/netpbm x11-apps/appres x11-apps/xwininfo - x11-libs/gdk-pixbuf:2[X] + || ( + ( + x11-libs/gdk-pixbuf-xlib + >=x11-libs/gdk-pixbuf-2.42.0:2 + ) + =x11-libs/gdk-pixbuf-2.42.0:2 + ) + -Date: Sat, 11 Apr 2020 15:43:55 +0200 -Subject: Fix memory leak when reconnecting DP monitor (Bug #16314) - -Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b@gmail.com> ---- - src/xfce-backdrop.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c -index bd9180e6..955e51f8 100644 ---- a/src/xfce-backdrop.c -+++ b/src/xfce-backdrop.c -@@ -1599,6 +1599,11 @@ xfce_backdrop_image_data_release(XfceBackdropImageData *image_data) - - if(image_data->loader) - g_object_unref(image_data->loader); -+ -+ if(image_data->backdrop) { -+ g_object_unref(image_data->backdrop); -+ image_data->backdrop = NULL; -+ } - } - - /** -@@ -1671,6 +1676,7 @@ xfce_backdrop_generate_async(XfceBackdrop *backdrop) - backdrop->priv->image_data = image_data; - - image_data->backdrop = backdrop; -+ g_object_ref(backdrop); - image_data->loader = gdk_pixbuf_loader_new(); - image_data->cancellable = g_cancellable_new(); - image_data->image_buffer = g_new0(guchar, XFCE_BACKDROP_BUFFER_SIZE); --- -cgit v1.2.3 - diff --git a/xfce-base/xfdesktop/xfdesktop-4.14.2-r1.ebuild b/xfce-base/xfdesktop/xfdesktop-4.14.2-r1.ebuild deleted file mode 100644 index 36257356e8ca..000000000000 --- a/xfce-base/xfdesktop/xfdesktop-4.14.2-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="Desktop manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="debug libnotify +thunar" - -RDEPEND=">=x11-libs/cairo-1.12 - >=dev-libs/glib-2.42 - >=x11-libs/gtk+-3.22:3 - >=x11-libs/libwnck-3.14:3 - x11-libs/libX11 - >=xfce-base/exo-0.11:= - >=xfce-base/garcon-0.6:= - >=xfce-base/libxfce4ui-4.13:= - >=xfce-base/libxfce4util-4.13:= - >=xfce-base/xfconf-4.12.1:= - libnotify? ( >=x11-libs/libnotify-0.7:= ) - thunar? ( >=xfce-base/thunar-1.7:= )" -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-memleak.patch -) - -src_configure() { - local myconf=( - $(use_enable thunar file-icons) - $(use_enable thunar thunarx) - $(use_enable libnotify notifications) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-base/xfdesktop/xfdesktop-4.15.0.ebuild b/xfce-base/xfdesktop/xfdesktop-4.15.0.ebuild deleted file mode 100644 index c0250e01fe7a..000000000000 --- a/xfce-base/xfdesktop/xfdesktop-4.15.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 - -inherit xdg-utils - -DESCRIPTION="Desktop manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="debug libnotify +thunar" - -RDEPEND=">=x11-libs/cairo-1.12 - >=dev-libs/glib-2.42 - >=x11-libs/gtk+-3.22:3 - >=x11-libs/libwnck-3.14:3 - x11-libs/libX11 - >=xfce-base/exo-0.11:= - >=xfce-base/garcon-0.6:= - >=xfce-base/libxfce4ui-4.13:= - >=xfce-base/libxfce4util-4.13:= - >=xfce-base/xfconf-4.12.1:= - libnotify? ( >=x11-libs/libnotify-0.7:= ) - thunar? ( >=xfce-base/thunar-1.7:= )" -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -src_configure() { - local myconf=( - $(use_enable thunar file-icons) - $(use_enable thunar thunarx) - $(use_enable libnotify notifications) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest index 22a2ccf59121..ba0c673daac5 100644 --- a/xfce-base/xfwm4/Manifest +++ b/xfce-base/xfwm4/Manifest @@ -1,6 +1,2 @@ -DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3 SHA512 9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71bbbbfca81f37ba0ce19477831bb1da858c839135005b8f2 -DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b SHA512 d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a SHA512 1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee -DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a9555542a1794000a768765a5b98e1e381367260df1d503ba SHA512 ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c -DIST xfwm4-4.15.2.tar.bz2 1180556 BLAKE2B c7ec0e03ec7693e04ffe19a3f35b5c24d70ce5655f28177b48b5aaa68587d460480627f43cc2282c80cc0b296683a0ff75e796ac7abd1e08b5cb96ac53c77952 SHA512 710060aec978820d84275eb269bd9b803695458a411b5c17c2ab7a5900f63caa3613c5ed7fd956f4333926302666828b7849fedc53390f56053a7000eaf0100e DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475 SHA512 6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild deleted file mode 100644 index d7d6669f20a2..000000000000 --- a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="Window manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="opengl startup-notification +xcomposite +xpresent" - -RDEPEND=">=dev-libs/glib-2.20 - >=x11-libs/gtk+-3.20:3 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/pango - >=x11-libs/libwnck-3.14:3 - >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.12:= - >=xfce-base/xfconf-4.13:= - opengl? ( media-libs/libepoxy:=[X(+)] ) - startup-notification? ( x11-libs/startup-notification ) - xpresent? ( x11-libs/libXpresent ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes - )" -# libICE/libSM: not really used anywhere but checked by configure -# https://bugzilla.xfce.org/show_bug.cgi?id=11914 -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - x11-libs/libICE - x11-libs/libSM - xfce-base/exo - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO ) - -src_configure() { - local myconf=( - $(use_enable opengl epoxy) - $(use_enable startup-notification) - --enable-xsync - --enable-render - --enable-randr - $(use_enable xpresent) - $(use_enable xcomposite compositor) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild deleted file mode 100644 index 58a16b960ecc..000000000000 --- a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="Window manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="opengl startup-notification +xcomposite +xpresent" - -RDEPEND=">=dev-libs/glib-2.20 - >=x11-libs/gtk+-3.20:3 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXres - x11-libs/pango - >=x11-libs/libwnck-3.14:3 - >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.12:= - >=xfce-base/xfconf-4.13:= - opengl? ( media-libs/libepoxy:=[X(+)] ) - startup-notification? ( x11-libs/startup-notification ) - xpresent? ( x11-libs/libXpresent ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes - )" -# libICE/libSM: not really used anywhere but checked by configure -# https://bugzilla.xfce.org/show_bug.cgi?id=11914 -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - x11-libs/libICE - x11-libs/libSM - xfce-base/exo - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO ) - -src_configure() { - local myconf=( - $(use_enable opengl epoxy) - $(use_enable startup-notification) - --enable-xsync - --enable-render - --enable-randr - $(use_enable xpresent) - $(use_enable xcomposite compositor) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-base/xfwm4/xfwm4-4.15.1.ebuild b/xfce-base/xfwm4/xfwm4-4.15.1.ebuild deleted file mode 100644 index 77ed670eb91b..000000000000 --- a/xfce-base/xfwm4/xfwm4-4.15.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="Window manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="opengl startup-notification +xcomposite +xpresent" - -RDEPEND=">=dev-libs/glib-2.20 - >=x11-libs/gtk+-3.20:3 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXres - x11-libs/pango - >=x11-libs/libwnck-3.14:3 - >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.12:= - >=xfce-base/xfconf-4.13:= - opengl? ( media-libs/libepoxy:=[X(+)] ) - startup-notification? ( x11-libs/startup-notification ) - xpresent? ( x11-libs/libXpresent ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes - )" -# libICE/libSM: not really used anywhere but checked by configure -# https://bugzilla.xfce.org/show_bug.cgi?id=11914 -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - x11-libs/libICE - x11-libs/libSM - xfce-base/exo - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO ) - -src_configure() { - local myconf=( - $(use_enable opengl epoxy) - $(use_enable startup-notification) - --enable-xsync - --enable-render - --enable-randr - $(use_enable xpresent) - $(use_enable xcomposite compositor) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-base/xfwm4/xfwm4-4.15.2.ebuild b/xfce-base/xfwm4/xfwm4-4.15.2.ebuild deleted file mode 100644 index bf9677a00866..000000000000 --- a/xfce-base/xfwm4/xfwm4-4.15.2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="Window manager for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="opengl startup-notification +xcomposite +xpresent" - -RDEPEND=">=dev-libs/glib-2.20 - >=x11-libs/gtk+-3.20:3 - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXres - x11-libs/pango - >=x11-libs/libwnck-3.14:3 - >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.12:= - >=xfce-base/xfconf-4.13:= - opengl? ( media-libs/libepoxy:=[X(+)] ) - startup-notification? ( x11-libs/startup-notification ) - xpresent? ( x11-libs/libXpresent ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes - )" -# libICE/libSM: not really used anywhere but checked by configure -# https://bugzilla.xfce.org/show_bug.cgi?id=11914 -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - x11-libs/libICE - x11-libs/libSM - xfce-base/exo - virtual/pkgconfig" - -src_configure() { - local myconf=( - $(use_enable opengl epoxy) - $(use_enable startup-notification) - --enable-xsync - --enable-render - --enable-randr - $(use_enable xpresent) - $(use_enable xcomposite compositor) - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz index e96dda6243b0..669e9c69a1f0 100644 Binary files a/xfce-extra/Manifest.gz and b/xfce-extra/Manifest.gz differ diff --git a/xfce-extra/xfce4-dict/Manifest b/xfce-extra/xfce4-dict/Manifest index 4a8eb05287fd..465f75df34f5 100644 --- a/xfce-extra/xfce4-dict/Manifest +++ b/xfce-extra/xfce4-dict/Manifest @@ -1,2 +1 @@ -DIST xfce4-dict-0.8.3.tar.bz2 491964 BLAKE2B 8435ea8d176301b73e34e7cb7fc2383b07e5fb5b0e9ff31c825cb51211358642771c1526971924c8e4a59c046b7133b6f82d86cfa739e68cfb89dffd13a2a65e SHA512 d4779a928e351c06d8866d1eefcf2efb5f364b64591a76abd19b87ac08905196b436725db3660e694b7071a534ebd9b08f298945a515fcaf335b74ce15eb0617 DIST xfce4-dict-0.8.4.tar.bz2 526227 BLAKE2B da8ade9ad62dfa086c1550868d28883c1a87e90839d164f52abe92189c62981b0e3b33fc428b805d608871e1c5afb0ec9df94d5239eeeed15e16372b2592e1df SHA512 f662b94671f2179cc93010e9ff6ad7f3425cfafeb8d7c635fefb8e816d78273f0135d6c7ff3ed143e5e01985eb4275ac89827d197ed059fbfa79df69b327f253 diff --git a/xfce-extra/xfce4-dict/xfce4-dict-0.8.3.ebuild b/xfce-extra/xfce4-dict/xfce4-dict-0.8.3.ebuild deleted file mode 100644 index c341080b2a87..000000000000 --- a/xfce-extra/xfce4-dict/xfce4-dict-0.8.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit xdg-utils - -DESCRIPTION="A dict.org querying application and panel plug-in for the Xfce desktop" -HOMEPAGE="https://goodies.xfce.org/projects/applications/xfce4-dict" -SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=">=dev-libs/glib-2.24 - >=x11-libs/gtk+-3.22:3 - x11-libs/libX11 - >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.12:= - >=xfce-base/xfce4-panel-4.10:=" -DEPEND="${RDEPEND} - dev-util/gdbus-codegen - dev-util/intltool - virtual/pkgconfig" - -src_configure() { - econf --libexecdir="${EPREFIX}"/usr/$(get_libdir) -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete || die -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}