diff --git a/Manifest.files.gz b/Manifest.files.gz index a82b523419da..e6db4f4115de 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index b47aa87c58ce..b03d48e051f3 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/xz-utils/Manifest b/app-arch/xz-utils/Manifest index 37aea0d0163a..9b4fc5979f28 100644 --- a/app-arch/xz-utils/Manifest +++ b/app-arch/xz-utils/Manifest @@ -1 +1,2 @@ DIST xz-5.2.4.tar.gz 1572354 BLAKE2B 877242324afd3c7eb21d3a9414c53843f4d1bb089206e8e545e280b32ff5372f7fb4a1b0c27cb6fdf0d0a27a668e9772ecc3fffc181df95d081ca9c2e987b83b SHA512 e5bf6eb88365d2dbdc774db49261fb9fae0544ed297891fc20f1ed223f4072cb0357cbd98146ac35b6d29410a12b6739bbd111cd57d4a225bef255ed46988578 +DIST xz-5.2.5.tar.gz 1791345 BLAKE2B aded57324e129572c41646b3cc3b0b59a459452d9338d9245663b63dac2a463fb1f1b2b1d2d4ad3c09cb71fb8439df52cd94f24db99e782fc899b94a288a3043 SHA512 7443674247deda2935220fbc4dfc7665e5bb5a260be8ad858c8bd7d7b9f0f868f04ea45e62eb17c0a5e6a2de7c7500ad2d201e2d668c48ca29bd9eea5a73a3ce diff --git a/app-arch/xz-utils/xz-utils-5.2.5.ebuild b/app-arch/xz-utils/xz-utils-5.2.5.ebuild new file mode 100644 index 000000000000..2aded48ce672 --- /dev/null +++ b/app-arch/xz-utils/xz-utils-5.2.5.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Remember: we cannot leverage autotools in this ebuild in order +# to avoid circular deps with autotools + +EAPI=7 + +inherit multilib toolchain-funcs libtool multilib-minimal preserve-libs usr-ldscript + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://git.tukaani.org/xz.git" + inherit git-r3 autotools + SRC_URI="" + BDEPEND="sys-devel/gettext dev-vcs/cvs >=sys-devel/libtool-2" #272880 286068 +else + MY_P="${PN/-utils}-${PV/_}" + SRC_URI="https://tukaani.org/xz/${MY_P}.tar.gz" + [[ "${PV}" == *_alpha* ]] || [[ "${PV}" == *_beta* ]] || \ + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~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" + S="${WORKDIR}/${MY_P}" +fi + +DESCRIPTION="utils for managing LZMA compressed files" +HOMEPAGE="https://tukaani.org/xz/" + +# See top-level COPYING file as it outlines the various pieces and their licenses. +LICENSE="public-domain LGPL-2.1+ GPL-2+" +SLOT="0" +IUSE="elibc_FreeBSD +extra-filters nls static-libs +threads" + +RDEPEND="! 10) -+ if (psize >= 8) -- psize = 10; -+ psize = 8; -+ else if (psize >= 4) -+ psize = 4; -+ else if (psize >= 2) -+ psize = 2; -- if (psize == 0) -+ else - psize = 1; - psize *= 1024; - diff --git a/app-editors/nvi/files/nvi-1.81.6-db44.patch b/app-editors/nvi/files/nvi-1.81.6-db44.patch deleted file mode 100644 index 4d4c75d2cb35..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-db44.patch +++ /dev/null @@ -1,38 +0,0 @@ - - First part is adapted from http://cvsweb.se.netbsd.org/cgi-bin/bsdweb.cgi/pkgsrc/editors/nvi/patches/patch-aa?rev=1.3;content-type=text/plain - ---- a/common/db.h -+++ b/common/db.h -@@ -4,7 +4,7 @@ - #define DB_BUFFER_SMALL ENOMEM - #endif - --#if DB_VERSION_MAJOR >= 3 && DB_VERSION_MINOR >= 1 -+#if (DB_VERSION_MAJOR >= 3 && DB_VERSION_MINOR >= 1) || DB_VERSION_MAJOR > 3 - #define db_env_open(env,path,flags,mode) \ - (env)->open(env, path, flags, mode) - #define db_env_remove(env,path,flags) \ -@@ -16,7 +16,10 @@ - (env)->remove(env, path, NULL, flags) - #endif - --#if DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 1 -+# if (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 4) || DB_VERSION_MAJOR > 4 -+#define db_open(db,file,type,flags,mode) \ -+ (db)->open(db, NULL, file, NULL, type, flags | DB_CREATE, mode) -+#elif DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1 - #define db_open(db,file,type,flags,mode) \ - (db)->open(db, NULL, file, NULL, type, flags, mode) - #else ---- a/common/msg.c -+++ b/common/msg.c -@@ -724,7 +724,8 @@ - p = buf; - } else - p = file; -- if ((sp->db_error = db_create(&db, 0, 0)) != 0 || -+ if (access(p, R_OK) != 0 || -+ (sp->db_error = db_create(&db, 0, 0)) != 0 || - (sp->db_error = db->set_re_source(db, p)) != 0 || - (sp->db_error = db_open(db, NULL, DB_RECNO, 0, 0)) != 0) { - if (first) { diff --git a/app-editors/nvi/files/nvi-1.81.6-perl-as-needed.patch b/app-editors/nvi/files/nvi-1.81.6-perl-as-needed.patch deleted file mode 100644 index adf75b69cb35..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-perl-as-needed.patch +++ /dev/null @@ -1,94 +0,0 @@ ---- a/dist/configure.in -+++ b/dist/configure.in -@@ -105,7 +105,7 @@ - - dnl A/UX has a broken getopt(3), strpbrk(3). - case "$host_os" in --aux*) LIBOBJS="getopt.o strpbrk.o $LIBOBJS";; -+aux*) LIBOBJS="libvi_la-getopt.o libvi_la-strpbrk.o $LIBOBJS";; - esac - - dnl Ultrix has a broken POSIX.1 VDISABLE value. -@@ -434,7 +434,7 @@ - -e 'ldopts'` - perlldflags=`cd $srcdir;$vi_cv_path_perl -MExtUtils::Embed \ - -e 'ccdlflags'` -- LIBOBJS="perl.o perlxsi.o perlsfio.o $LIBOBJS" -+ LIBOBJS="libvi_la-perl.o libvi_la-perlxsi.o libvi_la-perlsfio.o $LIBOBJS" - AC_DEFINE(HAVE_PERL_INTERP) - AC_CACHE_CHECK([whether we need to use perl's setenv], - vi_cv_perl_setenv, [ -@@ -471,7 +471,7 @@ - AC_MSG_ERROR([No Tcl library found;]) - fi - . $vi_cv_tclconfig -- LIBOBJS="tcl.o $LIBOBJS" -+ LIBOBJS="libvi_la-tcl.o $LIBOBJS" - LIBS="$TCL_LIB_SPEC $TCL_LIBS $LIBS" - AC_DEFINE(HAVE_TCL_INTERP) - fi -@@ -607,12 +607,12 @@ - - dnl If we needed setenv or unsetenv, add in the clib/env.c replacement file. - if test "$need_env" = yes; then -- LIBOBJS="env.o $LIBOBJS" -+ LIBOBJS="libvi_la-env.o $LIBOBJS" - fi - - dnl If we need strsep, add it and define it so we get a prototype. - if test "$need_strsep" = yes; then -- LIBOBJS="strsep.o $LIBOBJS" -+ LIBOBJS="libvi_la-strsep.o $LIBOBJS" - fi - - dnl Check for fcntl/flock -@@ -1003,7 +1003,7 @@ - PATH="$OLDPATH" - - AC_DEFINE(USE_DYNAMIC_LOADING) -- LIBOBJS="dldb.o $LIBOBJS" -+ LIBOBJS="libvi_la-dldb.o $LIBOBJS" - dl_src=../common/dldb.c - LIBS="-ldl $LIBS" - else -@@ -1046,9 +1046,9 @@ - CPPFLAGS="-I$vi_cv_dbsrc/include_auto $CPPFLAGS" - CPPFLAGS="-I$with_db_build $CPPFLAGS" - AC_DEFINE(USE_DB4_LOGGING) -- LIBOBJS="log4.o vi_auto.o vi_rec.o $LIBOBJS" -+ LIBOBJS="libvi_la-log4.o libvi_la-vi_auto.o libvi_la-vi_rec.o $LIBOBJS" - else -- LIBOBJS="log.o $LIBOBJS" -+ LIBOBJS="libvi_la-log.o $LIBOBJS" - fi - - dnl We compile in nvi's RE routines unless the user specifies otherwise. -@@ -1064,7 +1064,7 @@ - case "$vi_cv_re_lib" in - "bundled RE") - CPPFLAGS="-I\$(visrcdir)/regex $CPPFLAGS" -- LIBOBJS="regcomp.o regerror.o regexec.o regfree.o $LIBOBJS";; -+ LIBOBJS="libvi_la-regcomp.o libvi_la-regerror.o libvi_la-regexec.o libvi_la-regfree.o $LIBOBJS";; - "other RE") - ;; - esac ---- a/dist/Makefile.am -+++ b/dist/Makefile.am -@@ -169,12 +169,15 @@ - $(visrcdir)/common/pthread.c \ - $(visrcdir)/common/vi_auto.c \ - $(visrcdir)/common/vi_rec.c \ -- $(visrcdir)/perl_api/perl.xs \ -+ perl.c \ - $(visrcdir)/perl_api/perlsfio.c \ -+ perlxsi.c \ - $(visrcdir)/tcl_api/tcl.c - # Is this the way to do it ? - libvi_la_DEPENDENCIES = @LTLIBOBJS@ --libvi_la_LIBADD = @LTLIBOBJS@ -+libvi_la_LIBADD = @LTLIBOBJS@ @perllibs@ -+libvi_la_CPPFLAGS = @perlldflags@ $(AM_CPPFLAGS) -+libvi_la_LDFLAGS = @perlldflags@ - - bin_PROGRAMS = @vi_programs@ @vi_ipc@ - EXTRA_PROGRAMS = vi vi-ipc vi-motif vi-gtk diff --git a/app-editors/nvi/files/nvi-1.81.6-perl-shortnames.patch b/app-editors/nvi/files/nvi-1.81.6-perl-shortnames.patch deleted file mode 100644 index 3567646688e7..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-perl-shortnames.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/perl_api/perlsfio.c -+++ b/perl_api/perlsfio.c -@@ -32,6 +32,7 @@ - /* perl redefines them - * avoid warnings - */ -+#undef re_compile - #undef USE_DYNAMIC_LOADING - #undef DEBUG - #undef PACKAGE ---- a/perl_api/perl.xs -+++ b/perl_api/perl.xs -@@ -38,6 +38,7 @@ - /* perl redefines them - * avoid warnings - */ -+#undef re_compile - #undef USE_DYNAMIC_LOADING - #undef DEBUG - #undef PACKAGE diff --git a/app-editors/nvi/files/nvi-1.81.6-printf-types.patch b/app-editors/nvi/files/nvi-1.81.6-printf-types.patch deleted file mode 100644 index 20fc47c18f25..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-printf-types.patch +++ /dev/null @@ -1,14 +0,0 @@ -lno and last are uint32_t which might be different from unsigned long - ---- a/common/msg.c -+++ b/common/msg.c -@@ -640,7 +640,8 @@ msgq_status(SCR *sp, db_recno_t lno, u_i - p += len; - } else { - t = msg_cat(sp, "027|line %lu of %lu [%ld%%]", &len); -- (void)sprintf(p, t, lno, last, (lno * 100) / last); -+ (void)sprintf(p, t, (u_long)lno, (u_long)last, -+ ((long)lno * 100L) / (long)last); - p += strlen(p); - } - } else { diff --git a/app-editors/nvi/files/nvi-1.81.6-strlen-macro-renaming.patch b/app-editors/nvi/files/nvi-1.81.6-strlen-macro-renaming.patch deleted file mode 100644 index 70a47fd93fd5..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-strlen-macro-renaming.patch +++ /dev/null @@ -1,499 +0,0 @@ -Created by: Karl Hakimian -Added by: Jesus Rivero -Added on: Feb 18, 2015 -diff -rupN nvi-1.81.6.orig/common/api.c nvi-1.81.6/common/api.c ---- nvi-1.81.6.orig/common/api.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/common/api.c 2015-02-17 11:04:50.199111784 -0800 -@@ -423,7 +423,7 @@ api_opts_get(SCR *sp, CHAR_T *name, char - switch (op->type) { - case OPT_0BOOL: - case OPT_1BOOL: -- MALLOC_RET(sp, *value, char *, STRLEN(op->name) + 2 + 1); -+ MALLOC_RET(sp, *value, char *, NVI_STRLEN(op->name) + 2 + 1); - (void)sprintf(*value, - "%s"WS, O_ISSET(sp, offset) ? "" : "no", op->name); - if (boolvalue != NULL) -diff -rupN nvi-1.81.6.orig/common/msg.c nvi-1.81.6/common/msg.c ---- nvi-1.81.6.orig/common/msg.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/common/msg.c 2015-02-17 11:04:50.203891722 -0800 -@@ -378,7 +378,7 @@ msgq_wstr(SCR *sp, mtype_t mtype, CHAR_T - msgq(sp, mtype, fmt); - return; - } -- INT2CHAR(sp, str, STRLEN(str) + 1, nstr, nlen); -+ INT2CHAR(sp, str, NVI_STRLEN(str) + 1, nstr, nlen); - msgq_str(sp, mtype, nstr, fmt); - } - -diff -rupN nvi-1.81.6.orig/common/multibyte.h nvi-1.81.6/common/multibyte.h ---- nvi-1.81.6.orig/common/multibyte.h 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/common/multibyte.h 2015-02-17 11:04:50.204262910 -0800 -@@ -12,7 +12,7 @@ typedef wchar_t CHAR_T; - typedef u_int UCHAR_T; - #define RCHAR_BIT 24 - --#define STRLEN wcslen -+#define NVI_STRLEN wcslen - #define STRTOL wcstol - #define STRTOUL wcstoul - #define SPRINTF swprintf -@@ -31,7 +31,7 @@ typedef u_char CHAR_T; - typedef u_char UCHAR_T; - #define RCHAR_BIT CHAR_BIT - --#define STRLEN strlen -+#define NVI_STRLEN strlen - #define STRTOL strtol - #define STRTOUL strtoul - #define SPRINTF snprintf -diff -rupN nvi-1.81.6.orig/common/options.c nvi-1.81.6/common/options.c ---- nvi-1.81.6.orig/common/options.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/common/options.c 2015-02-17 11:04:50.195900457 -0800 -@@ -315,7 +315,7 @@ opts_init(SCR *sp, int *oargs) - - /* Set numeric and string default values. */ - #define OI(indx, str) { \ -- a.len = STRLEN(str); \ -+ a.len = NVI_STRLEN(str); \ - if ((CHAR_T*)str != b2) /* GCC puts strings in text-space. */ \ - (void)MEMCPY(b2, str, a.len+1); \ - if (opts_set(sp, argv, NULL)) { \ -@@ -620,10 +620,10 @@ opts_set(SCR *sp, ARGS **argv, char *usa - goto badnum; - if ((nret = - nget_uslong(sp, &value, sep, &endp, 10)) != NUM_OK) { -- INT2CHAR(sp, name, STRLEN(name) + 1, -+ INT2CHAR(sp, name, NVI_STRLEN(name) + 1, - np, nlen); - p2 = msg_print(sp, np, &nf); -- INT2CHAR(sp, sep, STRLEN(sep) + 1, -+ INT2CHAR(sp, sep, NVI_STRLEN(sep) + 1, - np, nlen); - t2 = msg_print(sp, np, &nf2); - switch (nret) { -@@ -647,10 +647,10 @@ opts_set(SCR *sp, ARGS **argv, char *usa - break; - } - if (*endp && !ISBLANK(*endp)) { --badnum: INT2CHAR(sp, name, STRLEN(name) + 1, -+badnum: INT2CHAR(sp, name, NVI_STRLEN(name) + 1, - np, nlen); - p2 = msg_print(sp, np, &nf); -- INT2CHAR(sp, sep, STRLEN(sep) + 1, -+ INT2CHAR(sp, sep, NVI_STRLEN(sep) + 1, - np, nlen); - t2 = msg_print(sp, np, &nf2); - msgq(sp, M_ERR, -@@ -680,7 +680,7 @@ badnum: INT2CHAR(sp, name, STRLEN(nam - break; - - /* Report to subsystems. */ -- INT2CHAR(sp, sep, STRLEN(sep) + 1, np, nlen); -+ INT2CHAR(sp, sep, NVI_STRLEN(sep) + 1, np, nlen); - if (op->func != NULL && - op->func(sp, spo, np, &value) || - ex_optchange(sp, offset, np, &value) || -@@ -712,7 +712,7 @@ badnum: INT2CHAR(sp, name, STRLEN(nam - * Do nothing if the value is unchanged, the underlying - * functions can be expensive. - */ -- INT2CHAR(sp, sep, STRLEN(sep) + 1, np, nlen); -+ INT2CHAR(sp, sep, NVI_STRLEN(sep) + 1, np, nlen); - if (!F_ISSET(op, OPT_ALWAYS) && - O_STR(sp, offset) != NULL && - !strcmp(O_STR(sp, offset), np)) -@@ -879,7 +879,7 @@ opts_dump(SCR *sp, enum optdisp type) - } - F_CLR(&sp->opts[cnt], OPT_SELECTED); - -- curlen = STRLEN(op->name); -+ curlen = NVI_STRLEN(op->name); - switch (op->type) { - case OPT_0BOOL: - case OPT_1BOOL: -@@ -1049,7 +1049,7 @@ opts_search(CHAR_T *name) - * Check to see if the name is the prefix of one (and only one) - * option. If so, return the option. - */ -- len = STRLEN(name); -+ len = NVI_STRLEN(name); - for (found = NULL, op = optlist; op->name != NULL; ++op) { - if (op->name[0] < name[0]) - continue; -diff -rupN nvi-1.81.6.orig/dist/tags nvi-1.81.6/dist/tags ---- nvi-1.81.6.orig/dist/tags 2007-11-18 08:43:55.000000000 -0800 -+++ nvi-1.81.6/dist/tags 2015-02-17 11:04:50.225314084 -0800 -@@ -1068,8 +1068,8 @@ SPRINTF ../common/multibyte.h 37;" d - STANDARD_TAB ../common/key.h 213;" d - STRCMP ../common/multibyte.h 19;" d - STRCMP ../common/multibyte.h 38;" d --STRLEN ../common/multibyte.h 15;" d --STRLEN ../common/multibyte.h 34;" d -+NVI_STRLEN ../common/multibyte.h 15;" d -+NVI_STRLEN ../common/multibyte.h 34;" d - STRPBRK ../common/multibyte.h 20;" d - STRPBRK ../common/multibyte.h 39;" d - STRSET ../common/multibyte.h 22;" d -diff -rupN nvi-1.81.6.orig/ex/ex_argv.c nvi-1.81.6/ex/ex_argv.c ---- nvi-1.81.6.orig/ex/ex_argv.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_argv.c 2015-02-17 11:04:50.267171388 -0800 -@@ -217,7 +217,7 @@ argv_exp2(SCR *sp, EXCMD *excp, CHAR_T * - - *p = '\0'; - INT2CHAR(sp, bp + SHELLOFFSET, -- STRLEN(bp + SHELLOFFSET) + 1, np, nlen); -+ NVI_STRLEN(bp + SHELLOFFSET) + 1, np, nlen); - d = strdup(np); - rval = argv_lexp(sp, excp, d); - free (d); -@@ -332,7 +332,7 @@ argv_fexp(SCR *sp, EXCMD *excp, CHAR_T * - "115|No previous command to replace \"!\""); - return (1); - } -- len += tlen = STRLEN(exp->lastbcomm); -+ len += tlen = NVI_STRLEN(exp->lastbcomm); - off = p - bp; - ADD_SPACE_RETW(sp, bp, blen, len); - p = bp + off; -@@ -683,7 +683,7 @@ err: if (ifp != NULL) - * XXX - * Assume that all shells have -c. - */ -- INT2CHAR(sp, bp, STRLEN(bp)+1, np, nlen); -+ INT2CHAR(sp, bp, NVI_STRLEN(bp)+1, np, nlen); - execl(sh_path, sh, "-c", np, (char *)NULL); - msgq_str(sp, M_SYSERR, sh_path, "118|Error: execl: %s"); - _exit(127); -diff -rupN nvi-1.81.6.orig/ex/ex_cscope.c nvi-1.81.6/ex/ex_cscope.c ---- nvi-1.81.6.orig/ex/ex_cscope.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_cscope.c 2015-02-17 11:04:50.261539058 -0800 -@@ -140,7 +140,7 @@ ex_cscope(SCR *sp, EXCMD *cmdp) - for (; *p && isspace(*p); ++p); - } - -- INT2CHAR(sp, cmd, STRLEN(cmd) + 1, np, nlen); -+ INT2CHAR(sp, cmd, NVI_STRLEN(cmd) + 1, np, nlen); - if ((ccp = lookup_ccmd(np)) == NULL) { - usage: msgq(sp, M_ERR, "309|Use \"cscope help\" for help"); - return (1); -@@ -214,7 +214,7 @@ cscope_add(SCR *sp, EXCMD *cmdp, CHAR_T - * >1 additional args: object, too many args. - */ - cur_argc = cmdp->argc; -- if (argv_exp2(sp, cmdp, dname, STRLEN(dname))) { -+ if (argv_exp2(sp, cmdp, dname, NVI_STRLEN(dname))) { - return (1); - } - if (cmdp->argc == cur_argc) { -@@ -228,7 +228,7 @@ cscope_add(SCR *sp, EXCMD *cmdp, CHAR_T - return (1); - } - -- INT2CHAR(sp, dname, STRLEN(dname)+1, np, nlen); -+ INT2CHAR(sp, dname, NVI_STRLEN(dname)+1, np, nlen); - - /* - * The user can specify a specific file (so they can have multiple -@@ -471,7 +471,7 @@ cscope_find(SCR *sp, EXCMD *cmdp, CHAR_T - } - - /* Create the cscope command. */ -- INT2CHAR(sp, pattern, STRLEN(pattern) + 1, np, nlen); -+ INT2CHAR(sp, pattern, NVI_STRLEN(pattern) + 1, np, nlen); - np = strdup(np); - if ((tqp = create_cs_cmd(sp, np, &search)) == NULL) - goto err; -@@ -801,7 +801,7 @@ cscope_help(SCR *sp, EXCMD *cmdp, CHAR_T - char *np; - size_t nlen; - -- INT2CHAR(sp, subcmd, STRLEN(subcmd) + 1, np, nlen); -+ INT2CHAR(sp, subcmd, NVI_STRLEN(subcmd) + 1, np, nlen); - return (csc_help(sp, np)); - } - -@@ -842,7 +842,7 @@ cscope_kill(SCR *sp, EXCMD *cmdp, CHAR_T - char *np; - size_t nlen; - -- INT2CHAR(sp, cn, STRLEN(cn) + 1, np, nlen); -+ INT2CHAR(sp, cn, NVI_STRLEN(cn) + 1, np, nlen); - return (terminate(sp, NULL, atoi(np))); - } - -diff -rupN nvi-1.81.6.orig/ex/ex_filter.c nvi-1.81.6/ex/ex_filter.c ---- nvi-1.81.6.orig/ex/ex_filter.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_filter.c 2015-02-17 11:04:50.263257613 -0800 -@@ -138,7 +138,7 @@ err: if (input[0] != -1) - else - ++name; - -- INT2SYS(sp, cmd, STRLEN(cmd)+1, np, nlen); -+ INT2SYS(sp, cmd, NVI_STRLEN(cmd)+1, np, nlen); - execl(O_STR(sp, O_SHELL), name, "-c", np, (char *)NULL); - msgq_str(sp, M_SYSERR, O_STR(sp, O_SHELL), "execl: %s"); - _exit (127); -@@ -283,7 +283,7 @@ err: if (input[0] != -1) - * Ignore errors on vi file reads, to make reads prettier. It's - * completely inconsistent, and historic practice. - */ --uwait: INT2CHAR(sp, cmd, STRLEN(cmd) + 1, np, nlen); -+uwait: INT2CHAR(sp, cmd, NVI_STRLEN(cmd) + 1, np, nlen); - return (proc_wait(sp, (long)utility_pid, np, - ftype == FILTER_READ && F_ISSET(sp, SC_VI) ? 1 : 0, 0) || rval); - } -diff -rupN nvi-1.81.6.orig/ex/ex_init.c nvi-1.81.6/ex/ex_init.c ---- nvi-1.81.6.orig/ex/ex_init.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_init.c 2015-02-17 11:04:50.279419412 -0800 -@@ -61,7 +61,7 @@ ex_screen_copy(SCR *orig, SCR *sp) - - if (oexp->lastbcomm != NULL && - (nexp->lastbcomm = v_wstrdup(sp, oexp->lastbcomm, -- STRLEN(oexp->lastbcomm))) == NULL) { -+ NVI_STRLEN(oexp->lastbcomm))) == NULL) { - msgq(sp, M_SYSERR, NULL); - return(1); - } -diff -rupN nvi-1.81.6.orig/ex/ex_tag.c nvi-1.81.6/ex/ex_tag.c ---- nvi-1.81.6.orig/ex/ex_tag.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_tag.c 2015-02-17 11:04:50.275254557 -0800 -@@ -68,7 +68,7 @@ ex_tag_first(SCR *sp, CHAR_T *tagarg) - - /* Build an argument for the ex :tag command. */ - ex_cinit(sp, &cmd, C_TAG, 0, OOBLNO, OOBLNO, 0); -- argv_exp0(sp, &cmd, tagarg, STRLEN(tagarg)); -+ argv_exp0(sp, &cmd, tagarg, NVI_STRLEN(tagarg)); - - /* - * XXX -@@ -115,7 +115,7 @@ ex_tag_push(SCR *sp, EXCMD *cmdp) - - /* Taglength may limit the number of characters. */ - if ((tl = -- O_VAL(sp, O_TAGLENGTH)) != 0 && STRLEN(exp->tag_last) > tl) -+ O_VAL(sp, O_TAGLENGTH)) != 0 && NVI_STRLEN(exp->tag_last) > tl) - exp->tag_last[tl] = '\0'; - break; - case 0: -@@ -587,7 +587,7 @@ ex_tag_copy(SCR *orig, SCR *sp) - /* Copy the last tag. */ - if (oexp->tag_last != NULL && - (nexp->tag_last = v_wstrdup(sp, oexp->tag_last, -- STRLEN(oexp->tag_last))) == NULL) { -+ NVI_STRLEN(oexp->tag_last))) == NULL) { - msgq(sp, M_SYSERR, NULL); - return (1); - } -@@ -997,7 +997,7 @@ ctag_slist(SCR *sp, CHAR_T *tag) - exp = EXP(sp); - - /* Allocate and initialize the tag queue structure. */ -- INT2CHAR(sp, tag, STRLEN(tag) + 1, np, nlen); -+ INT2CHAR(sp, tag, NVI_STRLEN(tag) + 1, np, nlen); - len = nlen - 1; - CALLOC_GOTO(sp, tqp, TAGQ *, 1, sizeof(TAGQ) + len + 1); - CIRCLEQ_INIT(&tqp->tagq); -diff -rupN nvi-1.81.6.orig/ex/ex_util.c nvi-1.81.6/ex/ex_util.c ---- nvi-1.81.6.orig/ex/ex_util.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_util.c 2015-02-17 11:04:50.268378054 -0800 -@@ -153,7 +153,7 @@ ex_wemsg(SCR* sp, CHAR_T *p, exm_t which - char *np; - size_t nlen; - -- if (p) INT2CHAR(sp, p, STRLEN(p), np, nlen); -+ if (p) INT2CHAR(sp, p, NVI_STRLEN(p), np, nlen); - else np = NULL; - ex_emsg(sp, np, which); - } -diff -rupN nvi-1.81.6.orig/ex/ex_write.c nvi-1.81.6/ex/ex_write.c ---- nvi-1.81.6.orig/ex/ex_write.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ex/ex_write.c 2015-02-17 11:04:50.277249383 -0800 -@@ -158,7 +158,7 @@ exwr(SCR *sp, EXCMD *cmdp, enum which cm - ex_emsg(sp, cmdp->cmd->usage, EXM_USAGE); - return (1); - } -- if (argv_exp1(sp, cmdp, p, STRLEN(p), 1)) -+ if (argv_exp1(sp, cmdp, p, NVI_STRLEN(p), 1)) - return (1); - - /* -@@ -203,7 +203,7 @@ exwr(SCR *sp, EXCMD *cmdp, enum which cm - &cmdp->addr1, &cmdp->addr2, NULL, flags)); - - /* Build an argv so we get an argument count and file expansion. */ -- if (argv_exp2(sp, cmdp, p, STRLEN(p))) -+ if (argv_exp2(sp, cmdp, p, NVI_STRLEN(p))) - return (1); - - /* -@@ -255,7 +255,7 @@ exwr(SCR *sp, EXCMD *cmdp, enum which cm - set_alt_name(sp, name); - break; - default: -- INT2CHAR(sp, p, STRLEN(p) + 1, n, nlen); -+ INT2CHAR(sp, p, NVI_STRLEN(p) + 1, n, nlen); - ex_emsg(sp, n, EXM_FILECOUNT); - return (1); - } -diff -rupN nvi-1.81.6.orig/ip/ip_term.c nvi-1.81.6/ip/ip_term.c ---- nvi-1.81.6.orig/ip/ip_term.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/ip/ip_term.c 2015-02-17 11:04:50.280203225 -0800 -@@ -127,7 +127,7 @@ ip_optchange(SCR *sp, int offset, char * - - ipb.code = SI_EDITOPT; - ipb.str1 = (char*)opt->name; -- ipb.len1 = STRLEN(opt->name) * sizeof(CHAR_T); -+ ipb.len1 = NVI_STRLEN(opt->name) * sizeof(CHAR_T); - - (void)vi_send(ipp->o_fd, "ab1", &ipb); - return (0); -diff -rupN nvi-1.81.6.orig/perl_api/perl.xs nvi-1.81.6/perl_api/perl.xs ---- nvi-1.81.6.orig/perl_api/perl.xs 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/perl_api/perl.xs 2015-02-17 11:04:50.189684363 -0800 -@@ -326,7 +326,7 @@ perl_ex_perl(scrp, cmdp, cmdlen, f_lno, - newVIrv(pp->svid, scrp); - - istat = signal(SIGINT, my_sighandler); -- INT2CHAR(scrp, cmdp, STRLEN(cmdp)+1, np, nlen); -+ INT2CHAR(scrp, cmdp, NVI_STRLEN(cmdp)+1, np, nlen); - perl_eval(np); - signal(SIGINT, istat); - -@@ -421,7 +421,7 @@ perl_ex_perldo(scrp, cmdp, cmdlen, f_lno - /* Backwards compatibility. */ - newVIrv(pp->svid, scrp); - -- INT2CHAR(scrp, cmdp, STRLEN(cmdp)+1, np, nlen); -+ INT2CHAR(scrp, cmdp, NVI_STRLEN(cmdp)+1, np, nlen); - if (!(command = malloc(length = nlen - 1 + sizeof("sub {}")))) - return 1; - snprintf(command, length, "sub {%s}", np); -diff -rupN nvi-1.81.6.orig/regex/engine.c nvi-1.81.6/regex/engine.c ---- nvi-1.81.6.orig/regex/engine.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/regex/engine.c 2015-02-17 11:04:50.181456859 -0800 -@@ -161,7 +161,7 @@ int eflags; - stop = string + pmatch[0].rm_eo; - } else { - start = string; -- stop = start + STRLEN(start); -+ stop = start + NVI_STRLEN(start); - } - if (stop < start) - return(REG_INVARG); -diff -rupN nvi-1.81.6.orig/regex/regcomp.c nvi-1.81.6/regex/regcomp.c ---- nvi-1.81.6.orig/regex/regcomp.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/regex/regcomp.c 2015-02-17 11:04:50.175705539 -0800 -@@ -198,7 +198,7 @@ regcomp(regex_t *preg, const RCHAR_T *pa - return(REG_INVARG); - len = preg->re_endp - pattern; - } else -- len = STRLEN(pattern); -+ len = NVI_STRLEN(pattern); - - /* do the mallocs early so failure handling is easy */ - g = (struct re_guts *)malloc(sizeof(struct re_guts) + -@@ -818,7 +818,7 @@ p_b_cclass(register struct parse *p, reg - NEXT(); - len = p->next - sp; - for (cp = cclasses; cp->name != NULL; cp++) -- if (STRLEN(cp->name) == len && MEMCMP(cp->name, sp, len)) -+ if (NVI_STRLEN(cp->name) == len && MEMCMP(cp->name, sp, len)) - break; - if (cp->name == NULL) { - /* oops, didn't find it */ -@@ -889,7 +889,7 @@ p_b_coll_elem(register struct parse *p, - } - len = p->next - sp; - for (cp = cnames; cp->name != NULL; cp++) -- if (STRLEN(cp->name) == len && MEMCMP(cp->name, sp, len)) -+ if (NVI_STRLEN(cp->name) == len && MEMCMP(cp->name, sp, len)) - return(cp->code); /* known name */ - if (len == 1) - return(*sp); /* single character */ -diff -rupN nvi-1.81.6.orig/vi/v_event.c nvi-1.81.6/vi/v_event.c ---- nvi-1.81.6.orig/vi/v_event.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/vi/v_event.c 2015-02-17 11:04:50.242966563 -0800 -@@ -97,7 +97,7 @@ v_editopt(SCR *sp, VICMD *vp) - size_t nlen; - char *p2; - -- INT2CHAR(sp, vp->ev.e_str2, STRLEN(vp->ev.e_str2)+1, np, nlen); -+ INT2CHAR(sp, vp->ev.e_str2, NVI_STRLEN(vp->ev.e_str2)+1, np, nlen); - p2 = strdup(np); - rval = api_opts_set(sp, vp->ev.e_str1, p2, - vp->ev.e_val1, vp->ev.e_val1); -@@ -135,7 +135,7 @@ v_tag(SCR *sp, VICMD *vp) - return (1); - - ex_cinit(sp, &cmd, C_TAG, 0, OOBLNO, OOBLNO, 0); -- argv_exp0(sp, &cmd, VIP(sp)->keyw, STRLEN(VIP(sp)->keyw)); -+ argv_exp0(sp, &cmd, VIP(sp)->keyw, NVI_STRLEN(VIP(sp)->keyw)); - return (v_exec_ex(sp, vp, &cmd)); - } - -@@ -167,7 +167,7 @@ v_tagsplit(SCR *sp, VICMD *vp) - - ex_cinit(sp, &cmd, C_TAG, 0, OOBLNO, OOBLNO, 0); - F_SET(&cmd, E_NEWSCREEN); -- argv_exp0(sp, &cmd, VIP(sp)->keyw, STRLEN(VIP(sp)->keyw)); -+ argv_exp0(sp, &cmd, VIP(sp)->keyw, NVI_STRLEN(VIP(sp)->keyw)); - return (v_exec_ex(sp, vp, &cmd)); - } - -diff -rupN nvi-1.81.6.orig/vi/v_ex.c nvi-1.81.6/vi/v_ex.c ---- nvi-1.81.6.orig/vi/v_ex.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/vi/v_ex.c 2015-02-17 11:04:50.246380280 -0800 -@@ -210,7 +210,7 @@ v_tagpush(SCR *sp, VICMD *vp) - EXCMD cmd; - - ex_cinit(sp, &cmd, C_TAG, 0, OOBLNO, 0, 0); -- argv_exp0(sp, &cmd, VIP(sp)->keyw, STRLEN(VIP(sp)->keyw) + 1); -+ argv_exp0(sp, &cmd, VIP(sp)->keyw, NVI_STRLEN(VIP(sp)->keyw) + 1); - return (v_exec_ex(sp, vp, &cmd)); - } - -diff -rupN nvi-1.81.6.orig/vi/vs_msg.c nvi-1.81.6/vi/vs_msg.c ---- nvi-1.81.6.orig/vi/vs_msg.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/vi/vs_msg.c 2015-02-17 11:04:50.251093618 -0800 -@@ -175,7 +175,7 @@ vs_update(SCR *sp, const char *m1, const - */ - if (F_ISSET(sp, SC_SCR_EXWROTE)) { - if (m2 != NULL) -- INT2CHAR(sp, m2, STRLEN(m2) + 1, np, nlen); -+ INT2CHAR(sp, m2, NVI_STRLEN(m2) + 1, np, nlen); - (void)ex_printf(sp, - "%s\n", m1 == NULL? "" : m1, m2 == NULL ? "" : np); - (void)ex_fflush(sp); -@@ -203,7 +203,7 @@ vs_update(SCR *sp, const char *m1, const - } else - len = 0; - if (m2 != NULL) { -- mlen = STRLEN(m2); -+ mlen = NVI_STRLEN(m2); - if (len + mlen > sp->cols - 2) - mlen = (sp->cols - 2) - len; - (void)gp->scr_waddstr(sp, m2, mlen); -diff -rupN nvi-1.81.6.orig/vi/vs_split.c nvi-1.81.6/vi/vs_split.c ---- nvi-1.81.6.orig/vi/vs_split.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/vi/vs_split.c 2015-02-17 11:04:50.256136584 -0800 -@@ -628,7 +628,7 @@ vs_fg(SCR *sp, SCR **nspp, CHAR_T *name, - wp = sp->wp; - - if (name) -- INT2CHAR(sp, name, STRLEN(name) + 1, np, nlen); -+ INT2CHAR(sp, name, NVI_STRLEN(name) + 1, np, nlen); - else - np = NULL; - if (newscreen) -diff -rupN nvi-1.81.6.orig/vi/v_txt.c nvi-1.81.6/vi/v_txt.c ---- nvi-1.81.6.orig/vi/v_txt.c 2007-11-18 08:41:42.000000000 -0800 -+++ nvi-1.81.6/vi/v_txt.c 2015-02-17 11:04:50.240596567 -0800 -@@ -2049,7 +2049,7 @@ retry: for (len = 0, - return (0); - case 1: /* One match. */ - /* If something changed, do the exchange. */ -- nlen = STRLEN(cmd.argv[0]->bp); -+ nlen = NVI_STRLEN(cmd.argv[0]->bp); - if (len != nlen || MEMCMP(cmd.argv[0]->bp, p, len)) - break; - diff --git a/app-editors/nvi/files/nvi-1.81.6-use_pkgconfig_for_ncurses.patch b/app-editors/nvi/files/nvi-1.81.6-use_pkgconfig_for_ncurses.patch deleted file mode 100644 index a9bf7e0a06a4..000000000000 --- a/app-editors/nvi/files/nvi-1.81.6-use_pkgconfig_for_ncurses.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -uNr nvi-1.81.6.orig/dist/configure.in nvi-1.81.6/dist/configure.in ---- nvi-1.81.6.orig/dist/configure.in 2013-07-09 17:17:35.000000000 -0400 -+++ nvi-1.81.6/dist/configure.in 2013-07-09 17:18:48.000000000 -0400 -@@ -263,11 +263,13 @@ - [ --enable-gtk Build a Gtk front-end for vi.], - [vi_cv_gtk=$enableval], [vi_cv_gtk="no"]) - AC_MSG_RESULT($vi_cv_gtk) -+ -+# -+# Find pkg-config -+# -+AC_PATH_PROG(PKG_CONFIG, pkg-config, no) -+ - if test "$vi_cv_gtk" = "yes"; then -- # -- # Find pkg-config -- # -- AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - if test x$PKG_CONFIG = xno ; then - if test "$vi_cv_widechar" = "yes"; then - AC_MSG_ERROR( -@@ -531,7 +533,7 @@ - [CURSHEADER=ncursesw/ncurses.h]) - fi - vi_programs="vi $vi_programs" -- CURSLIBS="-l$vi_cv_curses" -+ CURSLIBS=`$PKG_CONFIG --libs $vi_cv_curses` - else - AC_MSG_WARN([*** No suitable curses library found.]) - if test "$vi_programs"X = X; then diff --git a/app-editors/nvi/metadata.xml b/app-editors/nvi/metadata.xml deleted file mode 100644 index f954e7f9956d..000000000000 --- a/app-editors/nvi/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - felix.janda@posteo.de - Felix Janda - - - proxy-maint@gentoo.org - Proxy Maintainers - - diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild deleted file mode 100644 index cc7f7301612c..000000000000 --- a/app-editors/nvi/nvi-1.81.6-r7.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools db-use flag-o-matic - -DESCRIPTION="Re-implementation of the classic 4BSD ex/vi" -HOMEPAGE="https://sites.google.com/a/bostic.com/keithbostic/vi" -SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos" -IUSE="perl tcl unicode" - -CDEPEND=">=sys-libs/db-4.2.52_p5:= - >=sys-libs/ncurses-5.6-r2:= - perl? ( dev-lang/perl ) - tcl? ( >=dev-lang/tcl-8.5:0= )" - -DEPEND="${CDEPEND} - virtual/pkgconfig" - -RDEPEND="${CDEPEND} - app-eselect/eselect-vi" - -REQUIRED_USE="tcl? ( !unicode )" - -PATCHES=( - "${FILESDIR}"/${P}-strlen-macro-renaming.patch - "${FILESDIR}"/${P}-db44.patch - "${FILESDIR}"/${P}-db.patch - "${FILESDIR}"/${P}-perl-as-needed.patch - "${FILESDIR}"/${P}-perl-shortnames.patch - "${FILESDIR}"/${P}-ac_config_header.patch - "${FILESDIR}"/${P}-use_pkgconfig_for_ncurses.patch - "${FILESDIR}"/${P}-printf-types.patch - ) - -src_prepare() { - default - - cd dist || die - chmod +x findconfig || die - - mv configure.{in,ac} || die - sed -i -e "s@-ldb@-l$(db_libname)@" configure.ac || die - sed -i -e "s@^install-\(.*\)-local:@install-\1-hook:@" Makefile.am || die - eautoreconf -Im4 -} - -src_configure() { - local myconf - - use perl && myconf="${myconf} --enable-perlinterp" - use unicode && myconf="${myconf} --enable-widechar" - use tcl && myconf="${myconf} --enable-tclinterp" - - append-cppflags "-D_PATH_MSGCAT=\"\\\"${EPREFIX}/usr/share/vi/catalog/\\\"\"" - append-cppflags -I"$(db_includedir)" - - # Darwin doesn't have stropts.h, bug #619416 - [[ ${CHOST} == *-darwin* ]] && export vi_cv_sys5_pty=no - - pushd dist 2>/dev/null || die - econf \ - --program-prefix=n \ - ${myconf} - popd 2>/dev/null || die -} - -src_compile() { - emake -C dist -} - -src_install() { - emake -C dist DESTDIR="${D}" install -} - -pkg_postinst() { - einfo "Setting /usr/bin/vi symlink" - eselect vi update --if-unset -} - -pkg_postrm() { - einfo "Updating /usr/bin/vi symlink" - eselect vi update --if-unset -} diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index d8406e2a25ec..2ad70900f9c5 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/meson-mode/Manifest b/app-emacs/meson-mode/Manifest new file mode 100644 index 000000000000..d7042c03cda0 --- /dev/null +++ b/app-emacs/meson-mode/Manifest @@ -0,0 +1 @@ +DIST meson-mode-0.2.tar.gz 28194 BLAKE2B a11b7659dfb7883a624706ee3a80ab2de69c3f3830d363a767e2a2fc644a9d1d946269a7d30af4ec93180341807519e5bf0bd55e1500513076e7aa07e0ec888b SHA512 05a9554f2ff1520834648ef6b7c27d09d5f9355fe980d19a67eba39e1e0a4a402e64284e17c6d544b8e95bdee3e204b79d73c6166d6d8c48683036821bad532f diff --git a/app-emacs/meson-mode/meson-mode-0.2.ebuild b/app-emacs/meson-mode/meson-mode-0.2.ebuild new file mode 100644 index 000000000000..ff33748c1148 --- /dev/null +++ b/app-emacs/meson-mode/meson-mode-0.2.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +NEED_EMACS=24 +inherit elisp + +DESCRIPTION="A GNU Emacs major mode for Meson build-system files" +HOMEPAGE="https://github.com/wentasah/meson-mode" +SRC_URI="https://github.com/wentasah/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +DOCS=( README.md ) diff --git a/app-emacs/meson-mode/metadata.xml b/app-emacs/meson-mode/metadata.xml new file mode 100644 index 000000000000..cfebf4666da4 --- /dev/null +++ b/app-emacs/meson-mode/metadata.xml @@ -0,0 +1,12 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + + wentasah/meson-mode + + diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 81e0c86a22e5..dfda0f7444a7 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/protontricks/Manifest b/app-emulation/protontricks/Manifest index 5f50d4722ebc..fe8223dd60da 100644 --- a/app-emulation/protontricks/Manifest +++ b/app-emulation/protontricks/Manifest @@ -1,2 +1 @@ -DIST protontricks-1.3.1.tar.gz 57784 BLAKE2B ed013367a2cc2384e4340379e2c23999a556ed26920ad59dfd7a8f773e490ee76e253a5fe3216e651cdcdb3e225a2e394255500c611d24f6bf9029582d55bb1f SHA512 4e33334e219db2e6679b430ee42408529478834c80c7da3b9bece4756eb27b9331d49a6a884de8a7ced5ec29d78ce831fee4cfbf6d5adcd750666b7e7a1e5607 DIST protontricks-1.4.1.tar.gz 31838 BLAKE2B b8c94a1b96fa7df14eaf1cc6d11cb96e43ae4e8c7bd232687a50cae9c79cf2d0e7864b1af0e1dc4cc20086952e1fcefeb16cb71a9c3a977f6feafad1b17d6857 SHA512 7635c9830afa3c64617514cd86edc7d7f9f33e6e81a1da995ec8bee70adc1cf8b5d9de92036c372134e408d735615b267b46a9afc9246f14ff161cb2ee1fc8f9 diff --git a/app-emulation/protontricks/protontricks-1.3.1-r1.ebuild b/app-emulation/protontricks/protontricks-1.3.1-r1.ebuild deleted file mode 100644 index 69b87925ea07..000000000000 --- a/app-emulation/protontricks/protontricks-1.3.1-r1.ebuild +++ /dev/null @@ -1,48 +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} ) - -DISTUTILS_SINGLE_IMPL=1 -inherit distutils-r1 - -DESCRIPTION="app-emulation/winetricks wrapper for Proton (Steam Play) games" -HOMEPAGE="https://github.com/Matoking/protontricks" -SRC_URI="https://codeload.github.com/Matoking/${PN}/tar.gz/${PV} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+gui" - -RDEPEND="${PYTHON_DEPS} - app-emulation/winetricks - $(python_gen_cond_dep ' - dev-python/vdf[${PYTHON_MULTI_USEDEP}] - ') - gui? ( gnome-extra/zenity - || ( - app-emulation/winetricks[gtk] - app-emulation/winetricks[kde] - ) - )" - -DOCS=(CHANGELOG.md README.md) - -distutils_enable_tests pytest - -pkg_postinst() { - elog - - if ! use gui; then - ewarn "Please note that disabling USE=gui does *not* presently remove the --gui command-line option," - ewarn "it just means using this option will fail unless gnome-extra/zenity happens to be installed." - ewarn - fi - - elog "Protontricks can only find games for which a Proton prefix already exists." - elog "Make sure to run a Proton game at least once before trying to use protontricks on it." - elog -} diff --git a/app-emulation/virt-viewer/virt-viewer-8.0.ebuild b/app-emulation/virt-viewer/virt-viewer-8.0.ebuild index 026cbc724e1e..5bb016169c9d 100644 --- a/app-emulation/virt-viewer/virt-viewer-8.0.ebuild +++ b/app-emulation/virt-viewer/virt-viewer-8.0.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://virt-manager.org/download/sources/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+libvirt sasl +spice +vnc" RDEPEND=">=dev-libs/libxml2-2.6 diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index f0421d1f9365..0a78cd70184a 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/gpyutils/gpyutils-0.4.1.ebuild b/app-portage/gpyutils/gpyutils-0.4.1.ebuild index 5f4533103136..e73c38ff958f 100644 --- a/app-portage/gpyutils/gpyutils-0.4.1.ebuild +++ b/app-portage/gpyutils/gpyutils-0.4.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=">=app-portage/gentoopm-0.3.1[${PYTHON_USEDEP}]" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index d6c41251b5d6..9f36654328d3 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/ronn/ronn-0.7.3-r3.ebuild b/app-text/ronn/ronn-0.7.3-r3.ebuild index 99bd0305abfe..f90c7a07121e 100644 --- a/app-text/ronn/ronn-0.7.3-r3.ebuild +++ b/app-text/ronn/ronn-0.7.3-r3.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/rtomayko/ronn/" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" IUSE="" diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index aff93c45e684..c1b553af16b8 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/tbb/Manifest b/dev-cpp/tbb/Manifest index 3123910d2a14..2b3890976811 100644 --- a/dev-cpp/tbb/Manifest +++ b/dev-cpp/tbb/Manifest @@ -1,3 +1,4 @@ DIST tbb-2018.20180312.tar.gz 2911740 BLAKE2B 5c6dab4a892f3b61ed0b02ea36dc41bebd5b33a22bcc3d5f2960f21e134f2eb9bccf1466193a573489e12638c0bb0bccc2da83f699968ffd62417f2d0f093289 SHA512 7ac74e714122e25f7704630d3d52992dbea54d1e761b5e487251a771f401aa864f78b8ddf11d78f38758088df387abb6987f6a2db562c86cbb28ba8f33a25680 DIST tbb-2019.8.tar.gz 2580540 BLAKE2B 1cddb0c8ade6f6363811b7f9b323a2bb7739a18114acd56e1b4a13f33904ddff8cb6aec9b4b0add995cd307ff7815f0b55ce33fa64b7dd92c0062fbaa13d0833 SHA512 924a8dde011452a2c46c5152942a9835e76fe5610e08b69eb0e985de3fb46bdb49f0f628d10fa7704428f6e61ec63f7002da5399d47da6ee6004fa236d346dc8 +DIST tbb-2020.1.tar.gz 2639115 BLAKE2B 058438351738eeab01c230ec10ff0a1dde77e5cc4fd77f292c31ee0320f41d079c8f90fc06f4640ffa375d5f0c0b5fbed13ac5a64a9cb9f1737cb66bc80442ea SHA512 79810c27c84bd3b3432bef471fa1c782f1f162a0d1038e88c03a77499cc7aeaa10d57317729fd23472e2d0f358395955f7570e8c679685a552a833eb45cf5f1d DIST tbb2017_20161128oss_src.tgz 2965854 BLAKE2B 8c5aed6d8477297922767803617346feebb712d1f4b2df6d71a86f039b5563afc666454985e68a528a812aaad40b5fd0562bb91d357c45156fec46e5389ec542 SHA512 3c48ce196d2d3557e86cea7ede9dea456bbaeb29dbed34210f99c6f380406403a6056ccfa3d5befe6b29c4f8a9ee58ca6da545249cf4ec4ec85b463e04e4518c diff --git a/dev-cpp/tbb/files/tbb-2020.1-makefile-debug.patch b/dev-cpp/tbb/files/tbb-2020.1-makefile-debug.patch new file mode 100644 index 000000000000..b4313b375f59 --- /dev/null +++ b/dev-cpp/tbb/files/tbb-2020.1-makefile-debug.patch @@ -0,0 +1,62 @@ +--- a/Makefile 2020-01-21 12:26:46.000000000 +0100 ++++ b/Makefile 2020-03-18 16:21:37.589262099 +0100 +@@ -26,29 +26,29 @@ + all: tbb tbbmalloc tbbproxy test examples + + tbb: mkdir +- $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbb cfg=release ++ $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.tbb cfg=$(cfg) + + tbbmalloc: mkdir +- $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc ++ $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=$(cfg) malloc + + tbbproxy: mkdir +- $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=release tbbproxy ++ $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.tbbproxy cfg=$(cfg) tbbproxy + + tbbbind: mkdir +- $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbbind cfg=release tbbbind ++ $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.tbbbind cfg=$(cfg) tbbbind + + test: tbb tbbmalloc $(if $(use_proxy),tbbproxy) +- -$(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=release malloc_test +- -$(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.test cfg=release ++ -$(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.tbbmalloc cfg=$(cfg) malloc_test ++ -$(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.test cfg=$(cfg) + + rml: mkdir +- $(MAKE) -C "$(work_dir)_release" -r -f $(tbb_root)/build/Makefile.rml cfg=release ++ $(MAKE) -C "$(work_dir)_$(cfg)" -r -f $(tbb_root)/build/Makefile.rml cfg=$(cfg) + + examples: tbb tbbmalloc +- $(MAKE) -C examples -r -f Makefile tbb_root=.. release test ++ $(MAKE) -C examples -r -f Makefile tbb_root=.. $(cfg) test + + python: tbb +- $(MAKE) -C "$(work_dir)_release" -rf $(tbb_root)/python/Makefile install ++ $(MAKE) -C "$(work_dir)_$(cfg)" -rf $(tbb_root)/python/Makefile install + + doxygen: + doxygen Doxyfile +@@ -56,16 +56,16 @@ + .PHONY: clean clean_examples mkdir info + + clean: clean_examples +- $(shell $(RM) $(work_dir)_release$(SLASH)*.* >$(NUL) 2>$(NUL)) +- $(shell $(RD) $(work_dir)_release >$(NUL) 2>$(NUL)) ++ $(shell $(RM) $(work_dir)_$(cfg)$(SLASH)*.* >$(NUL) 2>$(NUL)) ++ $(shell $(RD) $(work_dir)_$(cfg) >$(NUL) 2>$(NUL)) + @echo clean done + + clean_examples: + $(shell $(MAKE) -s -i -r -C examples -f Makefile tbb_root=.. clean >$(NUL) 2>$(NUL)) + + mkdir: +- $(shell $(MD) "$(work_dir)_release" >$(NUL) 2>$(NUL)) +- @echo Created the $(work_dir)_release directory ++ $(shell $(MD) "$(work_dir)_$(cfg)" >$(NUL) 2>$(NUL)) ++ @echo Created the $(work_dir)_$(cfg) directory + + info: + @echo OS: $(tbb_os) diff --git a/dev-cpp/tbb/tbb-2020.1.ebuild b/dev-cpp/tbb/tbb-2020.1.ebuild new file mode 100644 index 000000000000..4ed58041f012 --- /dev/null +++ b/dev-cpp/tbb/tbb-2020.1.ebuild @@ -0,0 +1,151 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils flag-o-matic multilib-minimal multilib toolchain-funcs + +PV1="$(ver_cut 1)" +PV2="$(ver_cut 2)" +MY_PV="${PV1}_U${PV2}" + +DESCRIPTION="High level abstract threading library" +HOMEPAGE="https://www.threadingbuildingblocks.org" +SRC_URI="https://github.com/intel/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug examples" + +DEPEND="" +RDEPEND="${DEPEND}" +S="${WORKDIR}/oneTBB-${MY_PV}" + +DOCS=( CHANGES README README.md doc/Release_Notes.txt ) + +PATCHES=( "${FILESDIR}"/${P}-makefile-debug.patch ) + +src_prepare() { + default + + find include -name \*.html -delete || die + + # Give it a soname on FreeBSD + echo 'LIB_LINK_FLAGS += -Wl,-soname=$(BUILDING_LIBRARY)' >> build/FreeBSD.gcc.inc + # Set proper versionning on FreeBSD + sed -i -e '/.DLL =/s/$/.1/' build/FreeBSD.inc || die + + use debug || sed -i -e '/_debug/d' Makefile +} + +multilib_src_configure() { + # pc files are for debian and fedora compatibility + # some deps use them + cat <<-EOF > ${PN}.pc.template + prefix=${EPREFIX}/usr + libdir=\${prefix}/$(get_libdir) + includedir=\${prefix}/include + Name: ${PN} + Description: ${DESCRIPTION} + Version: ${PV} + URL: ${HOMEPAGE} + Cflags: -I\${includedir} + EOF + cp ${PN}.pc.template ${PN}.pc || die + cat <<-EOF >> ${PN}.pc + Libs: -L\${libdir} -ltbb + Libs.private: -lm -lrt + EOF + cp ${PN}.pc.template ${PN}malloc.pc || die + cat <<-EOF >> ${PN}malloc.pc + Libs: -L\${libdir} -ltbbmalloc + Libs.private: -lm -lrt + EOF + cp ${PN}.pc.template ${PN}malloc_proxy.pc || die + cat <<-EOF >> ${PN}malloc_proxy.pc + Libs: -L\${libdir} -ltbbmalloc_proxy + Libs.private: -lrt + Requires: tbbmalloc + EOF +} + +local_src_compile() { + cd "${S}" + + local comp arch + local bt buildtypes + + case ${MULTILIB_ABI_FLAG} in + abi_x86_64) arch=x86_64 ;; + abi_x86_32) arch=ia32 ;; +# abi_ppc_64) arch=ppc64 ;; +# abi_ppc_32) arch=ppc32 ;; + esac + + case "$(tc-getCXX)" in + *clang*) comp="clang" ;; + *g++*) comp="gcc" ;; + *ic*c) comp="icc" ;; + *) die "compiler $(tc-getCXX) not supported by build system" ;; + esac + + if use debug ; then + buildtypes="release debug" + else + buildtypes="release" + fi + + for bt in ${buildtypes}; do + CXX="$(tc-getCXX)" \ + CC="$(tc-getCC)" \ + AS="$(tc-getAS)" \ + arch=${arch} \ + CPLUS_FLAGS="${CXXFLAGS}" \ + emake compiler=${comp} work_dir="${BUILD_DIR}" tbb_root="${S}" cfg=${bt} $@ + done +} + +multilib_src_compile() { + local_src_compile tbb tbbmalloc +} + +multilib_src_test() { + local_src_compile test +} + +multilib_src_install() { + local bt + local buildtypes + if use debug ; then + buildtypes="release debug" + else + buildtypes="release" + fi + for bt in ${buildtypes}; do + cd "${BUILD_DIR}_${bt}" || die + local l + for l in $(find . -name lib\*$(get_libname \*)); do + dolib.so ${l} + local bl=$(basename ${l}) + dosym ${bl} /usr/$(get_libdir)/${bl%%.*}$(get_libname) + done + done + + cd "${BUILD_DIR}" || die + insinto /usr/$(get_libdir)/pkgconfig + doins *.pc +} + +multilib_src_install_all() { + doheader -r include/* + + einstalldocs + + if use examples ; then + insinto /usr/share/doc/${PF}/examples/build + doins build/*.inc + insinto /usr/share/doc/${PF}/examples + doins -r examples + docompress -x "/usr/share/doc/${PF}/examples" + fi +} diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index 3704eefaaaaa..1764256dc099 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/postgresql/postgresql-10.12.ebuild b/dev-db/postgresql/postgresql-10.12.ebuild index 590bf8d8f613..9f3d5ddf5736 100644 --- a/dev-db/postgresql/postgresql-10.12.ebuild +++ b/dev-db/postgresql/postgresql-10.12.ebuild @@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr zh_CN inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \ systemd user -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-macos ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-macos ~x86-solaris" SLOT=$(ver_cut 1) diff --git a/dev-db/postgresql/postgresql-11.7.ebuild b/dev-db/postgresql/postgresql-11.7.ebuild index ff36cedaa56d..e702844d73e0 100644 --- a/dev-db/postgresql/postgresql-11.7.ebuild +++ b/dev-db/postgresql/postgresql-11.7.ebuild @@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr zh_CN inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \ systemd user -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT=$(ver_cut 1) diff --git a/dev-db/postgresql/postgresql-12.2.ebuild b/dev-db/postgresql/postgresql-12.2.ebuild index c9e7f8bd5423..2bd65b5c4eb3 100644 --- a/dev-db/postgresql/postgresql-12.2.ebuild +++ b/dev-db/postgresql/postgresql-12.2.ebuild @@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr zh_CN inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \ systemd user -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT=$(ver_cut 1) diff --git a/dev-db/postgresql/postgresql-9.6.17.ebuild b/dev-db/postgresql/postgresql-9.6.17.ebuild index 93826bb9f959..d8d9249313a9 100644 --- a/dev-db/postgresql/postgresql-9.6.17.ebuild +++ b/dev-db/postgresql/postgresql-9.6.17.ebuild @@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru sk sl sv tr zh_CN inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \ systemd user -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT=$(ver_cut 1-2) diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index 7ce0fa794cb3..7d3caaa10e28 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/tomcat-servlet-api/Manifest b/dev-java/tomcat-servlet-api/Manifest index 429cda2be36a..8b72b892ab37 100644 --- a/dev-java/tomcat-servlet-api/Manifest +++ b/dev-java/tomcat-servlet-api/Manifest @@ -3,4 +3,6 @@ DIST apache-tomcat-5.5.36-src.tar.gz 3743113 BLAKE2B dbfcfd123a23b0ceb9f1fdd936e DIST apache-tomcat-6.0.53-src.tar.gz 3522914 BLAKE2B 054b097c16861abaa8bdbeba713b49bc1dfcff573bb3f4bd0ff5807c33a2a0fb991af618f6e11e5b3ce3fa55c589fc6569342cab5d5a00349c79bc7061d81e40 SHA512 915a0a18f5c2883625c9441eed6465973eff4f6bf41e08e925c7edaea89ef8f6ee9476d3e06fa38228d4bcb4decaf53e3a7bdb7ec7e899e6250db3e12a9f5f2c DIST apache-tomcat-7.0.100-src.tar.gz 5265444 BLAKE2B 9c706e6a50e13cd8f542669e2d80f8940816976cfb84f62c3e17bbe6f0cc6d76d6fcdd18ec69e706ce27552aa66041833f6ae7bba8e671e187de3246e90a25c5 SHA512 53ef64c64263d0f25d72ed179bd7b7beed3f73cd63010988ba740ff7328b00a5ec09fe1d4575188ecacf258c891e022a0f1ae07d2957d9830a56881170bb1a57 DIST apache-tomcat-8.5.51-src.tar.gz 5661227 BLAKE2B 711de5678903941a5261693972906f2d0fca2c9d3219e62d3186e5d71a2e3cb4da0a5028e62790a26dad2d244246c2f41c74f18e17d52ec0af070f0d5842ca3f SHA512 8529d2e7d83a863fe88ed4ee8ec29b673e5df4bea53231412c0d89e2384d3939b9d1f29350a4ca46966ab5d4a0d3178ed5d2caa50aa766092a3ab8f28dd27592 +DIST apache-tomcat-8.5.53-src.tar.gz 5676477 BLAKE2B 284ddc3b3d491a57aac31fc59a9c7d80bdb11efb410ab53eea5d3a0a754507203de287eff0a621d02bfea581b45b860598c8ab95d529ad18790fe381f5518cca SHA512 d78613042a9e4caa5b5eeebd2589383ef10312698e535e2c8f82e40c7b3d793ea6cac50f346316a84f4b47ad330f82c7a4f0e4a3d2f0d449f1d4dad9c6d5e267 DIST apache-tomcat-9.0.31-src.tar.gz 5812430 BLAKE2B 7ef0f989860b046b4ddbacde50013284a623eb9d81e2c3465b0e04ec9c934a5319293677919ab758243a352fc60cb6691b51f946d8c5a36360b9108dafc5dfe3 SHA512 a0ba9e46a3d2a4cf708e6e29b4647c041495e45865ce5c679c9dcfee77181373a2d3034222701d0f15d5c7e71e6aa3cc7db236c66ba069b3e3660a948b44342f +DIST apache-tomcat-9.0.33-src.tar.gz 5831264 BLAKE2B 7ef5b28dfc4f24003075012cfe6403060dfc908386577ea3dbab3d7a4eca1d22cdcaab3f821079a90d9407030bedf657f5abd9829d643f699ba875b7b702f0a3 SHA512 73ffb36dc7331bf9e455b599b128c51da8f90222bd3cb296e211d266c18964bf66004524725acd6d3e29099d2fdc3180892c228b2a00b06544455240bf05c9b0 diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.53.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.53.ebuild new file mode 100644 index 000000000000..b6216e53c6b0 --- /dev/null +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.53.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +JAVA_PKG_IUSE="source" + +inherit eutils java-pkg-2 java-ant-2 + +MY_A="apache-${P}-src" +MY_P="${MY_A/-servlet-api/}" +DESCRIPTION="Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation" +HOMEPAGE="https://tomcat.apache.org/" +SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="3.1" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND=">=virtual/jdk-1.8" +RDEPEND=">=virtual/jre-1.8" + +S="${WORKDIR}/${MY_P}/" + +src_prepare() { + default + + cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace build.xml" + rm -fR */*/build.xml + einfo "Removing bundled jars and classes" + find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -exec rm -frv {} + + + java-pkg-2_src_prepare +} + +src_install() { + java-pkg_dojar "${S}"/output/build/lib/*.jar + use source && java-pkg_dosrc java/javax/servlet/ +} diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.33.ebuild b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.33.ebuild new file mode 100644 index 000000000000..9ddac4eebd99 --- /dev/null +++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.33.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +JAVA_PKG_IUSE="source" + +inherit eutils java-pkg-2 java-ant-2 + +MY_A="apache-${PN}-${PV}-src" +MY_P="${MY_A/-servlet-api/}" +DESCRIPTION="Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation" +HOMEPAGE="https://tomcat.apache.org/" +SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="4.0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND=">=virtual/jdk-1.8" +RDEPEND=">=virtual/jre-1.8" + +S="${WORKDIR}/${MY_P}/" + +src_prepare() { + default + + cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace build.xml" + rm -fR */*/build.xml + einfo "Removing bundled jars and classes" + find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -exec rm -frv {} + + + java-pkg-2_src_prepare +} + +src_install() { + java-pkg_dojar "${S}"/output/build/lib/*.jar + use source && java-pkg_dosrc java/javax/servlet/ +} diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 3e5a8f0d102f..a7064437eb3c 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/janet/Manifest b/dev-lang/janet/Manifest new file mode 100644 index 000000000000..7ec9de8ca785 --- /dev/null +++ b/dev-lang/janet/Manifest @@ -0,0 +1 @@ +DIST janet-1.7.0.tar.gz 968936 BLAKE2B 49e6381d0f632fe43eefd498b9aaca2ec049e1f0d4fa7b3463bc00ac1ece67c8c3d108515702bfead1934434a8039e7c1f6eaae46aec7340330e5cda78eeaca4 SHA512 c180172f3016d1ca55ac39f2116789027bf622f08f585bf702b17acadd99d07bf91320e09ce21be76c3a1e60d1a8923591d0e07acc90884dac823a2c414f65e7 diff --git a/dev-lang/janet/files/janet-1.7.0-fix-ldflags-in-pkgconfig.patch b/dev-lang/janet/files/janet-1.7.0-fix-ldflags-in-pkgconfig.patch new file mode 100644 index 000000000000..81df47acc748 --- /dev/null +++ b/dev-lang/janet/files/janet-1.7.0-fix-ldflags-in-pkgconfig.patch @@ -0,0 +1,11 @@ +--- ./Makefile 2020-02-02 06:35:17.000000000 +0100 ++++ ./Makefile 2020-03-17 23:14:26.172766381 +0100 +@@ -242,7 +242,7 @@ + echo "Description: Library for the Janet programming language." >> $@ + $(JANET_TARGET) -e '(print "Version: " janet/version)' >> $@ + echo 'Cflags: -I$${includedir}' >> $@ +- echo 'Libs: -L$${libdir} -ljanet $(LDFLAGS)' >> $@ ++ echo 'Libs: -L$${libdir} -ljanet' >> $@ + echo 'Libs.private: $(CLIBS)' >> $@ + + install: $(JANET_TARGET) build/janet.pc diff --git a/dev-lang/janet/janet-1.7.0.ebuild b/dev-lang/janet/janet-1.7.0.ebuild new file mode 100644 index 000000000000..fc13f1d1812b --- /dev/null +++ b/dev-lang/janet/janet-1.7.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit flag-o-matic + +DESCRIPTION="A dynamic Lisp dialect and bytecode vm" +HOMEPAGE="https://janet-lang.org" +SRC_URI="https://github.com/janet-lang/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +PATCHES=( + "${FILESDIR}/${P}"-fix-ldflags-in-pkgconfig.patch +) + +src_configure() { + append-ldflags -Wl,-soname,libjanet.so.0 +} + +src_compile() { + # janet_build is the git hash of the commit related to the + # current release - it defines a constant which is then shown + # when starting janet + local janet_build='\"f7ee8bd\"' + emake PREFIX="/usr" JANET_BUILD="${janet_build}" + emake PREFIX="/usr" build/janet.pc JANET_BUILD="${janet_build}" + emake PREFIX="/usr" docs JANET_BUILD="${janet_build}" +} + +src_install() { + dobin "build/janet" + dobin "auxbin/jpm" + + doheader "src/include/janet.h" + doheader "src/conf/janetconf.h" + + dolib.so "build/libjanet.so" + dosym libjanet.so /usr/$(get_libdir)/libjanet.so.0 + + if use static-libs; then + dolib.a "build/libjanet.a" + fi + doman "janet.1" + doman "jpm.1" + + insinto /usr/$(get_libdir)/pkgconfig/ + doins "build/janet.pc" + dodoc -r examples + dodoc "build/doc.html" +} diff --git a/dev-lang/janet/metadata.xml b/dev-lang/janet/metadata.xml new file mode 100644 index 000000000000..9baceda37874 --- /dev/null +++ b/dev-lang/janet/metadata.xml @@ -0,0 +1,28 @@ + + + + + Oz Tiram + oz.tiram@gmail.com + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Janet is a functional and imperative programming language and bytecode + interpreter. It is a modern lisp, but lists are replaced by other data + structures with better utility and performance + (arrays, tables, structs, tuples). + The language also supports bridging to native code written in C, + meta-programming with macros, and bytecode assembly. + + + janet-lang/janet + + + install janet static library archive, + you must enable this flag for using `jpm build` + + + diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 8473bec037d4..56a52f28858c 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/hsa-ext-rocr/Manifest b/dev-libs/hsa-ext-rocr/Manifest index 28b756ace75d..179df45f8fc5 100644 --- a/dev-libs/hsa-ext-rocr/Manifest +++ b/dev-libs/hsa-ext-rocr/Manifest @@ -1,2 +1,2 @@ -DIST hsa-ext-rocr-dev_1.1.9-122-ge5c4efb_amd64.deb 1120322 BLAKE2B 40c60058c2b6d6debf80503c36f6b0ddc72747c7327e411121f99fa2e507e5e9414cb91c80be0acf283bff23a6a029b3ef199577846b694b2e2e11696cc7d225 SHA512 60dad492cc66f249d48fb057b2ecec1719525a871d38f39a403a55de98e8cdea5f00f672fa3ea697490c287ba7e5c3be035f1f2861a7fc97d9b949f575e51ad7 +DIST hsa-ext-rocr-dev_1.1.30100.0-rocm-rel-3.1-44-ecafeba1_amd64.deb 1209486 BLAKE2B 7aa44fecde68761916100312a58d4d1fc77e9e88e6e322548f0d603fc7a8be4d202b387a1ab823ff784ea6e365297846cd5630997362f8691baf6a5ed226c942 SHA512 1373931b80b2d830de8b4741159dfa46a5d6608886e87c780090a558c0070020b3efbe227c6c6803afbdc632be7f632e03c1a9bbb377949bd14de2d0d7117351 DIST hsa-ext-rocr-dev_1.1.9-139-g0d1ca36_amd64.deb 1166210 BLAKE2B 3edcc938ec92277a163886df4e83f93f6a38b1ec4e95e719265f7a595d291fe4beef68aeca3fb09f8f56a0abf041a987d57e2469310da8cd16f2352b2af5077c SHA512 dbf7991b404cc371575e5d8c40f438bbead8bfef5c73dfd3b7295d64f800892c1f220a6eff8cc67d99ca4bec819bf1b69e37f85873ec372dca9bdd42542fa320 diff --git a/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.122.ebuild b/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.30100.0.ebuild similarity index 75% rename from dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.122.ebuild rename to dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.30100.0.ebuild index f59a78fc872e..26a9c025988f 100644 --- a/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.122.ebuild +++ b/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.30100.0.ebuild @@ -5,11 +5,12 @@ EAPI=7 inherit unpacker -MY_PV=$(ver_rs 3 '-') +ROCM_VERSION="3.1.0" +MY_PV="${PV}-rocm-rel-$(ver_cut 1-2 ${ROCM_VERSION})-44-ecafeba1" DESCRIPTION="Proprietary image-support library for Radeon Open Compute" HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm#closed-source-components" -SRC_URI="http://repo.radeon.com/rocm/apt/debian/pool/main/h/${PN}-dev/${PN}-dev_${MY_PV}-ge5c4efb_amd64.deb" +SRC_URI="http://repo.radeon.com/rocm/apt/debian/pool/main/h/${PN}-dev/${PN}-dev_${MY_PV}_amd64.deb" LICENSE="AMD-GPU-PRO-EULA" SLOT="0" @@ -38,8 +39,8 @@ src_install() { into "${destdir}" for solib in ${solibs_to_install[@]}; do - dolib.so "opt/rocm/hsa/lib/${solib}.${soversion}" - dosym "../../${destdir}/$(get_libdir)/${solib}.${soversion}" "/usr/$(get_libdir)/${solib}.${soversion}" + dolib.so "opt/rocm-${ROCM_VERSION}/hsa/lib/${solib}.${soversion}" + dosym "../..${destdir}/$(get_libdir)/${solib}.${soversion}" "/usr/$(get_libdir)/${solib}.${soversion}" dosym "${solib}.${soversion}" "/usr/$(get_libdir)/${solib}.${somajor}" done } diff --git a/dev-libs/libev/libev-4.31.ebuild b/dev-libs/libev/libev-4.31.ebuild index f4ab40d302a2..6a609941c4dc 100644 --- a/dev-libs/libev/libev-4.31.ebuild +++ b/dev-libs/libev/libev-4.31.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://dist.schmorp.de/libev/${P}.tar.gz LICENSE="|| ( BSD GPL-2 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="elibc_glibc static-libs" # Bug #283558 diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest index be57f5267033..9def919ff244 100644 --- a/dev-libs/libite/Manifest +++ b/dev-libs/libite/Manifest @@ -1,3 +1,3 @@ -DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563 DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3 DIST libite-2.1.2.tar.xz 265524 BLAKE2B 6e89fda5267e9beb8b057d195f1ed7503fc898146e64da2735510ee9fe703a9ee7d1f21e67a7820cd9ae413ee77b66c050d6534553b5a6ce113c113a7fd58f06 SHA512 92c3830344d7816cbcc2a697bf55b53557d4df7bab4d3db5aa6319379c82a14cf021d18402eae724c5b9126ec06df9728ee6ded9599117cc7f3fa7a0b2f997cc +DIST libite-2.2.0.tar.xz 267172 BLAKE2B 6f3e76fca28b72978fd92e2e52234ebeaee764945108c0d3b1049c759bbba3a1e1c6aa6822707ae8323b1fc8d1b56b360b93c58f109ba1072123a27488b54c34 SHA512 56b4d21730b1e31f7c70ec16d0983d5c060866d6579fa69c44d1d3d2a539a7b4691adb4964bfac3f8bc04282537e93f53dc2bb5af2efbca637ddc6442db181af diff --git a/dev-libs/libite/files/libite-2.0.0-fix-path.patch b/dev-libs/libite/files/libite-2.0.0-fix-path.patch deleted file mode 100644 index 47a3dad538b1..000000000000 --- a/dev-libs/libite/files/libite-2.0.0-fix-path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/tests/which.c b/tests/which.c -index cda57c6..3e74867 100644 ---- a/tests/which.c -+++ b/tests/which.c -@@ -21,6 +21,7 @@ int main(void) - { NULL, 0 } - }; - -+ setenv("PATH", "/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin", 1); - for (i = 0; test[i].cmd; i++) { - char *path; - diff --git a/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch b/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch deleted file mode 100644 index 301c43715890..000000000000 --- a/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/tests/which.c b/tests/which.c -index 46dcccf..cda57c6 100644 ---- a/tests/which.c -+++ b/tests/which.c -@@ -11,13 +11,13 @@ int main(void) - int result = 0; - size_t i; - struct tc test[] = { -- { "ls", 1 }, -- { "free", 1 }, -- { "modinfo", 1 }, -- { "useradd", 1 }, -- { "/bin/which", 1 }, -- { "/bin/ps aux", 1 }, -- { "/etc/passwd", 0 }, -+ { "ls", 1 }, -+ { "free", 1 }, -+ { "modinfo", 1 }, -+ { "useradd", 1 }, -+ { "/usr/bin/which", 1 }, -+ { "/bin/ps aux", 1 }, -+ { "/etc/passwd", 0 }, - { NULL, 0 } - }; - diff --git a/dev-libs/libite/libite-2.0.0.ebuild b/dev-libs/libite/libite-2.2.0.ebuild similarity index 84% rename from dev-libs/libite/libite-2.0.0.ebuild rename to dev-libs/libite/libite-2.2.0.ebuild index b5328e1645dd..f0baf554132e 100644 --- a/dev-libs/libite/libite-2.0.0.ebuild +++ b/dev-libs/libite/libite-2.2.0.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="A collection of useful BSD APIs" HOMEPAGE="https://github.com/troglobit/libite" @@ -12,11 +12,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs" -PATCHES=( - "${FILESDIR}"/${P}-fix-which-path.patch - "${FILESDIR}"/${P}-fix-path.patch -) - src_configure() { econf --enable-static=$(usex static-libs) } diff --git a/dev-libs/nspr/nspr-4.25.ebuild b/dev-libs/nspr/nspr-4.25.ebuild index e0cf2db86533..50c858482f28 100644 --- a/dev-libs/nspr/nspr-4.25.ebuild +++ b/dev-libs/nspr/nspr-4.25.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz" LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="debug elibc_musl" MULTILIB_CHOST_TOOLS=( diff --git a/dev-libs/nss/nss-3.51.ebuild b/dev-libs/nss/nss-3.51.ebuild index a96078714bf1..4d213bdc94e9 100644 --- a/dev-libs/nss/nss-3.51.ebuild +++ b/dev-libs/nss/nss-3.51.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/$ LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="cacert utils" BDEPEND=" >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index e21ccf6daf80..5a19a975e5c3 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/atomicwrites/atomicwrites-1.3.0.ebuild b/dev-python/atomicwrites/atomicwrites-1.3.0.ebuild index 5bdae011669b..2db51ff46b06 100644 --- a/dev-python/atomicwrites/atomicwrites-1.3.0.ebuild +++ b/dev-python/atomicwrites/atomicwrites-1.3.0.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 ~mips ~ppc ~ppc64 ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/atomicwrites/metadata.xml b/dev-python/atomicwrites/metadata.xml index 26b05060cf14..1b008d1f05c3 100644 --- a/dev-python/atomicwrites/metadata.xml +++ b/dev-python/atomicwrites/metadata.xml @@ -4,6 +4,10 @@ amynka@gentoo.org + + python@gentoo.org + Python + untitaker/python-atomicwrites atomicwrites diff --git a/dev-python/dbutils/Manifest b/dev-python/dbutils/Manifest new file mode 100644 index 000000000000..85a6f9281165 --- /dev/null +++ b/dev-python/dbutils/Manifest @@ -0,0 +1 @@ +DIST DBUtils-1.3.tar.gz 91733 BLAKE2B 8fb3fd16208c27fbbbbcbf1e7b9de2d4d2e8008916309256bd2ae5494d0ff60071fd3fa839dc7ccbe8832f333bad52d97dc4d176c822cc1ce3d5ce0bb05d637e SHA512 47aaa63144e6a0f4d020adb54fc5f36af01848a12f8adfcbd9889825980a1479b32041c087992de5f44478cc25729d1c97ed6cb094def2b93165f0120f10c5b6 diff --git a/dev-python/dbutils/dbutils-1.3.ebuild b/dev-python/dbutils/dbutils-1.3.ebuild new file mode 100644 index 000000000000..24bd36146dcc --- /dev/null +++ b/dev-python/dbutils/dbutils-1.3.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,7} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +MY_PN="DBUtils" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Database connections for multi-threaded environments" +HOMEPAGE=" + https://cito.github.io/DBUtils/ + https://github.com/Cito/DBUtils + https://pypi.org/project/DBUtils/ +" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="OSL-2.0" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/${MY_P}" + +distutils_enable_tests nose + +python_prepare_all() { + #prevent tests from being installed + #prevent docs being installed outside /usr/share + sed -i -e "s/, 'DBUtils.Tests'//" \ + -e "/package_data=/d" \ + setup.py || die "sed failed" + distutils-r1_python_prepare_all +} + +python_install_all() { + dodoc "${S}/${MY_PN}"/Docs/*.rst + rm "${S}/${MY_PN}"/Docs/*.rst || die + local HTML_DOCS=( "${S}/${MY_PN}"/Docs/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/dbutils/metadata.xml b/dev-python/dbutils/metadata.xml new file mode 100644 index 000000000000..a24feb91917f --- /dev/null +++ b/dev-python/dbutils/metadata.xml @@ -0,0 +1,21 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + + +DBUtils is a suite of tools providing solid, persistent and pooled connections +to a database that can be used in all kinds of multi-threaded environments +like Webware for Python or other web application servers. The suite supports +DB-API 2 compliant database interfaces and the classic PyGreSQL interface. + + + Cito/DBUtils + + diff --git a/dev-python/more-itertools/more-itertools-5.0.0.ebuild b/dev-python/more-itertools/more-itertools-5.0.0.ebuild index e2afa9d80093..d9f452c11bde 100644 --- a/dev-python/more-itertools/more-itertools-5.0.0.ebuild +++ b/dev-python/more-itertools/more-itertools-5.0.0.ebuild @@ -13,7 +13,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 ~s390 ~sparc ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" - Neutron shared routines and utilities - openstack/neutron-lib neutron-lib diff --git a/dev-python/neutron-lib/neutron-lib-1.29.1.ebuild b/dev-python/neutron-lib/neutron-lib-1.29.1.ebuild deleted file mode 100644 index ca6dda873e75..000000000000 --- a/dev-python/neutron-lib/neutron-lib-1.29.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 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Neutron shared routines and utilities." -HOMEPAGE="https://github.com/openstack/neutron-lib" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -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" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND}" -RDEPEND="${CDEPEND} - >=dev-python/sqlalchemy-1.2.0[${PYTHON_USEDEP}] - >=dev-python/pecan-1.0.0[${PYTHON_USEDEP}] - !~dev-python/pecan-1.0.2[${PYTHON_USEDEP}] - !~dev-python/pecan-1.0.3[${PYTHON_USEDEP}] - !~dev-python/pecan-1.0.4[${PYTHON_USEDEP}] - !~dev-python/pecan-1.2.0[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] - >=dev-python/os-ken-0.3.0[${PYTHON_USEDEP}] - >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}] - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/oslo-context-2.19.2[${PYTHON_USEDEP}] - >=dev-python/oslo-db-4.37.0[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] - >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] - >=dev-python/oslo-messaging-5.29.0[${PYTHON_USEDEP}] - >=dev-python/oslo-policy-1.30.0[${PYTHON_USEDEP}] - >=dev-python/oslo-serialization-2.18.0[${PYTHON_USEDEP}] - !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}] - >=dev-python/oslo-service-1.24.0[${PYTHON_USEDEP}] - !~dev-python/oslo-service-1.28.1[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/oslo-versionedobjects-1.31.2[${PYTHON_USEDEP}] - >=dev-python/osprofiler-1.4.0[${PYTHON_USEDEP}] - >=dev-python/setproctitle-1.1.10[${PYTHON_USEDEP}] - >=dev-python/os-traits-0.9.0[${PYTHON_USEDEP}] - >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]" diff --git a/dev-python/neutron-lib/neutron-lib-1.29.2.ebuild b/dev-python/neutron-lib/neutron-lib-1.29.2.ebuild index 4501586dd885..ca6dda873e75 100644 --- a/dev-python/neutron-lib/neutron-lib-1.29.2.ebuild +++ b/dev-python/neutron-lib/neutron-lib-1.29.2.ebuild @@ -12,7 +12,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="" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/ovsdbapp/Manifest b/dev-python/ovsdbapp/Manifest index c7cdff4f01d9..2fb5360aadac 100644 --- a/dev-python/ovsdbapp/Manifest +++ b/dev-python/ovsdbapp/Manifest @@ -1,2 +1 @@ -DIST ovsdbapp-0.15.0.tar.gz 79493 BLAKE2B a035a8571033e210db253dc4a301c602f9b213bbeb6fc73e9317d2a29f3b3520f43c0f6c8fa7f3d549f3fd76484993f5b905d3916c93c1daef228e9c15fa4a0f SHA512 db8179c32bb58b04019b215083bbf7490418305631a826a44965d52ebbfa9d75e08bff840659982a93c3941cecc0ef1e81299e83408731582907e24d2e2764f0 DIST ovsdbapp-0.17.2.tar.gz 82830 BLAKE2B a9c7661685aeb215f79b9c14fb7069019ae3641217fd2234db44f4d7bada9c9533919a104ec5a0f05843edae2b71e86edab11e545973e626ea657eea852e0682 SHA512 0d7a5d5c0ea0456a2bdf51b39b864253b52d1699b32a301a549b80568fef63d516158dcb6772cfb97b88d56e840a070f5cc2569acaa414bcab4a65be673a66eb diff --git a/dev-python/ovsdbapp/ovsdbapp-0.15.0.ebuild b/dev-python/ovsdbapp/ovsdbapp-0.15.0.ebuild deleted file mode 100644 index 92c0cf365ad6..000000000000 --- a/dev-python/ovsdbapp/ovsdbapp-0.15.0.ebuild +++ /dev/null @@ -1,26 +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 library for creating OVSDB applications" -HOMEPAGE="http://bugs.launchpad.net/ovsdbapp" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -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" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND}" -RDEPEND="${CDEPEND} - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] - >=dev-python/ovs-2.8.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}]" diff --git a/dev-python/ovsdbapp/ovsdbapp-0.17.2.ebuild b/dev-python/ovsdbapp/ovsdbapp-0.17.2.ebuild index 14a97a3f2a23..92c0cf365ad6 100644 --- a/dev-python/ovsdbapp/ovsdbapp-0.17.2.ebuild +++ b/dev-python/ovsdbapp/ovsdbapp-0.17.2.ebuild @@ -12,7 +12,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="" CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild index 9030f0d5741b..3d3ac12ea0fa 100644 --- a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild +++ b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild @@ -12,31 +12,24 @@ MY_PN="PyHamcrest" DESCRIPTION="Hamcrest framework for matcher objects" HOMEPAGE="https://github.com/hamcrest/PyHamcrest" SRC_URI="https://github.com/hamcrest/PyHamcrest/archive/V${PV}.tar.gz -> ${MY_PN}-${PV}.gh.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~mips ~sh sparc ~amd64-linux ~x86-linux" -IUSE="doc examples test" -REQUIRED_USE="doc? ( || ( $(python_gen_useflags -3) ) )" +IUSE="examples test" RESTRICT="!test? ( test )" RDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - $(python_gen_cond_dep '>=dev-python/sphinx-2[${PYTHON_USEDEP}]' -3) - $(python_gen_cond_dep 'dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]' -3) - ) test? ( >=dev-python/pytest-2.6[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] )" -S="${WORKDIR}/${MY_PN}-${PV}" - -pkg_setup() { - use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( -3 ) -} +distutils_enable_sphinx doc \ + dev-python/sphinx_rtd_theme python_prepare_all() { # enables coverage testing which we don't want @@ -56,13 +49,6 @@ python_prepare_all() { distutils-r1_python_prepare_all } -python_compile_all() { - if use doc; then - esetup.py build_sphinx - HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) - fi -} - python_test() { py.test -vv || die "Tests failed under ${EPYTHON}" "${EPYTHON}" tests/object_import.py || die "Tests failed under ${EPYTHON}" diff --git a/dev-python/pyjwt/Manifest b/dev-python/pyjwt/Manifest index efcfa057cb80..83d65a7066a8 100644 --- a/dev-python/pyjwt/Manifest +++ b/dev-python/pyjwt/Manifest @@ -1,2 +1 @@ -DIST PyJWT-1.5.3.tar.gz 73044 BLAKE2B ae2e3caec52ddd768d573e0398bbc355c6eedca238db9b1808ff1d723b9fdee0845cf119d78e561833fe770e5ec39000905cec43a5e96102865f60e204c72c22 SHA512 b25a9f6a04bd072020fcf00bb559b7560902adb79746fb880432c01fa356748238432f53f6b9a21db50ece3e59ed4c45ca3f48ecec0ca3c4095e6a739a5c150c DIST PyJWT-1.7.1.tar.gz 41979 BLAKE2B 5604b309838b2dfb2f95e18e291c43703954664aa8acb7439072f002c1c8a1e49ff2c21d907be77a4d2f86e695ec71970d550aad2541252ac85bd7133e300b28 SHA512 70cd38127b6848933992c8b88303725ef71bfb430ad42eb63247e549b0bdab2a194137349d43ab02a1c97212dbc89f447ee3f0c5403dd14632b8b4b6b9235fc4 diff --git a/dev-python/pyjwt/pyjwt-1.5.3.ebuild b/dev-python/pyjwt/pyjwt-1.5.3.ebuild deleted file mode 100644 index 53b04401c0c6..000000000000 --- a/dev-python/pyjwt/pyjwt-1.5.3.ebuild +++ /dev/null @@ -1,52 +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 eutils - -MY_PN="PyJWT" - -DESCRIPTION="JSON Web Token implementation in Python" -HOMEPAGE="https://github.com/progrium/pyjwt https://pypi.org/project/PyJWT/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" - -LICENSE=" MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - >=dev-python/cryptography-1.4.0[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -S="${WORKDIR}"/${MY_PN}-${PV} - -python_prepare_all() { - find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed" - find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed" - - # enables coverage, we don't need that - rm setup.cfg || die - - distutils-r1_python_prepare_all -} - -python_test() { - pytest -vv || die "Tests fail with ${EPYTHON}" -} - -pkg_postinst() { - elog "Available optional features:" - optfeature "cryptography" dev-python/cryptography - optfeature "flake8" dev-python/flake8 - - ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', which are not in portage yet" -} diff --git a/dev-python/pyjwt/pyjwt-1.7.1-r1.ebuild b/dev-python/pyjwt/pyjwt-1.7.1-r1.ebuild index 599ee1dc16ca..8713bbc66e0e 100644 --- a/dev-python/pyjwt/pyjwt-1.7.1-r1.ebuild +++ b/dev-python/pyjwt/pyjwt-1.7.1-r1.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}"/${MY_PN}-${PV} LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux" RDEPEND="" DEPEND=" diff --git a/dev-python/pyjwt/pyjwt-1.7.1.ebuild b/dev-python/pyjwt/pyjwt-1.7.1.ebuild deleted file mode 100644 index a165aa174451..000000000000 --- a/dev-python/pyjwt/pyjwt-1.7.1.ebuild +++ /dev/null @@ -1,52 +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 eutils - -MY_PN="PyJWT" - -DESCRIPTION="JSON Web Token implementation in Python" -HOMEPAGE="https://github.com/progrium/pyjwt https://pypi.org/project/PyJWT/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" - -LICENSE=" MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - >=dev-python/cryptography-1.4.0[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -S="${WORKDIR}"/${MY_PN}-${PV} - -python_prepare_all() { - find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed" - find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed" - - # enables coverage, we don't need that - rm setup.cfg || die - - distutils-r1_python_prepare_all -} - -python_test() { - pytest -vv || die "Tests fail with ${EPYTHON}" -} - -pkg_postinst() { - elog "Available optional features:" - optfeature "cryptography" dev-python/cryptography - optfeature "flake8" dev-python/flake8 - - ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', which are not in portage yet" -} diff --git a/dev-python/pyopenssl/Manifest b/dev-python/pyopenssl/Manifest index 063275bd3eeb..7b91c85c05e3 100644 --- a/dev-python/pyopenssl/Manifest +++ b/dev-python/pyopenssl/Manifest @@ -1,4 +1,2 @@ -DIST pyOpenSSL-17.5.0.tar.gz 170870 BLAKE2B e8b8986a7c5475ac3898df4877a8be86db359af79e1718bad85149440cff543c501ee23eb369270d2c539a9e3f4e13165ea87b858ef6916ee79ca6e49f6e5370 SHA512 f194662b5842f1e3a4fcb910b9f2e6482d1dcdf834f306acc3dd6d9723f65038f7bff550248fa6268d90c839c9d9e8248bb6c7d399495fe6aed25291b93ece86 -DIST pyOpenSSL-18.0.0.tar.gz 167296 BLAKE2B 3a9c8db02e92858353389508d9791d2ff0b07b54150d27a513b4c26ef62899167d184702cd8ac3a9fb5be120a92e31259ce265a400513de4622c30b1269ecd9f SHA512 7106d4116243a164c1f458ad495564c2cf3a46b4b0fbb1d452b4174ead4409bc9c783c3a4674231ed3c26ecf588077b01dadbdefe033d5e7251a61531c6f6c15 DIST pyOpenSSL-19.0.0.tar.gz 168551 BLAKE2B 762d3358b3cc4f1e088e9464ac079e5212c537d25691e51edb3255a192c42276506c758ecf16eff999082bfd05aeb92a37741338d92036d2149b87c95008db05 SHA512 a7e12bf5be725ccebd1223d567a9b9e8bd35f79cbf3a0409108fa6f00e10ab137dd6876369e9dede02b2abc7d700786cc905532ca5c31b6e246f6df8b24e2818 DIST pyOpenSSL-19.1.0.tar.gz 160510 BLAKE2B e6e39f860221a2696aa3fa32ac89ed48e34b18e4accc366a86264d943a15a1b00ba1a0d8349550d1775d25836aa5d214e1e3fe4ec0a9c0f6d5ab00cd9fede633 SHA512 4acd96f287d72eb11bd812697d28cd6eb6a96a4653248b65f967187830a6b17cc1254775a18a3405469f3d45abdae6f02d165f2f35f035f3174c2826fba82916 diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild deleted file mode 100644 index 00425f8df5f1..000000000000 --- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 flag-o-matic - -MY_PN=pyOpenSSL -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Python interface to the OpenSSL library" -HOMEPAGE=" - http://pyopenssl.sourceforge.net/ - https://launchpad.net/pyopenssl - https://pypi.org/project/pyOpenSSL/ -" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc examples test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/six-1.5.2[${PYTHON_USEDEP}] - >=dev-python/cryptography-2.1.4[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) - test? ( - virtual/python-cffi[${PYTHON_USEDEP}] - dev-python/flaky[${PYTHON_USEDEP}] - dev-python/pretend[${PYTHON_USEDEP}] - >=dev-python/pytest-3.0.1[${PYTHON_USEDEP}] )" - -S=${WORKDIR}/${MY_P} - -python_prepare_all() { - # Requires network access - sed -i -e 's/test_set_default_verify_paths/_&/' tests/test_ssl.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C doc html -} - -python_test() { - TZ=UTC py.test -v || die "Testing failed with ${EPYTHON}" # Fixes bug #627530 -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html/. ) - if use examples ; then - docinto examples - dodoc -r examples/* - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/pyopenssl/pyopenssl-18.0.0.ebuild b/dev-python/pyopenssl/pyopenssl-18.0.0.ebuild deleted file mode 100644 index d3a31ab8b263..000000000000 --- a/dev-python/pyopenssl/pyopenssl-18.0.0.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 - -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 flag-o-matic - -MY_PN=pyOpenSSL -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Python interface to the OpenSSL library" -HOMEPAGE=" - http://pyopenssl.sourceforge.net/ - https://launchpad.net/pyopenssl - https://pypi.org/project/pyOpenSSL/ -" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc examples test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/six-1.5.2[${PYTHON_USEDEP}] - >=dev-python/cryptography-2.2.1[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) - test? ( - virtual/python-cffi[${PYTHON_USEDEP}] - dev-python/flaky[${PYTHON_USEDEP}] - dev-python/pretend[${PYTHON_USEDEP}] - >=dev-python/pytest-3.0.1[${PYTHON_USEDEP}] - )" - -S=${WORKDIR}/${MY_P} - -python_prepare_all() { - # Requires network access - sed -i -e 's/test_set_default_verify_paths/_&/' tests/test_ssl.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C doc html -} - -python_test() { - TZ=UTC py.test -v || die "Testing failed with ${EPYTHON}" # Fixes bug #627530 -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html/. ) - if use examples ; then - docinto examples - dodoc -r examples/* - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/pyopenssl/pyopenssl-19.1.0.ebuild b/dev-python/pyopenssl/pyopenssl-19.1.0.ebuild index 039b35107692..97667dc65914 100644 --- a/dev-python/pyopenssl/pyopenssl-19.1.0.ebuild +++ b/dev-python/pyopenssl/pyopenssl-19.1.0.ebuild @@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/python-debian/Manifest b/dev-python/python-debian/Manifest index deee55f71dde..753a3e481852 100644 --- a/dev-python/python-debian/Manifest +++ b/dev-python/python-debian/Manifest @@ -1,2 +1 @@ -DIST python-debian_0.1.31.tar.xz 295720 BLAKE2B 3b3a68ab5604571355a15afac181e488c278ca78ab4c8a6cba4c392a0a89fd778bfd37e69a369d50fbc72f5080cf37fdbd31771f5d973c386795c436112ea347 SHA512 d2bf071b088e53ac132f91e5983c092bddb9736b3fd1394dfd2654fb8b6af7f89982af8debba8c4af21086d4f8a3ef86393fdef25ef18bcf71dcb00a60a8ae5b DIST python-debian_0.1.36.tar.xz 308364 BLAKE2B 1cc7e2844db8143a3a4cc4f59c4bbb90bb90ab024b2524335d8ab69947ffe8c64b2b41a54a5d199cd287a3d6b6a0173c75be708af9aedfeb871e354ac1873528 SHA512 3f2ca6d86f6b6d383a1628021a77d19b562b0c409d204dba4de6968d2cdd2c8fb4aa882429fa1ce6af5361352f7a51b339c481dd47937cb103a08132379d77c5 diff --git a/dev-python/python-debian/python-debian-0.1.31.ebuild b/dev-python/python-debian/python-debian-0.1.31.ebuild deleted file mode 100644 index 3f6380655255..000000000000 --- a/dev-python/python-debian/python-debian-0.1.31.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -PYTHON_COMPAT=( python2_7 python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Python modules to work with Debian-related data formats" -HOMEPAGE="https://packages.debian.org/sid/python-debian" -SRC_URI="mirror://debian/pool/main/${P:0:1}/${PN}/${PN}_${PV}.tar.xz" - -LICENSE="GPL-2 GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - dev-python/chardet[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( app-arch/dpkg )" - -RESTRICT="test" - -python_prepare_all() { - sed -i -e '/import apt_pkg/d' \ - -e 's/test_iter_paragraphs_comments_use_apt_pkg/_&/' \ - lib/debian/tests/test_deb822.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - "${PYTHON}" lib/debian/doc-debtags > README.debtags || die -} - -python_test() { - "${PYTHON}" -m unittest discover lib || die "Testing failed with ${EPYTHON}" -} diff --git a/dev-python/python-debian/python-debian-0.1.36.ebuild b/dev-python/python-debian/python-debian-0.1.36.ebuild index 524d945c32f1..78fab194385a 100644 --- a/dev-python/python-debian/python-debian-0.1.36.ebuild +++ b/dev-python/python-debian/python-debian-0.1.36.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 @@ -12,7 +12,7 @@ SRC_URI="mirror://debian/pool/main/${P:0:1}/${PN}/${PN}_${PV}.tar.xz" LICENSE="GPL-2 GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/python-neutronclient/Manifest b/dev-python/python-neutronclient/Manifest index 3ca613ff659c..d6cab1598704 100644 --- a/dev-python/python-neutronclient/Manifest +++ b/dev-python/python-neutronclient/Manifest @@ -1,2 +1 @@ -DIST python-neutronclient-6.12.0.tar.gz 290025 BLAKE2B f863826a531708fda1b9ddb43f8bfd8f66fbba99ce3fe4afc1135d20fe4718dc7f11789c3e75cf52089690ce0286bf5339c9253d1e7e35916befb52ed905448a SHA512 c7e69e263b37aa14b59b08ecc12f13210e1bd6f10cde10d8b4d5b8b9f912d604e23ff41eed684baf09bb6dc278393a55ca87d6e41e0986235cd3366d321dd85f DIST python-neutronclient-6.12.1.tar.gz 290511 BLAKE2B 046de903c30539183c5650e3f666ba1f24c311d0a9848cbc7c79d64f0d35a0c380917453bf7c8251a1099fc13a15da2ecd5facacde26ec46d859510ba4203dff SHA512 cae17fbffb4f0e78aeff07e90a1d08e5f2aaa3221192be8bf66ad8ed108ee01b0307f7a9a862c685061c77ceb831a7eac4c8343a8b5a71d1380277cdddd90b07 diff --git a/dev-python/python-neutronclient/metadata.xml b/dev-python/python-neutronclient/metadata.xml index 295d065c537d..abb39171838b 100644 --- a/dev-python/python-neutronclient/metadata.xml +++ b/dev-python/python-neutronclient/metadata.xml @@ -9,9 +9,6 @@ openstack@gentoo.org Openstack - - CLI and python client library for OpenStack Neutron - python-neutronclient neutron diff --git a/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild b/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild deleted file mode 100644 index 735bdaeb4a7b..000000000000 --- a/dev-python/python-neutronclient/python-neutronclient-6.12.0.ebuild +++ /dev/null @@ -1,87 +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 Quantum API" -HOMEPAGE="https://launchpad.net/neutron" -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" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - test? ( - >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}] - >=dev-python/coverage-4.0[${PYTHON_USEDEP}] - !~dev-python/coverage-4.4[${PYTHON_USEDEP}] - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/mox3-0.20.0[${PYTHON_USEDEP}] - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] - >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}] - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] - >=dev-python/osprofiler-2.3.0[${PYTHON_USEDEP}] - >=dev-python/python-openstackclient-3.12.0[${PYTHON_USEDEP}] - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] - >=dev-python/reno-2.5.0[${PYTHON_USEDEP}] - >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}] - >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] - )" - -RDEPEND=" - ${CDEPEND} - >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}] - !~dev-python/cliff-2.9.0[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] - >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}] - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] - >=dev-python/osc-lib-1.8.0[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] - >=dev-python/oslo-log-3.36.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/os-client-config-1.28.0[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] - >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}] - !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]" - -python_prepare_all() { - # built in... - sed -i '/^hacking/d' test-requirements.txt || die - sed -i '/^flake8-import-order/d' test-requirements.txt || die - distutils-r1_python_prepare_all -} - -python_test() { - testr init - testr run || die "tests failed under python2.7" - flake8 neutronclient/tests || die "run by flake8 over tests folder yielded error" -} - -python_install() { - distutils-r1_python_install - #stupid stupid - local SITEDIR="${D}$(python_get_sitedir)" || die - cd "${SITEDIR}" || die - local egg=( python_neutronclient*.egg-info ) - #[[ -f ${egg[0]} ]] || die "python_quantumclient*.egg-info not found" - ln -s "${egg[0]}" "${egg[0]/neutron/quantum}" || die - ln -s neutronclient quantumclient || die - ln -s neutron quantumclient/quantum || die -} diff --git a/dev-python/python-neutronclient/python-neutronclient-6.12.1.ebuild b/dev-python/python-neutronclient/python-neutronclient-6.12.1.ebuild index e6783c8e132e..735bdaeb4a7b 100644 --- a/dev-python/python-neutronclient/python-neutronclient-6.12.1.ebuild +++ b/dev-python/python-neutronclient/python-neutronclient-6.12.1.ebuild @@ -12,7 +12,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="test" RESTRICT="!test? ( test )" diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml index 21388a87325d..d8d6e44fd9d3 100644 --- a/dev-python/sphinxcontrib-programoutput/metadata.xml +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml @@ -5,11 +5,19 @@ python@gentoo.org Python + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + A Sphinx extension to literally insert the output of arbitrary commands into documents, helping you to keep your command examples up to date. - + sphinxcontrib-programoutput diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index d7b394d39bb1..1c8b00cb8d3d 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild b/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild index ec448985458f..a1ec9a817c79 100644 --- a/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild +++ b/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild @@ -20,7 +20,7 @@ RUBY_S="minitar-${PV}" LICENSE="|| ( BSD-2 Ruby )" SLOT="0" -KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )" diff --git a/dev-ruby/atomic/atomic-1.1.101.ebuild b/dev-ruby/atomic/atomic-1.1.101.ebuild index 9a534cfbfa6e..0d3933350477 100644 --- a/dev-ruby/atomic/atomic-1.1.101.ebuild +++ b/dev-ruby/atomic/atomic-1.1.101.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/headius/ruby-atomic" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 x86" +KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 x86" IUSE="" all_ruby_prepare() { diff --git a/dev-ruby/backports/backports-3.15.0.ebuild b/dev-ruby/backports/backports-3.15.0.ebuild index d77fc5fd568a..ff4d4cd03857 100644 --- a/dev-ruby/backports/backports-3.15.0.ebuild +++ b/dev-ruby/backports/backports-3.15.0.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/marcandre/backports" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" all_ruby_prepare() { diff --git a/dev-ruby/backports/backports-3.16.0.ebuild b/dev-ruby/backports/backports-3.16.0.ebuild index 8eda60e184bf..19060f1e93a5 100644 --- a/dev-ruby/backports/backports-3.16.0.ebuild +++ b/dev-ruby/backports/backports-3.16.0.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/marcandre/backports" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" all_ruby_prepare() { diff --git a/dev-ruby/backports/backports-3.16.1.ebuild b/dev-ruby/backports/backports-3.16.1.ebuild index 9b3dbb4b55b5..3b1b1fbd9053 100644 --- a/dev-ruby/backports/backports-3.16.1.ebuild +++ b/dev-ruby/backports/backports-3.16.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/marcandre/backports/archive/v${PV}.tar.gz -> $P{P}.t LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" all_ruby_prepare() { diff --git a/dev-ruby/backports/backports-3.17.0.ebuild b/dev-ruby/backports/backports-3.17.0.ebuild index 168d3095922d..56c0e6a3eec1 100644 --- a/dev-ruby/backports/backports-3.17.0.ebuild +++ b/dev-ruby/backports/backports-3.17.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/marcandre/backports/archive/v${PV}.tar.gz -> $P{P}.t LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" all_ruby_prepare() { diff --git a/dev-ruby/bcat/bcat-0.6.2-r3.ebuild b/dev-ruby/bcat/bcat-0.6.2-r3.ebuild index b267882e7ec4..faeb09718642 100644 --- a/dev-ruby/bcat/bcat-0.6.2-r3.ebuild +++ b/dev-ruby/bcat/bcat-0.6.2-r3.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/rtomayko/bcat" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" # Collides on /usr/bin/bcat, bug 418301 diff --git a/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild b/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild index b901ed2ae19e..1b8d290673f8 100644 --- a/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild +++ b/dev-ruby/childlabor/childlabor-0.0.3-r1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/carllerche/childlabor/archive/${COMMIT_ID}.tar.gz -> LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="test" RUBY_S="${PN}-${COMMIT_ID}" diff --git a/dev-ruby/childprocess/childprocess-0.9.0.ebuild b/dev-ruby/childprocess/childprocess-0.9.0.ebuild index da2e6afb5615..7bbc7d2cbe68 100644 --- a/dev-ruby/childprocess/childprocess-0.9.0.ebuild +++ b/dev-ruby/childprocess/childprocess-0.9.0.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/jarib/childprocess" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" diff --git a/dev-ruby/childprocess/childprocess-1.0.1-r1.ebuild b/dev-ruby/childprocess/childprocess-1.0.1-r1.ebuild index 311461158407..4bf9b34b1439 100644 --- a/dev-ruby/childprocess/childprocess-1.0.1-r1.ebuild +++ b/dev-ruby/childprocess/childprocess-1.0.1-r1.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/jarib/childprocess" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" diff --git a/dev-ruby/childprocess/childprocess-2.0.0.ebuild b/dev-ruby/childprocess/childprocess-2.0.0.ebuild index edd96a7d9769..d927bc949821 100644 --- a/dev-ruby/childprocess/childprocess-2.0.0.ebuild +++ b/dev-ruby/childprocess/childprocess-2.0.0.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/jarib/childprocess" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" diff --git a/dev-ruby/childprocess/childprocess-3.0.0.ebuild b/dev-ruby/childprocess/childprocess-3.0.0.ebuild index 03c402767164..d4f0b7b21137 100644 --- a/dev-ruby/childprocess/childprocess-3.0.0.ebuild +++ b/dev-ruby/childprocess/childprocess-3.0.0.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/jarib/childprocess" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" diff --git a/dev-ruby/chronic/chronic-0.10.2.ebuild b/dev-ruby/chronic/chronic-0.10.2.ebuild index 53e2f6d45ab2..66d42667148b 100644 --- a/dev-ruby/chronic/chronic-0.10.2.ebuild +++ b/dev-ruby/chronic/chronic-0.10.2.ebuild @@ -15,7 +15,7 @@ DESCRIPTION="Chronic is a natural language date/time parser written in pure Ruby HOMEPAGE="https://github.com/mojombo/chronic" LICENSE="MIT" -KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 hppa ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/connection_pool/connection_pool-2.2.2.ebuild b/dev-ruby/connection_pool/connection_pool-2.2.2.ebuild index 5a0e21289df9..ccf7f78afb59 100644 --- a/dev-ruby/connection_pool/connection_pool-2.2.2.ebuild +++ b/dev-ruby/connection_pool/connection_pool-2.2.2.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/mperham/connection_pool" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )" diff --git a/dev-ruby/contracts/contracts-0.16.0.ebuild b/dev-ruby/contracts/contracts-0.16.0.ebuild index 5cda85e03cc0..59082d0a7195 100644 --- a/dev-ruby/contracts/contracts-0.16.0.ebuild +++ b/dev-ruby/contracts/contracts-0.16.0.ebuild @@ -16,5 +16,5 @@ HOMEPAGE="https://github.com/egonSchiele/contracts.ruby" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="" diff --git a/dev-ruby/domain_name/domain_name-0.5.20180417.ebuild b/dev-ruby/domain_name/domain_name-0.5.20180417.ebuild index 4428eb53e79d..ce23d1f2ac1d 100644 --- a/dev-ruby/domain_name/domain_name-0.5.20180417.ebuild +++ b/dev-ruby/domain_name/domain_name-0.5.20180417.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/knu/ruby-domain_name" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="test" ruby_add_rdepend ">=dev-ruby/unf-0.0.5-r1:0" diff --git a/dev-ruby/domain_name/domain_name-0.5.20190701.ebuild b/dev-ruby/domain_name/domain_name-0.5.20190701.ebuild index ef1ab27bc613..9a5d1fb9e288 100644 --- a/dev-ruby/domain_name/domain_name-0.5.20190701.ebuild +++ b/dev-ruby/domain_name/domain_name-0.5.20190701.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/knu/ruby-domain_name" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="test" ruby_add_rdepend ">=dev-ruby/unf-0.0.5-r1:0" diff --git a/dev-ruby/fakefs/fakefs-0.19.2.ebuild b/dev-ruby/fakefs/fakefs-0.19.2.ebuild index bf253484fd55..b6e78939fc5d 100644 --- a/dev-ruby/fakefs/fakefs-0.19.2.ebuild +++ b/dev-ruby/fakefs/fakefs-0.19.2.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/fakefs/fakefs-0.20.0.ebuild b/dev-ruby/fakefs/fakefs-0.20.0.ebuild index 4f87cbb7339b..b69c679dc5f4 100644 --- a/dev-ruby/fakefs/fakefs-0.20.0.ebuild +++ b/dev-ruby/fakefs/fakefs-0.20.0.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/fakefs/fakefs-0.20.1.ebuild b/dev-ruby/fakefs/fakefs-0.20.1.ebuild index 4f87cbb7339b..b69c679dc5f4 100644 --- a/dev-ruby/fakefs/fakefs-0.20.1.ebuild +++ b/dev-ruby/fakefs/fakefs-0.20.1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/fakefs/fakefs-1.0.0.ebuild b/dev-ruby/fakefs/fakefs-1.0.0.ebuild index 24e11d59a8d2..05c0a24fc721 100644 --- a/dev-ruby/fakefs/fakefs-1.0.0.ebuild +++ b/dev-ruby/fakefs/fakefs-1.0.0.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild b/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild index 90f5829a751f..94a8307834a1 100644 --- a/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild +++ b/dev-ruby/fakeweb/fakeweb-1.3.0.20170806.ebuild @@ -20,7 +20,7 @@ RUBY_S="${PN}-${COMMIT}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild index 42a7be9400dc..4357e4fcecf8 100644 --- a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild +++ b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/brianmario/fast_xs" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( dev-ruby/rack )" diff --git a/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild b/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild index 45e2521f8ee5..2e694bb4a21e 100644 --- a/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild +++ b/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild @@ -14,7 +14,7 @@ inherit multilib ruby-fakegem DESCRIPTION="FastCGI library for Ruby" HOMEPAGE="https://github.com/alphallc/ruby-fcgi-ng" -KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" LICENSE="Ruby" DEPEND+=" dev-libs/fcgi" diff --git a/dev-ruby/ffi/ffi-1.11.3.ebuild b/dev-ruby/ffi/ffi-1.11.3.ebuild index 46b733b12029..ee804904fd2c 100644 --- a/dev-ruby/ffi/ffi-1.11.3.ebuild +++ b/dev-ruby/ffi/ffi-1.11.3.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}. IUSE="" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND+=" dev-libs/libffi:0=" DEPEND+=" dev-libs/libffi" diff --git a/dev-ruby/ffi/ffi-1.12.1.ebuild b/dev-ruby/ffi/ffi-1.12.1.ebuild index c5d44aa14598..3214c7aa0e1b 100644 --- a/dev-ruby/ffi/ffi-1.12.1.ebuild +++ b/dev-ruby/ffi/ffi-1.12.1.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}. IUSE="" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND+=" dev-libs/libffi:0=" DEPEND+=" dev-libs/libffi" diff --git a/dev-ruby/ffi/ffi-1.12.2.ebuild b/dev-ruby/ffi/ffi-1.12.2.ebuild index c5d44aa14598..3214c7aa0e1b 100644 --- a/dev-ruby/ffi/ffi-1.12.2.ebuild +++ b/dev-ruby/ffi/ffi-1.12.2.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}. IUSE="" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND+=" dev-libs/libffi:0=" DEPEND+=" dev-libs/libffi" diff --git a/dev-ruby/ffi/ffi-1.9.25.ebuild b/dev-ruby/ffi/ffi-1.9.25.ebuild index 57ce665af89d..5df71b96e275 100644 --- a/dev-ruby/ffi/ffi-1.9.25.ebuild +++ b/dev-ruby/ffi/ffi-1.9.25.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}. IUSE="" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND+=" dev-libs/libffi" DEPEND+=" dev-libs/libffi" diff --git a/dev-ruby/flexmock/flexmock-2.3.6.ebuild b/dev-ruby/flexmock/flexmock-2.3.6.ebuild index b77e8231e91d..74e1bc6fad79 100644 --- a/dev-ruby/flexmock/flexmock-2.3.6.ebuild +++ b/dev-ruby/flexmock/flexmock-2.3.6.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/doudou/flexmock/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="flexmock" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/gherkin/gherkin-5.1.0.ebuild b/dev-ruby/gherkin/gherkin-5.1.0.ebuild index 6a082a8caf64..7827bb51e121 100644 --- a/dev-ruby/gherkin/gherkin-5.1.0.ebuild +++ b/dev-ruby/gherkin/gherkin-5.1.0.ebuild @@ -19,6 +19,6 @@ DESCRIPTION="Fast Gherkin lexer and parser" HOMEPAGE="https://github.com/cucumber/gherkin" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="5" IUSE="" diff --git a/dev-ruby/highline/highline-1.7.8.ebuild b/dev-ruby/highline/highline-1.7.8.ebuild index 1cb84d5f7eb9..5f7ecda35303 100644 --- a/dev-ruby/highline/highline-1.7.8.ebuild +++ b/dev-ruby/highline/highline-1.7.8.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/JEG2/highline" IUSE="" LICENSE="|| ( GPL-2 Ruby )" SLOT="0" -KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" ruby_add_bdepend "test? ( dev-ruby/rdoc )" diff --git a/dev-ruby/highline/highline-2.0.3.ebuild b/dev-ruby/highline/highline-2.0.3.ebuild index 0980bc0cd587..4de17ee10b5e 100644 --- a/dev-ruby/highline/highline-2.0.3.ebuild +++ b/dev-ruby/highline/highline-2.0.3.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz" IUSE="" LICENSE="|| ( GPL-2 Ruby )" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" all_ruby_prepare() { # fix up gemspec file not to call git diff --git a/dev-ruby/hpricot/hpricot-0.8.6-r5.ebuild b/dev-ruby/hpricot/hpricot-0.8.6-r5.ebuild index 67f107a81d0f..bbf9de837f09 100644 --- a/dev-ruby/hpricot/hpricot-0.8.6-r5.ebuild +++ b/dev-ruby/hpricot/hpricot-0.8.6-r5.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.github.com/hpricot/hpricot" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "dev-ruby/rake diff --git a/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild b/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild index 77649741b3dc..67943dd50354 100644 --- a/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild +++ b/dev-ruby/http-cookie/http-cookie-1.0.3.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/sparklemotion/http-cookie" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86" IUSE="" ruby_add_rdepend ">=dev-ruby/domain_name-0.5:0" diff --git a/dev-ruby/httpclient/httpclient-2.8.3.ebuild b/dev-ruby/httpclient/httpclient-2.8.3.ebuild index c26f863a9f25..4bd83dac17d9 100644 --- a/dev-ruby/httpclient/httpclient-2.8.3.ebuild +++ b/dev-ruby/httpclient/httpclient-2.8.3.ebuild @@ -23,7 +23,7 @@ SRC_URI="https://github.com/nahi/httpclient/archive/v${PV}.tar.gz -> ${P}.tgz" LICENSE="Ruby" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_rdepend "virtual/ruby-ssl" diff --git a/dev-ruby/libxml/libxml-2.9.0.ebuild b/dev-ruby/libxml/libxml-2.9.0.ebuild index 428a770181e3..14d0f1ef7171 100644 --- a/dev-ruby/libxml/libxml-2.9.0.ebuild +++ b/dev-ruby/libxml/libxml-2.9.0.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/xml4r/libxml-ruby" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="${RDEPEND} dev-libs/libxml2" diff --git a/dev-ruby/minitar/minitar-0.8.ebuild b/dev-ruby/minitar/minitar-0.8.ebuild index 346189f49ddc..0ef5b7407b4a 100644 --- a/dev-ruby/minitar/minitar-0.8.ebuild +++ b/dev-ruby/minitar/minitar-0.8.ebuild @@ -18,7 +18,7 @@ RUBY_S="minitar-${PV}" LICENSE="|| ( BSD-2 Ruby )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )" diff --git a/dev-ruby/minitar/minitar-0.9.ebuild b/dev-ruby/minitar/minitar-0.9.ebuild index a41faf3d3e90..be25e204ac1e 100644 --- a/dev-ruby/minitar/minitar-0.9.ebuild +++ b/dev-ruby/minitar/minitar-0.9.ebuild @@ -20,7 +20,7 @@ RUBY_S="minitar-${PV}" LICENSE="|| ( BSD-2 Ruby )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )" diff --git a/dev-ruby/multi_json/multi_json-1.13.1.ebuild b/dev-ruby/multi_json/multi_json-1.13.1.ebuild index 83b6945c9afe..85de1530952f 100644 --- a/dev-ruby/multi_json/multi_json-1.13.1.ebuild +++ b/dev-ruby/multi_json/multi_json-1.13.1.ebuild @@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends" HOMEPAGE="https://github.com/intridea/multi_json" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/multi_json/multi_json-1.14.0.ebuild b/dev-ruby/multi_json/multi_json-1.14.0.ebuild index 776ba06afcb5..2f49059ed46b 100644 --- a/dev-ruby/multi_json/multi_json-1.14.0.ebuild +++ b/dev-ruby/multi_json/multi_json-1.14.0.ebuild @@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends" HOMEPAGE="https://github.com/intridea/multi_json" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/multi_json/multi_json-1.14.1.ebuild b/dev-ruby/multi_json/multi_json-1.14.1.ebuild index 2452e954b4d8..602e0fe97146 100644 --- a/dev-ruby/multi_json/multi_json-1.14.1.ebuild +++ b/dev-ruby/multi_json/multi_json-1.14.1.ebuild @@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends" HOMEPAGE="https://github.com/intridea/multi_json" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/multi_test/multi_test-0.1.2.ebuild b/dev-ruby/multi_test/multi_test-0.1.2.ebuild index baee304b9249..cb50652469a3 100644 --- a/dev-ruby/multi_test/multi_test-0.1.2.ebuild +++ b/dev-ruby/multi_test/multi_test-0.1.2.ebuild @@ -15,7 +15,7 @@ DESCRIPTION="A uniform interface for Ruby testing libraries" HOMEPAGE="http://cukes.info/" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="0" IUSE="" diff --git a/dev-ruby/mustache/mustache-1.0.5.ebuild b/dev-ruby/mustache/mustache-1.0.5.ebuild index 3bc2be2d0f57..82c676ed9ade 100644 --- a/dev-ruby/mustache/mustache-1.0.5.ebuild +++ b/dev-ruby/mustache/mustache-1.0.5.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://mustache.github.com/" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x64-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x64-solaris" IUSE="" ruby_add_bdepend "doc? ( app-text/ronn )" diff --git a/dev-ruby/mustache/mustache-1.1.0.ebuild b/dev-ruby/mustache/mustache-1.1.0.ebuild index e0aecc3821ec..c0366dd7ad61 100644 --- a/dev-ruby/mustache/mustache-1.1.0.ebuild +++ b/dev-ruby/mustache/mustache-1.1.0.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://mustache.github.com/" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" IUSE="" ruby_add_bdepend "doc? ( app-text/ronn )" diff --git a/dev-ruby/mustache/mustache-1.1.1.ebuild b/dev-ruby/mustache/mustache-1.1.1.ebuild index c0ec81e53847..21d2f53b26d6 100644 --- a/dev-ruby/mustache/mustache-1.1.1.ebuild +++ b/dev-ruby/mustache/mustache-1.1.1.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://mustache.github.com/" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" IUSE="" ruby_add_bdepend "doc? ( app-text/ronn )" diff --git a/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild b/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild index 42b173d6ba1c..153d0f88e555 100644 --- a/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild +++ b/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild @@ -13,7 +13,7 @@ DESCRIPTION="Extremely mynymal test framework" HOMEPAGE="https://github.com/mynyml/nanotest" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" SLOT="0" IUSE="" diff --git a/dev-ruby/optimist/optimist-3.0.0.ebuild b/dev-ruby/optimist/optimist-3.0.0.ebuild index 2da197f04833..eaa30d7dcbab 100644 --- a/dev-ruby/optimist/optimist-3.0.0.ebuild +++ b/dev-ruby/optimist/optimist-3.0.0.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="A commandline option parser for Ruby that just gets out of your way HOMEPAGE="https://manageiq.github.io/optimist/" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="3" IUSE="" diff --git a/dev-ruby/pdf-core/pdf-core-0.7.0.ebuild b/dev-ruby/pdf-core/pdf-core-0.7.0.ebuild index bcafc4c99db1..5cc759118e5d 100644 --- a/dev-ruby/pdf-core/pdf-core-0.7.0.ebuild +++ b/dev-ruby/pdf-core/pdf-core-0.7.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/prawnpdf/pdf-core/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="|| ( Ruby GPL-2 GPL-3 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="test" ruby_add_bdepend "test? ( =dev-ruby/pdf-inspector-1* diff --git a/dev-ruby/pdf-core/pdf-core-0.8.1.ebuild b/dev-ruby/pdf-core/pdf-core-0.8.1.ebuild index 895667a68127..2a2620a24d2a 100644 --- a/dev-ruby/pdf-core/pdf-core-0.8.1.ebuild +++ b/dev-ruby/pdf-core/pdf-core-0.8.1.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/prawnpdf/pdf-core/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="|| ( Ruby GPL-2 GPL-3 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="test" ruby_add_bdepend "test? ( =dev-ruby/pdf-inspector-1* diff --git a/dev-ruby/pdf-inspector/pdf-inspector-1.3.0.ebuild b/dev-ruby/pdf-inspector/pdf-inspector-1.3.0.ebuild index 6c8763aeac90..9d46c5b8979c 100644 --- a/dev-ruby/pdf-inspector/pdf-inspector-1.3.0.ebuild +++ b/dev-ruby/pdf-inspector/pdf-inspector-1.3.0.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/prawnpdf/pdf-inspector" LICENSE="|| ( Ruby GPL-2 GPL-3 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/pdf-reader-1.0:* =dev-ruby/rspec-core-3.0.0 >=dev-ruby/rspec-expectations-3.0.0" diff --git a/dev-ruby/rspec-its/rspec-its-1.3.0.ebuild b/dev-ruby/rspec-its/rspec-its-1.3.0.ebuild index 7f05bd44961c..e13eccf192ee 100644 --- a/dev-ruby/rspec-its/rspec-its-1.3.0.ebuild +++ b/dev-ruby/rspec-its/rspec-its-1.3.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/rspec/rspec-its" LICENSE="MIT" SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/rspec-core-3.0.0 >=dev-ruby/rspec-expectations-3.0.0" diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild index ecdd56ca7fc7..558f51fd242d 100644 --- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild +++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="A Ruby interface to some LDAP libraries" HOMEPAGE="https://github.com/bearded/ruby-ldap" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-macos" +KEYWORDS="amd64 ~arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-macos" IUSE="ssl" DEPEND=">=net-nds/openldap-2 dev-libs/cyrus-sasl diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild index ffe7a0ab521a..01a110e665a0 100644 --- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild +++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="A Ruby interface to some LDAP libraries" HOMEPAGE="https://github.com/bearded/ruby-ldap" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos" IUSE="ssl" DEPEND=">=net-nds/openldap-2 dev-libs/cyrus-sasl diff --git a/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild b/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild index d9ac4f179a2a..5d7ce220d454 100644 --- a/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild +++ b/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild @@ -15,5 +15,5 @@ HOMEPAGE="https://github.com/e2/ruby_dep" LICENSE="MIT" SLOT="1" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="" diff --git a/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild b/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild index 1081ec8322ed..1ce10588a71f 100644 --- a/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild +++ b/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="1" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild b/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild index e1bb9ec68526..510726c22094 100644 --- a/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="1" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/rubyzip/rubyzip-2.0.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.0.0.ebuild index 510531b3cc18..71603db8672c 100644 --- a/dev-ruby/rubyzip/rubyzip-2.0.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-2.0.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/rubyzip/rubyzip-2.1.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.1.0.ebuild index c9a40ccdb29e..1f1802a89f67 100644 --- a/dev-ruby/rubyzip/rubyzip-2.1.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-2.1.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild index c9a40ccdb29e..1f1802a89f67 100644 --- a/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-2.2.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild b/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild index 7c910c0b7cba..5ab4e5fa4366 100644 --- a/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-2.3.0.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg LICENSE="Ruby" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" RDEPEND="" diff --git a/dev-ruby/test_declarative/test_declarative-0.0.6.ebuild b/dev-ruby/test_declarative/test_declarative-0.0.6.ebuild index fbd9981c7aa3..7864edd2629d 100644 --- a/dev-ruby/test_declarative/test_declarative-0.0.6.ebuild +++ b/dev-ruby/test_declarative/test_declarative-0.0.6.ebuild @@ -19,7 +19,7 @@ RUBY_S="svenfuchs-test_declarative-*" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="" ruby_add_bdepend "test? ( dev-ruby/bundler >=dev-ruby/minitest-5.10:5 )" diff --git a/dev-ruby/text-hyphen/text-hyphen-1.4.1-r2.ebuild b/dev-ruby/text-hyphen/text-hyphen-1.4.1-r2.ebuild index c1a569a87f15..67977671f6ea 100644 --- a/dev-ruby/text-hyphen/text-hyphen-1.4.1-r2.ebuild +++ b/dev-ruby/text-hyphen/text-hyphen-1.4.1-r2.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="http://rubyforge.org/projects/text-format" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild b/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild index 3ec62f1912fa..945dd95a1697 100644 --- a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild +++ b/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/ruby-concurrency/thread_safe" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" # Higher atomic dependency since earlier versions crash on ruby20 while diff --git a/dev-ruby/trollop/trollop-2.1.3.ebuild b/dev-ruby/trollop/trollop-2.1.3.ebuild index 08bad14c968d..b87427ee644a 100644 --- a/dev-ruby/trollop/trollop-2.1.3.ebuild +++ b/dev-ruby/trollop/trollop-2.1.3.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="Trollop is a commandline option parser for Ruby" HOMEPAGE="https://manageiq.github.io/trollop/" LICENSE="MIT" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="2" IUSE="" diff --git a/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild b/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild index 37433640300f..5e6d87ccbff5 100644 --- a/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild +++ b/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://tzinfo.github.io/" LICENSE="MIT" SLOT="1" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ppc ~ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 hppa ppc ~ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="sys-libs/timezone-data" diff --git a/dev-ruby/tzinfo/tzinfo-1.2.6.ebuild b/dev-ruby/tzinfo/tzinfo-1.2.6.ebuild index de073682bc91..f12dcfb45cfd 100644 --- a/dev-ruby/tzinfo/tzinfo-1.2.6.ebuild +++ b/dev-ruby/tzinfo/tzinfo-1.2.6.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://tzinfo.github.io/" LICENSE="MIT" SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="sys-libs/timezone-data" diff --git a/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild b/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild index bc31b7ea1596..31185f497872 100644 --- a/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild +++ b/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/tzinfo/tzinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="sys-libs/timezone-data" diff --git a/dev-ruby/tzinfo/tzinfo-2.0.1.ebuild b/dev-ruby/tzinfo/tzinfo-2.0.1.ebuild index 822369bac297..3e62e9f03174 100644 --- a/dev-ruby/tzinfo/tzinfo-2.0.1.ebuild +++ b/dev-ruby/tzinfo/tzinfo-2.0.1.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/tzinfo/tzinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="sys-libs/timezone-data" diff --git a/dev-ruby/unindent/unindent-1.0.ebuild b/dev-ruby/unindent/unindent-1.0.ebuild index d4236ce777df..b5c35499f2b6 100644 --- a/dev-ruby/unindent/unindent-1.0.ebuild +++ b/dev-ruby/unindent/unindent-1.0.ebuild @@ -13,7 +13,7 @@ DESCRIPTION="Ruby method to unindent strings" HOMEPAGE="https://github.com/mynyml/unindent" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" SLOT="0" IUSE="" diff --git a/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild index e49ce3b31dd9..cad4f7662ffa 100644 --- a/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild +++ b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/brianmario/yajl-ruby" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="${RDEPEND} dev-libs/yajl" diff --git a/dev-ruby/yajl-ruby/yajl-ruby-1.4.1.ebuild b/dev-ruby/yajl-ruby/yajl-ruby-1.4.1.ebuild index 3c5a9f146b7a..5cc080df493a 100644 --- a/dev-ruby/yajl-ruby/yajl-ruby-1.4.1.ebuild +++ b/dev-ruby/yajl-ruby/yajl-ruby-1.4.1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/brianmario/yajl-ruby" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="${RDEPEND} dev-libs/yajl" diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 28c8ef198b99..bfa60961e76e 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/aruba/aruba-0.6.2-r2.ebuild b/dev-util/aruba/aruba-0.6.2-r2.ebuild index 590c05a71b0a..24c05ba884c9 100644 --- a/dev-util/aruba/aruba-0.6.2-r2.ebuild +++ b/dev-util/aruba/aruba-0.6.2-r2.ebuild @@ -16,7 +16,7 @@ DESCRIPTION="Cucumber steps for driving out command line applications" HOMEPAGE="https://github.com/cucumber/aruba" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="0" IUSE="" diff --git a/dev-util/aruba/aruba-0.8.1.ebuild b/dev-util/aruba/aruba-0.8.1.ebuild index 389a430d1663..62b3774f9e83 100644 --- a/dev-util/aruba/aruba-0.8.1.ebuild +++ b/dev-util/aruba/aruba-0.8.1.ebuild @@ -16,7 +16,7 @@ DESCRIPTION="Cucumber steps for driving out command line applications" HOMEPAGE="https://github.com/cucumber/aruba" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" SLOT="0" IUSE="" diff --git a/dev-util/bsdiff/bsdiff-4.3-r4.ebuild b/dev-util/bsdiff/bsdiff-4.3-r4.ebuild index b4558a12eab3..80205ce655cf 100644 --- a/dev-util/bsdiff/bsdiff-4.3-r4.ebuild +++ b/dev-util/bsdiff/bsdiff-4.3-r4.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.daemonology.net/bsdiff/${P}.tar.gz" SLOT="0" LICENSE="BSD-2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" RDEPEND="app-arch/bzip2" diff --git a/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild b/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild index b67b40a50eaa..0e3f8ea79517 100644 --- a/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild +++ b/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz -> RUBY_S="cucumber-ruby-core-${PV}" LICENSE="Ruby" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="$(ver_cut 1-2)" IUSE="test" diff --git a/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild b/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild index 246ce7a4cdd8..52524e05703c 100644 --- a/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild +++ b/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="Executable feature scenarios" HOMEPAGE="https://github.com/aslakhellesoy/cucumber/wikis" LICENSE="Ruby" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="0" IUSE="test" diff --git a/dev-util/cucumber/cucumber-3.1.2.ebuild b/dev-util/cucumber/cucumber-3.1.2.ebuild index 7014eedab2bc..88bdd8396bb5 100644 --- a/dev-util/cucumber/cucumber-3.1.2.ebuild +++ b/dev-util/cucumber/cucumber-3.1.2.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P} RUBY_S="cucumber-ruby-${PV}" LICENSE="Ruby" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" SLOT="0" IUSE="examples test" diff --git a/dev-util/diffball/Manifest b/dev-util/diffball/Manifest index 3728eb1d1a79..08877aa878b8 100644 --- a/dev-util/diffball/Manifest +++ b/dev-util/diffball/Manifest @@ -1,4 +1,3 @@ DIST diffball-1.0.1-bug_543310_stack_buffer_overflows.patch 2945 BLAKE2B 17aa01d64464edccc490e7714dc9db8767d19b0c8b6d14223359d266d38e47aae822454aa14446c038b2b3477a4d8a8db228be7e28666528883ebf02ac2cb65b SHA512 be9a44cd9abfb41f32683d0363375902477f739f9c0dd23b30cfcd9fc6fced61111a2b101cb46db2d6320b4d70ed04627a1c178d44f23530f248bcb87e6efd32 DIST diffball-1.0.1-bug_708736_cseek_xz_reset_avail_in_out.patch 1041 BLAKE2B de4ac71445f30546eeaaa28201640f3295bc288d83b75b8f84d3134f070249248c777edfe9b0dc705ff7990e6d4dce37d53aa1a9e153bc9a71cff6192b09f8f3 SHA512 eaa9f55b1de0d82a7c21280c4d7e6effcb90944c65f42e0230ef18044f6651512befd425128619c4ca3641111be3cef1418f1800e1854cced24433e1deffe5e7 -DIST diffball-1.0.1.tar.bz2 387787 BLAKE2B e46dbf32b2ec9bece106ca90a6ae46bdfde8b83a5fd41e67f15c4bd25d7015327b4738ce3bfba71c92fd2baa94a5d3bc507dd0fad2b3451447a39a7fe058002e SHA512 1e01fff8bf7d993c828f195d974b7df1cd4fb056e9a51f9533bc8e01666a55e0d9467c799a005f58d7b4369bbf88fc9b716d0fb68ead6171d349e3c874bddb8c DIST diffball-1.0.1.tar.gz 86387 BLAKE2B 1e2c6d522b00a643666e88d19d2d6986ce02c7835378dfc9799e43fa291683bf08e129546a85c332b04ab549788ae4ac3b4d57fd6140a29a9556bece4293cbf9 SHA512 3344f03a65e2b44615eaf9210d26a4438712684c438fcea9caabe89688fe3b3d5436703f0ed63412a18a63acb49ca0dacff190fa002ea76b346bbccba3388ee4 diff --git a/dev-util/diffball/diffball-1.0.1-r1.ebuild b/dev-util/diffball/diffball-1.0.1-r1.ebuild deleted file mode 100644 index 4b2dae447bee..000000000000 --- a/dev-util/diffball/diffball-1.0.1-r1.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 autotools flag-o-matic - -DESCRIPTION="Delta compression suite for using/generating binary patches" -HOMEPAGE="https://github.com/zmedico/diffball" -SRC_URI="https://github.com/zmedico/diffball/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://github.com/zmedico/diffball/pull/1.patch -> ${P}-bug_543310_stack_buffer_overflows.patch" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="debug" - -RDEPEND=">=sys-libs/zlib-1.1.4 - >=app-arch/bzip2-1.0.2 - app-arch/xz-utils" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -# Invalid RESTRICT for source package. Investigate. -RESTRICT="strip" - -PATCHES=("${DISTDIR}/${P}-bug_543310_stack_buffer_overflows.patch") - -src_prepare() { - # fix bug 548316 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - default - eautoreconf -} - -src_configure() { - econf --disable-static $(use_enable debug asserts) -} diff --git a/dev-util/diffball/diffball-1.0.1-r2.ebuild b/dev-util/diffball/diffball-1.0.1-r2.ebuild index c421260819b9..76ded6aa350e 100644 --- a/dev-util/diffball/diffball-1.0.1-r2.ebuild +++ b/dev-util/diffball/diffball-1.0.1-r2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/zmedico/diffball/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="debug" RDEPEND=">=sys-libs/zlib-1.1.4 diff --git a/dev-util/diffball/diffball-1.0.1.ebuild b/dev-util/diffball/diffball-1.0.1.ebuild deleted file mode 100644 index 00f22c0d31d9..000000000000 --- a/dev-util/diffball/diffball-1.0.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=6 - -inherit flag-o-matic - -DESCRIPTION="Delta compression suite for using/generating binary patches" -HOMEPAGE="https://github.com/rafaelmartins/diffball" -SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="debug" - -RDEPEND=">=sys-libs/zlib-1.1.4 - >=app-arch/bzip2-1.0.2 - app-arch/xz-utils" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -# Invalid RESTRICT for source package. Investigate. -RESTRICT="strip" - -src_prepare() { - # fix bug 548316 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - default -} - -src_configure() { - econf --disable-static $(use_enable debug asserts) -} diff --git a/dev-util/distro-info/Manifest b/dev-util/distro-info/Manifest index 6fa30436ffd3..e289b24a1b05 100644 --- a/dev-util/distro-info/Manifest +++ b/dev-util/distro-info/Manifest @@ -1,2 +1 @@ -DIST distro-info_0.14.tar.xz 26460 BLAKE2B eb34e31514f7acfd283ae9405132884ccae31b77d6cf7af3a8a341ac349d589cbd5d7828e763911fc490d6504edae4c90551b3d3cc3518eec1f47ab1dcc6ac60 SHA512 aa0055f21523e30fc7e9c94c92f87cbd05fc5d082ddc109d092e94dabafac7533ced984197797252eb698232b3d8f512b3c345ed6abef0ae074bf2770224955e DIST distro-info_0.22.tar.xz 29104 BLAKE2B 88eab833ea34de9e62f858e1fb9acfb94efb60114d2213b8bbb77a440c114dbac70a1707d1469113c1a98ea94d953ffa36480c132c294fd8e22b816a444b25e1 SHA512 b9d97e469b9173651c1816f39cc2315622b46f1579cbaba29c417a51417425e90a45283e83c7efee35db78621df08997f5395c8c1b0259f69e5cd91dee65793f diff --git a/dev-util/distro-info/distro-info-0.14.ebuild b/dev-util/distro-info/distro-info-0.14.ebuild deleted file mode 100644 index 11fae490576c..000000000000 --- a/dev-util/distro-info/distro-info-0.14.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_6 ) -DISTUTILS_OPTIONAL=true - -inherit distutils-r1 - -DESCRIPTION="Provides information about the Debian distributions' releases" -HOMEPAGE="https://debian.org" -SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="python test" -RESTRICT="!test? ( test )" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND="dev-lang/perl:= - python? ( ${PYTHON_DEPS} )" -DEPEND="${CDEPEND} - python? ( dev-python/setuptools[${PYTHON_USEDEP}] ) - test? ( - dev-util/shunit2 - dev-python/pylint[${PYTHON_USEDEP}] - )" -RDEPEND="${CDEPEND} - dev-util/distro-info-data" - -src_prepare() { - default - - # 1. Gentoo do not provides dpkg vendor information - # 2. Strip *FLAGS - # 3. Strip predefined CFLAGS - # 4. Point to correct perl's vendorlib - # 5. Remove python tests - python eclass will be used instead - sed -e "/cd python && python/d" \ - -e "/VENDOR/d" \ - -e "/dpkg-buildflags/d" \ - -e "s/-g -O2//g" \ - -e "s:\$(PREFIX)/share/perl5/Debian:\$(PERL_VENDORLIB)/Debian:g" \ - -e "/pyversions/d" \ - -i "${S}"/Makefile || die -} - -src_configure() { - default - - if use python; then - pushd ./python > /dev/null || die - distutils-r1_src_configure - popd > /dev/null || die - fi -} - -src_compile() { - default - - if use python; then - pushd ./python > /dev/null || die - distutils-r1_src_compile - popd > /dev/null || die - fi -} - -src_install() { - emake PERL_VENDORLIB=$(perl -e 'require Config; print "$Config::Config{'vendorlib'}\n";') \ - DESTDIR="${D}" install - - if use python; then - pushd ./python > /dev/null || die - distutils-r1_src_install - popd > /dev/null || die - fi -} - -src_test() { - TZ=UTC default - - if use python; then - python_test() { - esetup.py test - } - - pushd ./python > /dev/null || die - distutils-r1_src_test - popd > /dev/null || die - fi -} diff --git a/dev-util/distro-info/distro-info-0.22.ebuild b/dev-util/distro-info/distro-info-0.22.ebuild index c9d42ef994d5..c7530dee8c22 100644 --- a/dev-util/distro-info/distro-info-0.22.ebuild +++ b/dev-util/distro-info/distro-info-0.22.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz" LICENSE="ISC" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="python test" RESTRICT="!test? ( test )" diff --git a/dev-util/dput-ng/Manifest b/dev-util/dput-ng/Manifest index c09fd0e18c5e..8019c7511dc0 100644 --- a/dev-util/dput-ng/Manifest +++ b/dev-util/dput-ng/Manifest @@ -1,2 +1 @@ -DIST dput-ng_1.10.tar.xz 82608 BLAKE2B e7b3769490ec0bf4de4f763380e9a50fd2c76778c2864a4ba45eb754f2dc4aa896e556ad86939f9bf003a68b1e185b51507dd0a015453dfb39965c63beab4964 SHA512 4a883350e7a0b47c121b752d1e0ab1470924319ef895f55742fc4d8f8a0cb3a0ab4ae18d54495ebc9229b0cbf18fa375848fcdcd2431ee1f66bff6433b9a3b08 DIST dput-ng_1.28.tar.xz 85276 BLAKE2B d205d15aad1b81dcf2cc0b765c9724b21add32df39102b63502d99e5da73aa95efdf66e94f6226105ab2ae97a4bf8c43963784f3ddf2d03217ab5023a7a98f22 SHA512 cfd4a6143b33f29eb32b88972a204ab7a6c2f062299c76167434322ae5d6d2cf8654c5b4d1e96db90dbffe372a04e2a7691694ecf46787c7743dd9ac2b7b317e diff --git a/dev-util/dput-ng/dput-ng-1.10-r1.ebuild b/dev-util/dput-ng/dput-ng-1.10-r1.ebuild deleted file mode 100644 index eef660cec5b5..000000000000 --- a/dev-util/dput-ng/dput-ng-1.10-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_SINGLE_IMPL=1 - -inherit bash-completion-r1 distutils-r1 - -DESCRIPTION="Next generation Debian package upload tool" -HOMEPAGE="https://people.debian.org/~paultag/dput-ng/" -SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/python-debian[${PYTHON_MULTI_USEDEP}] - dev-python/paramiko[${PYTHON_MULTI_USEDEP}] - dev-util/distro-info[python,${PYTHON_MULTI_USEDEP}] - ') -" -DEPEND="${RDEPEND} - app-text/asciidoc - test? ( - $(python_gen_cond_dep ' - dev-python/nose[${PYTHON_MULTI_USEDEP}] - dev-python/python-debian[${PYTHON_MULTI_USEDEP}] - ') - )" - -RESTRICT="test" - -S="${WORKDIR}/${PN/-/}" - -src_compile() { - distutils-r1_src_compile - - mkdir man || die - for file in docs/man/*.man; do - a2x --doctype manpage --format manpage -D man \ - "${file}" || die - done -} - -src_install() { - local DPUT_BINARIES=( dcut dirt dput ) - local DPUT_ETC=( metas profiles ) - local DPUT_SHARE=( - codenames - commands - hooks - interfaces - schemas - uploaders - ) - - distutils-r1_src_install - - for binary in ${DPUT_BINARIES[@]}; do - dobin bin/"${binary}" - done - python_fix_shebang "${D}"/usr/bin - - insinto /etc/dput.d - for dir in ${DPUT_ETC[@]}; do - doins -r skel/"${dir}" - done - - insinto /usr/share/"${PN}" - for dir in ${DPUT_SHARE[@]}; do - doins -r skel/"${dir}" - done - - # doman incorrectly treats "cf" in dput.cf.5 as a lang code - doman -i18n="" man/* - - newbashcomp debian/"${PN}".bash-completion dput -} - -python_test() { - # test_configs.py failing - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824652 - nosetests || die "Tests failed under ${EPYTHON}" -} diff --git a/dev-util/dput-ng/dput-ng-1.28-r1.ebuild b/dev-util/dput-ng/dput-ng-1.28-r1.ebuild index 573ed24b99a4..fb1de4c9d3f1 100644 --- a/dev-util/dput-ng/dput-ng-1.28-r1.ebuild +++ b/dev-util/dput-ng/dput-ng-1.28-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RDEPEND=" diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index c588fc01677c..fc31c1b3764f 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest index f0a5ec6b8b02..3312e0a06ebc 100644 --- a/dev-vcs/git/Manifest +++ b/dev-vcs/git/Manifest @@ -1,12 +1,12 @@ DIST git-2.23.1.tar.xz 5713672 BLAKE2B 50db7bafbadcefbc5a56db478ea0464d289c45190a0454e0b8f3d99d48e6251071482df0240ee1ee8a1f733c91e9e46d34794bca8ca70d3c4ecc3b5da6d5d529 SHA512 708f8b9a7c65c1c9d3117b1b7ee9383044b66fe8a5c168a52ba561985670f659d514aa34988ea8ba85c127da6a23c39c511919a6d661bffc9cf782e30fd62373 DIST git-2.24.1.tar.xz 5772304 BLAKE2B 45e49325221cd0407968b4e2ff7bcab7ea021863119ae29fec5c7a9ff10461b5af0ea05f587647c7d4965c38e25f1140f194be72ff5f1bea8851c0485effbfa2 SHA512 010c13d4023c142876d0e075a394b74bef422944d8ca602325d0b2b47bf28b1d534283c7f295751113c83fdfcc0c91f97090e8f906560d44b04a94607fd8fcf7 -DIST git-2.25.0.tar.xz 5873532 BLAKE2B 7e9e54677ac3c4d3295e9f92ba7e3f7f5b33620d6d0fb8105d5e57d609fe3ee499d1c1bc4a6d8832927a28f4948f4466a6ca4edf996b8a324279f91d25627660 SHA512 8bbada0451fe0a3314e1b9a43a74135115449aa41f5b3e7f960279e4a7fe6069c36e78825fc4b60d06806e3a6fa8158f327cb8a3801686ac22a35e3704244191 DIST git-2.25.1.tar.xz 5875548 BLAKE2B 582da3d4ac996d7b9ce6cf505661496ab1a2cd061f058745350498121956b33d79739b567fb5fea0b4e298303261256034aa0b8da0b842feab04ae67a7d5b142 SHA512 15241143acfd8542d85d2709ac3c80dbd6e8d5234438f70c4f33cc71a2bdec3e32938df7f6351e2746d570b021d3bd0b70474ea4beec0c51d1fc45f9c287b344 +DIST git-2.25.2.tar.xz 5877576 BLAKE2B c07bb888eb05a9f3cc91f207bc5151fd7eeb8137e151353dada0637bc879da5a594097649c9a49ecfe173a550d19ecba5eba47638e2f1a7f07467818a763c82e SHA512 5f24bb060165a7397286588cfa32a3e77a98059058363699f7873a2efbb77419dc8985a9b8ae05166035e24db586c379b55c7049a5b6a436c554a7f621a51a23 DIST git-htmldocs-2.23.1.tar.xz 1296144 BLAKE2B 5be4a8afdd79234d220c119b8a4239e640486dc52236d980d08e6b3cad1be61b683c0e3dff6bdd67035a1e23f1d07858d3344f9f2ae90b44188395f34c22fea4 SHA512 c005be3baf129c9320893270d1d3b69e01546a29d482d29e5bc7baefbaab33e45d877c5c09e47312bbdb8b3dfcff27735c2427dcae9eb21fd3500ec30e214ae1 DIST git-htmldocs-2.24.1.tar.xz 1307992 BLAKE2B 80b39d2fcf47d20a584109572414ff8d275245afb80c3946e2fa62346fdaee3b1c873a0dccfb44af52290756d26d5e53021a1bf1ace7ada34e50e03244f05e92 SHA512 4da610ba1ee307e4f53414e324ef63ab25cf3945a74bf813aeacd4cf714710eab31776c2402c9567f1a3805e3d8576a158c78a72722c0178fb7c2dec2dcebf5a -DIST git-htmldocs-2.25.0.tar.xz 1293644 BLAKE2B 8966e7d57701543770a589aef4a4bb8e673c22987330095431da6cc6cff023f8e288ba13a43d388d9b6e4fb92bed5baaa983c72124f440ef9e6c966b03d920a4 SHA512 67e8c2cc458d81870c901b720800a49cf605b3815c63af91328419a1e543e296b348bd8f7126a4a3cefcb8e2e2c7b713bcfc38ee945c224bd34bbd1c3e4f45b2 DIST git-htmldocs-2.25.1.tar.xz 1295708 BLAKE2B 18a274e5eb48030f50c0f38cbcc81b0e65c55ea6b702a9cc4f231c274faf0247c4fdaccde2d348717826d1bd914fe62b387946ae63aba64ba032c43898529f7a SHA512 f261cf72a7b59277666c543d2b40cc9e37ae6d4925616dcb448325e69c59efdee9db151a0d509545d5b366d82fe1196ece289197c02c65ae5f8c91526d49b0fb +DIST git-htmldocs-2.25.2.tar.xz 1296488 BLAKE2B 274c425ba1f52e26c36b5276b7796c465cd5bbf6d2fa73e7f821e0fb727902ce088ea6b7e37cac6c1cace9e7a4f41f3bebe2227aee313a17e2aac6dbf8729a7d SHA512 abe131ef4761e4f112da171baf6d9be6b745f5d06b9e90731052ef13bdc9f71557e53cd93a3e8ea5c33706b7f08cda8aa0e3e760409abda1b9582625ec513ca5 DIST git-manpages-2.23.1.tar.xz 448432 BLAKE2B 0de4b2c0dcc3a70188a66d8aa6e16aeaad84a9f16b764934b06f61773db2d5141cc0b1091780d126f29a1f50c767a54fbb7d01a36f86d387d8ccb4060f48156e SHA512 16145c0c2215ce6a3aa9045f35f670258f6823a765ed2feec680ed980420d1bb008fc39d8f379c81cd0b259fc582d15e42395d4f954171b20bcf214ab25e41d7 DIST git-manpages-2.24.1.tar.xz 453752 BLAKE2B 51a549099205341bfec5a7998e5f66e9fc78ffd05fd04e745401a8bcc5bffcb64f26a64c7e24c9822bc2d62d000ea2b13779ffe19f065124a8e42b306fb5a2d3 SHA512 ee1e70fdbfc6eae97dc3b3180fa119b0d1189db7cae3e45b8baa9311d0c1162a5b46824a785e91288522a9fd00b8e4ff07590f4e4722a08955d6a9d048cc3a90 -DIST git-manpages-2.25.0.tar.xz 456636 BLAKE2B 672557d167b7d2ff48089bc5be1fa446f25eed4412d6e48549d5907f7addab9f721a03a8bcb7ca3fb1804220021566ebac549d9878df9f1030f283ed5e44ddf3 SHA512 3ad1756b1f12898823a8981e3b650f588c6c1fb2d51371739c754108e67c2cd13e4d2bcb8291534523eac60e7a05253d4ddf2f3528e28d4e1b50eafa42168847 DIST git-manpages-2.25.1.tar.xz 457408 BLAKE2B 6b9d7074bc690156e7d4a14b04d8e82c9441c8b9330bdf40de215fc48ee7bbfaf410b57bbf48bd6127a60f0d6daa0adf7194fc8eb43b3d8e2a9b5d054cb7d5ea SHA512 c36afa05f641c6e1d909cbe0e3292a10f35c0a05867e2782e6770857714b152de839f1e9b2c2ff2efea0b50b19cfdf3022d8617a299f4aa3940533eb891fa6ba +DIST git-manpages-2.25.2.tar.xz 459208 BLAKE2B b78fdade0d99035969d16f726422e63f6c98c0cfbdcbeb272a07619f5efbece88eddf008884ec3c10ab05d8558fb975f6f89604757a424adae922ea3a8ad5a24 SHA512 61bc0090fa36f537a193c8007f82f4ac005f6afa86621d6273f131230381a1f17712d95b3a47c27bbd9eea351fd49d4f1c16fabe7f81b40a6aa1308e8afc5371 diff --git a/dev-vcs/git/git-2.25.0.ebuild b/dev-vcs/git/git-2.25.2.ebuild similarity index 100% rename from dev-vcs/git/git-2.25.0.ebuild rename to dev-vcs/git/git-2.25.2.ebuild diff --git a/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild b/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild index 6cf8acb5c9cc..888a6f82fde6 100644 --- a/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild +++ b/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://www.mercurial-scm.org/release/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+chg emacs gpg test tk zsh-completion" BROKEN_PYTHON=" diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index d2df10af36fc..87c4524143aa 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/libmilter/libmilter-1.0.2_p1.ebuild b/mail-filter/libmilter/libmilter-1.0.2_p1.ebuild index fcbf94c48c7e..b1557e597524 100644 --- a/mail-filter/libmilter/libmilter-1.0.2_p1.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2_p1.ebuild @@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.sendmail.org/pub/sendmail/sendmail.${SENDMAIL_VER}.tar.gz" LICENSE="Sendmail" 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="ipv6 poll" DEPEND="!mail-mta/sendmail diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index c4c59cd529cd..a5eb89fb17b1 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/gst-plugins-bad/files/gst-plugins-bad-1.14.5-make43.patch b/media-libs/gst-plugins-bad/files/gst-plugins-bad-1.14.5-make43.patch new file mode 100644 index 000000000000..37d72b9f7e84 --- /dev/null +++ b/media-libs/gst-plugins-bad/files/gst-plugins-bad-1.14.5-make43.patch @@ -0,0 +1,227 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list +--- a/common/gst-glib-gen.mak ++++ b/common/gst-glib-gen.mak +@@ -1,14 +1,16 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + $(glib_gen_basename)-marshal.h: $(glib_gen_basename)-marshal.list +--- a/ext/srt/Makefile.in ++++ b/ext/srt/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -795,7 +797,7 @@ + gstsrtserversink.h \ + $(NULL) + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/ext/srtp/Makefile.in ++++ b/ext/srtp/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + VPATH = @srcdir@ + am__is_gnu_make = { \ +@@ -775,7 +777,7 @@ + BUILT_SOURCES = gstsrtp-enumtypes.c gstsrtp-enumtypes.h + nodist_libgstsrtp_la_SOURCES = $(BUILT_SOURCES) + CLEANFILES = $(BUILT_SOURCES) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/ext/webrtc/Makefile.in ++++ b/ext/webrtc/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -797,7 +799,7 @@ + + libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/gst-libs/gst/interfaces/Makefile.in ++++ b/gst-libs/gst/interfaces/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -773,7 +775,7 @@ + glib_gen_prefix = gst_photography + glib_gen_basename = photography + glib_gen_decl_banner = GST_PHOTOGRAPHY_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_sources = \ + photography-enumtypes.c + +@@ -805,7 +807,7 @@ + $(built_headers) + + CLEANFILES = $(BUILT_SOURCES) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/gst-libs/gst/mpegts/Makefile.in ++++ b/gst-libs/gst/mpegts/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + +@@ -821,7 +823,7 @@ + glib_gen_prefix = gst_mpegts + glib_gen_basename = gstmpegts + glib_gen_decl_banner = GST_MPEGTS_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + BUILT_SOURCES = gstmpegts-enumtypes.c gstmpegts-enumtypes.h + nodist_libgstmpegts_@GST_API_VERSION@_la_SOURCES = gstmpegts-enumtypes.c + CLEANFILES = $(BUILT_SOURCES) $(am__append_1) +@@ -841,7 +843,7 @@ + @HAVE_INTROSPECTION_TRUE@gir_DATA = $(BUILT_GIRSOURCES) + @HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0/ + @HAVE_INTROSPECTION_TRUE@typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/gst-libs/gst/webrtc/Makefile.in ++++ b/gst-libs/gst/webrtc/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + +@@ -761,7 +763,7 @@ + glib_gen_prefix = gst_webrtc + glib_gen_basename = webrtc + glib_gen_decl_banner = GST_WEBRTC_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_sources = webrtc-enumtypes.c + built_headers = webrtc-enumtypes.h + BUILT_SOURCES = $(built_sources) $(built_headers) +@@ -806,7 +808,7 @@ + $(GST_ALL_LDFLAGS) \ + $(GST_LT_LDFLAGS) + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstWebRTC-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@include_HEADERS)) + @HAVE_INTROSPECTION_TRUE@gir_sources = $(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@_la_SOURCES)) $(BUILT_SOURCES) diff --git a/media-libs/gst-plugins-bad/gst-plugins-bad-1.14.5.ebuild b/media-libs/gst-plugins-bad/gst-plugins-bad-1.14.5.ebuild index 76fd41bbffe5..0e1a40ea3311 100644 --- a/media-libs/gst-plugins-bad/gst-plugins-bad-1.14.5.ebuild +++ b/media-libs/gst-plugins-bad/gst-plugins-bad-1.14.5.ebuild @@ -42,6 +42,10 @@ DEPEND="${RDEPEND} RESTRICT="test" +PATCHES=( + "${FILESDIR}"/${PN}-1.14.5-make43.patch # remove when bumping and switching to Meson +) + src_prepare() { default addpredict /dev # Prevent sandbox violations bug #570624 diff --git a/media-libs/gst-plugins-base/files/gst-plugins-base-1.14.5-make43.patch b/media-libs/gst-plugins-base/files/gst-plugins-base-1.14.5-make43.patch new file mode 100644 index 000000000000..04b2924376b7 --- /dev/null +++ b/media-libs/gst-plugins-base/files/gst-plugins-base-1.14.5-make43.patch @@ -0,0 +1,312 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list +--- a/common/gst-glib-gen.mak ++++ b/common/gst-glib-gen.mak +@@ -1,14 +1,16 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + $(glib_gen_basename)-marshal.h: $(glib_gen_basename)-marshal.list +--- a/gst/encoding/Makefile.in ++++ b/gst/encoding/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -638,7 +640,7 @@ + gstsmartencoder.h \ + gststreamcombinerpad.h + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/gst-libs/gst/app/Makefile.in ++++ b/gst-libs/gst/app/Makefile.in +@@ -17,13 +17,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -618,12 +620,12 @@ + glib_gen_prefix = __gst_app + glib_gen_basename = app + glib_gen_decl_banner = GST_APP_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + glib_enum_headers = gstappsrc.h + built_sources = app-enumtypes.c + built_headers = app-enumtypes.h + BUILT_SOURCES = $(built_sources) $(built_headers) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + libgstapp_@GST_API_VERSION@_la_SOURCES = gstappsrc.c gstappsink.c + nodist_libgstapp_@GST_API_VERSION@_la_SOURCES = $(BUILT_SOURCES) + libgstapp_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \ +--- a/gst-libs/gst/audio/Makefile.in ++++ b/gst-libs/gst/audio/Makefile.in +@@ -39,13 +39,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -784,7 +786,7 @@ + glib_gen_prefix = gst_audio + glib_gen_basename = audio + glib_gen_decl_banner = GST_AUDIO_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_sources = audio-enumtypes.c + built_headers = audio-enumtypes.h + lib_LTLIBRARIES = \ +@@ -895,7 +897,7 @@ + @HAVE_X86_TRUE@ $(GST_LIB_LDFLAGS) \ + @HAVE_X86_TRUE@ $(GST_ALL_LDFLAGS) + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # Introspection + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstAudio-@GST_API_VERSION@.gir +--- a/gst-libs/gst/pbutils/Makefile.in ++++ b/gst-libs/gst/pbutils/Makefile.in +@@ -17,13 +17,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -664,6 +666,7 @@ + gstdiscoverer.h \ + gstaudiovisualizer.h + ++H := \# + + # variables used for enum/marshal generation + glib_enum_headers = $(headers_pbutils) +@@ -671,7 +674,7 @@ + glib_gen_prefix = pbutils + glib_gen_basename = pbutils + glib_gen_decl_banner = GST_PBUTILS_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_headers_configure = \ + gstpluginsbaseversion.h + +@@ -719,7 +722,7 @@ + + # DISTCLEANFILES is for files generated by configure + DISTCLEANFILES = $(built_headers_configure) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstPbutils-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, \ + @HAVE_INTROSPECTION_TRUE@ $(libgstpbutils_@GST_API_VERSION@include_HEADERS)) \ +--- a/gst-libs/gst/rtp/Makefile.in ++++ b/gst-libs/gst/rtp/Makefile.in +@@ -17,13 +17,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -675,8 +677,8 @@ + glib_enum_headers = $(libgstrtpinclude_HEADERS) + glib_gen_basename = gstrtp + glib_gen_decl_banner = GST_RTP_API +-glib_gen_decl_include = \#include +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++glib_gen_decl_include = $(H)include ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstRtp-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, \ + @HAVE_INTROSPECTION_TRUE@ $(libgstrtpinclude_HEADERS)) \ +--- a/gst-libs/gst/rtsp/Makefile.in ++++ b/gst-libs/gst/rtsp/Makefile.in +@@ -17,13 +17,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -679,8 +681,8 @@ + glib_enum_headers = $(libgstrtspinclude_HEADERS) + glib_gen_basename = gstrtsp + glib_gen_decl_banner = GST_RTSP_API +-glib_gen_decl_include = \#include +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++glib_gen_decl_include = $(H)include ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstRtsp-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, \ + @HAVE_INTROSPECTION_TRUE@ $(libgstrtspinclude_HEADERS)) \ +--- a/gst-libs/gst/tag/Makefile.in ++++ b/gst-libs/gst/tag/Makefile.in +@@ -17,13 +17,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -680,12 +682,12 @@ + glib_gen_prefix = gst_tag + glib_gen_basename = tag + glib_gen_decl_banner = GST_TAG_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + glib_enum_headers = tag.h gsttagdemux.h + built_sources = tag-enumtypes.c + built_headers = tag-enumtypes.h + BUILT_SOURCES = $(built_sources) $(built_headers) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + libgsttaginclude_HEADERS = \ + tag.h tag-prelude.h gsttagdemux.h gsttagmux.h xmpwriter.h + +--- a/gst-libs/gst/video/Makefile.in ++++ b/gst-libs/gst/video/Makefile.in +@@ -39,13 +39,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include + ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -740,7 +742,7 @@ + glib_gen_prefix = gst_video + glib_gen_basename = video + glib_gen_decl_banner = GST_VIDEO_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_sources = video-enumtypes.c + built_headers = video-enumtypes.h + lib_LTLIBRARIES = libgstvideo-@GST_API_VERSION@.la +@@ -821,7 +823,7 @@ + + libgstvideo_@GST_API_VERSION@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS) $(LIBM) + libgstvideo_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstVideo-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, \ + @HAVE_INTROSPECTION_TRUE@ $(libgstvideo_@GST_API_VERSION@include_HEADERS)) \ diff --git a/media-libs/gst-plugins-base/gst-plugins-base-1.14.5-r1.ebuild b/media-libs/gst-plugins-base/gst-plugins-base-1.14.5-r1.ebuild index 83bcb9e58c17..5c5d32348394 100644 --- a/media-libs/gst-plugins-base/gst-plugins-base-1.14.5-r1.ebuild +++ b/media-libs/gst-plugins-base/gst-plugins-base-1.14.5-r1.ebuild @@ -90,6 +90,10 @@ DEPEND="${RDEPEND} X? ( x11-base/xorg-proto ) " +PATCHES=( + "${FILESDIR}"/${PN}-1.14.5-make43.patch # remove when bumping and switching to Meson +) + src_prepare() { # Disable GL tests for now; prone to fail with EGL_NOT_INITIALIZED, etc sed -i -e '/^@USE_GL_TRUE@/d' tests/check/Makefile.in diff --git a/media-libs/gst-plugins-good/files/gst-plugins-good-1.14.5-make43.patch b/media-libs/gst-plugins-good/files/gst-plugins-good-1.14.5-make43.patch new file mode 100644 index 000000000000..2429bf2b0008 --- /dev/null +++ b/media-libs/gst-plugins-good/files/gst-plugins-good-1.14.5-make43.patch @@ -0,0 +1,56 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list +--- a/common/gst-glib-gen.mak ++++ b/common/gst-glib-gen.mak +@@ -1,13 +1,15 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + $(glib_gen_basename)-marshal.h: $(glib_gen_basename)-marshal.list +--- a/sys/v4l2/Makefile.in ++++ b/sys/v4l2/Makefile.in +@@ -17,6 +17,8 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance +@@ -669,7 +671,7 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + plugin_LTLIBRARIES = libgstvideo4linux2.la +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + libgstvideo4linux2_la_SOURCES = gstv4l2.c \ + gstv4l2allocator.c \ + gstv4l2colorbalance.c \ diff --git a/media-libs/gst-plugins-good/gst-plugins-good-1.14.5.ebuild b/media-libs/gst-plugins-good/gst-plugins-good-1.14.5.ebuild index 112f1972ea15..94dfa129e9de 100644 --- a/media-libs/gst-plugins-good/gst-plugins-good-1.14.5.ebuild +++ b/media-libs/gst-plugins-good/gst-plugins-good-1.14.5.ebuild @@ -25,6 +25,10 @@ DEPEND="${RDEPEND} >=dev-util/gtk-doc-am-1.12 " +PATCHES=( + "${FILESDIR}"/${PN}-1.14.5-make43.patch # remove when bumping and switching to Meson +) + multilib_src_configure() { # Always enable optional bz2 support for matroska # Always enable optional zlib support for qtdemux and matroska diff --git a/media-libs/gst-plugins-ugly/files/gst-plugins-ugly-1.14.3-make43.patch b/media-libs/gst-plugins-ugly/files/gst-plugins-ugly-1.14.3-make43.patch new file mode 100644 index 000000000000..86ce47cdf158 --- /dev/null +++ b/media-libs/gst-plugins-ugly/files/gst-plugins-ugly-1.14.3-make43.patch @@ -0,0 +1,17 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list diff --git a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.14.3.ebuild b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.14.3.ebuild index 0bf1a43b0fff..0ced8242290f 100644 --- a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.14.3.ebuild +++ b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.14.3.ebuild @@ -21,6 +21,10 @@ DEPEND="${RDEPEND} >=dev-util/gtk-doc-am-1.12 " +PATCHES=( + "${FILESDIR}"/${PN}-1.14.3-make43.patch # remove when bumping and switching to Meson +) + multilib_src_configure() { gstreamer_multilib_src_configure diff --git a/media-libs/gstreamer/files/gstreamer-1.14.5-make43.patch b/media-libs/gstreamer/files/gstreamer-1.14.5-make43.patch new file mode 100644 index 000000000000..e22cc9f8b458 --- /dev/null +++ b/media-libs/gstreamer/files/gstreamer-1.14.5-make43.patch @@ -0,0 +1,84 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list +--- a/common/gst-glib-gen.mak ++++ b/common/gst-glib-gen.mak +@@ -1,14 +1,16 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + $(glib_gen_basename)-marshal.h: $(glib_gen_basename)-marshal.list +--- a/libs/gst/controller/Makefile.in ++++ b/libs/gst/controller/Makefile.in +@@ -17,13 +17,6 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + +-#glib_enum_headers=$(colorbalance_headers) +-#glib_enum_define=GST_COLOR_BALANCE +-#glib_gen_prefix=gst_color_balance +-#glib_gen_basename=colorbalance +-#glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include +- + + + VPATH = @srcdir@ +@@ -550,11 +543,12 @@ + gstinterpolationcontrolsource.h \ + gstlfocontrolsource.h + ++H := \# + glib_enum_define = GST_CONTROLLER + glib_gen_prefix = gst + glib_gen_basename = controller + glib_gen_decl_banner = GST_CONTROLLER_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include = $(H)include + built_sources = controller-enumtypes.c + built_headers = controller-enumtypes.h + BUILT_SOURCES = $(built_sources) $(built_headers) +@@ -587,7 +581,14 @@ + libgstcontroller_@GST_API_VERSION@_la_LIBADD = $(GST_OBJ_LIBS) $(LIBM) + libgstcontroller_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS) + CLEANFILES = *.gcno *.gcda *.gcov $(BUILT_SOURCES) $(am__append_1) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++ ++#glib_enum_headers=$(colorbalance_headers) ++#glib_enum_define=GST_COLOR_BALANCE ++#glib_gen_prefix=gst_color_balance ++#glib_gen_basename=colorbalance ++#glib_gen_decl_banner=GST_EXPORT ++#glib_gen_decl_include=$(H)include ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstController-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, \ + @HAVE_INTROSPECTION_TRUE@ $(libgstcontroller_@GST_API_VERSION@_include_HEADERS)) \ diff --git a/media-libs/gstreamer/gstreamer-1.14.5.ebuild b/media-libs/gstreamer/gstreamer-1.14.5.ebuild index 3de3bd8ed033..d1e6df243771 100644 --- a/media-libs/gstreamer/gstreamer-1.14.5.ebuild +++ b/media-libs/gstreamer/gstreamer-1.14.5.ebuild @@ -37,6 +37,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}"/1.14-glib-2.60-tests-compat.patch + "${FILESDIR}"/${PN}-1.14.5-make43.patch # remove when bumping and switching to Meson ) src_configure() { diff --git a/media-libs/libvorbis/libvorbis-1.3.6-r1.ebuild b/media-libs/libvorbis/libvorbis-1.3.6-r1.ebuild index 0e582b51dfcc..c77ce2098f10 100644 --- a/media-libs/libvorbis/libvorbis-1.3.6-r1.ebuild +++ b/media-libs/libvorbis/libvorbis-1.3.6-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://downloads.xiph.org/releases/vorbis/${P}.tar.xz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh 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 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs test" RESTRICT="!test? ( test )" diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index 70b05813ec0c..3617d16f4e5c 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/gst-plugins-srtp/files/gst-plugins-srtp-1.14.5-make43.patch b/media-plugins/gst-plugins-srtp/files/gst-plugins-srtp-1.14.5-make43.patch new file mode 100644 index 000000000000..2779516250b7 --- /dev/null +++ b/media-plugins/gst-plugins-srtp/files/gst-plugins-srtp-1.14.5-make43.patch @@ -0,0 +1,226 @@ +--- a/common/glib-gen.mak ++++ b/common/glib-gen.mak +@@ -1,11 +1,13 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_enum_prefix=gst_color_balance + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + %-marshal.h: %-marshal.list +--- a/common/gst-glib-gen.mak ++++ b/common/gst-glib-gen.mak +@@ -1,6 +1,8 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance +@@ -8,7 +10,7 @@ + #glib_gen_decl_banner=GST_EXPORT + #glib_gen_decl_include=\#include + +-enum_headers=$(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers=$(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + + # these are all the rules generating the relevant files + $(glib_gen_basename)-marshal.h: $(glib_gen_basename)-marshal.list +--- a/ext/srt/Makefile.in ++++ b/ext/srt/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -795,7 +797,7 @@ + gstsrtserversink.h \ + $(NULL) + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/ext/srtp/Makefile.in ++++ b/ext/srtp/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + VPATH = @srcdir@ + am__is_gnu_make = { \ +@@ -775,7 +777,7 @@ + BUILT_SOURCES = gstsrtp-enumtypes.c gstsrtp-enumtypes.h + nodist_libgstsrtp_la_SOURCES = $(BUILT_SOURCES) + CLEANFILES = $(BUILT_SOURCES) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/ext/webrtc/Makefile.in ++++ b/ext/webrtc/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -797,7 +799,7 @@ + + libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/gst-libs/gst/interfaces/Makefile.in ++++ b/gst-libs/gst/interfaces/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + VPATH = @srcdir@ +@@ -773,7 +775,7 @@ + glib_gen_prefix = gst_photography + glib_gen_basename = photography + glib_gen_decl_banner = GST_PHOTOGRAPHY_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include=$(H)include + built_sources = \ + photography-enumtypes.c + +@@ -805,7 +807,7 @@ + $(built_headers) + + CLEANFILES = $(BUILT_SOURCES) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/gst-libs/gst/mpegts/Makefile.in ++++ b/gst-libs/gst/mpegts/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + +@@ -821,7 +823,7 @@ + glib_gen_prefix = gst_mpegts + glib_gen_basename = gstmpegts + glib_gen_decl_banner = GST_MPEGTS_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include=$(H)include + BUILT_SOURCES = gstmpegts-enumtypes.c gstmpegts-enumtypes.h + nodist_libgstmpegts_@GST_API_VERSION@_la_SOURCES = gstmpegts-enumtypes.c + CLEANFILES = $(BUILT_SOURCES) $(am__append_1) +@@ -841,7 +843,7 @@ + @HAVE_INTROSPECTION_TRUE@gir_DATA = $(BUILT_GIRSOURCES) + @HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0/ + @HAVE_INTROSPECTION_TRUE@typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib) +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +--- a/gst-libs/gst/webrtc/Makefile.in ++++ b/gst-libs/gst/webrtc/Makefile.in +@@ -17,12 +17,14 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance + #glib_gen_basename=colorbalance + #glib_gen_decl_banner=GST_EXPORT +-#glib_gen_decl_include=\#include ++#glib_gen_decl_include=$(H)include + + + +@@ -761,7 +763,7 @@ + glib_gen_prefix = gst_webrtc + glib_gen_basename = webrtc + glib_gen_decl_banner = GST_WEBRTC_API +-glib_gen_decl_include = \#include ++glib_gen_decl_include=$(H)include + built_sources = webrtc-enumtypes.c + built_headers = webrtc-enumtypes.h + BUILT_SOURCES = $(built_sources) $(built_headers) +@@ -806,7 +808,7 @@ + $(GST_ALL_LDFLAGS) \ + $(GST_LT_LDFLAGS) + +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@BUILT_GIRSOURCES = GstWebRTC-@GST_API_VERSION@.gir + @HAVE_INTROSPECTION_TRUE@gir_headers = $(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@include_HEADERS)) + @HAVE_INTROSPECTION_TRUE@gir_sources = $(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@_la_SOURCES)) $(BUILT_SOURCES) diff --git a/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.5.ebuild b/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.5.ebuild index 2b2de83b219b..27f17351022b 100644 --- a/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.5.ebuild +++ b/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.5.ebuild @@ -15,3 +15,7 @@ RDEPEND=" " DEPEND="${RDEPEND} dev-util/glib-utils" + +PATCHES=( + "${FILESDIR}"/${PN}-1.14.5-make43.patch # remove when bumping and switching to Meson +) diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 801ead6fecf9..0d3cb1600dd8 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/din/Manifest b/media-sound/din/Manifest index 946941fad632..b4876fadda20 100644 --- a/media-sound/din/Manifest +++ b/media-sound/din/Manifest @@ -1,2 +1 @@ -DIST din-43.0.1.tar.gz 3644254 BLAKE2B 6b441ce93b3bd68e3bad5d7a6fea1914f250a5e35410f12c64da7ab1f530aa74b4a8f624a7b6ec70e26b62f5b3f8ada674ad7286b89e2569bbec9f3f29cccac6 SHA512 14df7f52a80801f062ed1a81c5625d8730e7bcc21cfa5256ecce9b478494828a3d0877c37434f30883aa519f767a70ba1cee4d203ec57c5bc72de1c47d2d848d DIST din-44.0.2.tar.gz 3652445 BLAKE2B 2b8dab2c4f4c22442bf446c7f43fdcff911c6b245950a9b06c9c0eaffa7138dd276900e58cef4cd21fabf9488bc5e56080f60c38af33eb9d4a6486019ff4b76c SHA512 a90c6d4d2e1817f8a740ad849f27f2b2f2c2e879107f6edf5bb49ecbb8168eb3c742db9984b9df43df7c49dd6273a947271e80fb2ac6d8300125e6cb35720de8 diff --git a/media-sound/din/din-43.0.1.ebuild b/media-sound/din/din-43.0.1.ebuild deleted file mode 100644 index 55b8c4efcd3e..000000000000 --- a/media-sound/din/din-43.0.1.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 autotools eutils xdg - -DESCRIPTION="a software musical instrument and audio synthesizer" -HOMEPAGE="http://dinisnoise.org/" -SRC_URI="https://archive.org/download/dinisnoise_source_code/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+alsa jack" - -RDEPEND=" - dev-lang/tcl:0= - media-libs/libsdl:= - virtual/glu - virtual/opengl - alsa? ( media-libs/alsa-lib ) - jack? ( virtual/jack ) -" -DEPEND=" - ${RDEPEND} - dev-libs/boost -" -BDEPEND=" - virtual/pkgconfig -" - -REQUIRED_USE="|| ( alsa jack )" - -PATCHES=( - "${FILESDIR}/${P}-makefile.patch" - "${FILESDIR}/${P}-fix-random-constants.patch" -) - -src_prepare() { - default - - edos2unix pixmaps/${PN}.desktop - - use jack && (sed -i "s/-lasound/-ljack/g" src/Makefile.am || die "Failed to fix jack linking") - - eautoreconf -} - -src_configure() { - # Jack takes over alsa. - local sound_engine - - use jack && sound_engine="UNIX_JACK" || sound_engine="LINUX_ALSA" - - econf CXXFLAGS="${CXXFLAGS} -D__${sound_engine}__" -} diff --git a/media-sound/din/din-44.0.2.ebuild b/media-sound/din/din-44.0.2.ebuild index 23b5dfffc761..eaec2db6bdc2 100644 --- a/media-sound/din/din-44.0.2.ebuild +++ b/media-sound/din/din-44.0.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://archive.org/download/dinisnoise_source_code/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+alsa jack" RDEPEND=" diff --git a/media-sound/lollypop/Manifest b/media-sound/lollypop/Manifest index 5510b4760f98..07050e6087f4 100644 --- a/media-sound/lollypop/Manifest +++ b/media-sound/lollypop/Manifest @@ -1,2 +1,2 @@ DIST lollypop-1.1.4.16.tar.xz 455312 BLAKE2B 358fae45a4332c10ba59d65d09ae51f28fb7fc026e137289c47951536753796e0b7efa9f3713bccde68e6260f79b1132eb00357be8c53fba04f3c827e97851cf SHA512 08b8ec7c1fbe5f1b8f95f95677012eeb9bd83951ee320470a0da852e0a446818e48ede7de045f6d7b98dff8be139fa69d780dbf03e65904c773f8ec1493f9915 -DIST lollypop-1.2.22.tar.xz 492964 BLAKE2B b113d5e19ec63a5535c86e2347b49c3fe4f56dabdfc4c7943ce956931580cdd92e96cb35c5c45c84d75f2d599e78c93caa195216a1a754f764254e4b73ccb531 SHA512 0161be7d6d2a10db57679c4c230ab9832ab34ce7074fc9e215a56a0dcc64fe17b3b8367c271209a75096b327dd6b793be2f54fb3904e3c98a26b1cd2aa88962b +DIST lollypop-1.2.25.tar.xz 501864 BLAKE2B de009282359ac6b030f567417fa2e159fd5803d6395e77270a1b671f507f61ac7fad76e29b1ebb1ad75de68d2f07b44b4d0878deb9195a9a2d6934501a3a2a64 SHA512 7ffedff3b3b40c158db83368af77025884576693202917cc74916edb5182b942387ab8a13dcc37f24e7096256f2c676c268d0dda996450d916605ffd4ac1ff41 diff --git a/media-sound/lollypop/lollypop-1.2.22.ebuild b/media-sound/lollypop/lollypop-1.2.25.ebuild similarity index 69% rename from media-sound/lollypop/lollypop-1.2.22.ebuild rename to media-sound/lollypop/lollypop-1.2.25.ebuild index ff6d17b3eb60..06db306eb32f 100644 --- a/media-sound/lollypop/lollypop-1.2.22.ebuild +++ b/media-sound/lollypop/lollypop-1.2.25.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_6 ) PYTHON_REQ_USE="sqlite" -inherit python-r1 gnome2-utils meson xdg-utils +inherit python-single-r1 gnome2-utils meson xdg-utils DESCRIPTION="Modern music player for GNOME" HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop" @@ -20,13 +20,17 @@ DEPEND="${PYTHON_DEPS} dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] - dev-python/pycairo[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pycairo[${PYTHON_MULTI_USEDEP}] + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] + ') gnome-base/gnome-common x11-libs/gtk+:3 " BDEPEND="${DEPEND} - dev-python/pkgconfig[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pkgconfig[${PYTHON_MULTI_USEDEP}] + ') dev-util/desktop-file-utils dev-util/itstool dev-util/intltool @@ -34,10 +38,12 @@ BDEPEND="${DEPEND} RDEPEND="${DEPEND} app-crypt/libsecret[introspection] dev-libs/totem-pl-parser - dev-python/beautifulsoup:4[${PYTHON_USEDEP}] - dev-python/dbus-python - dev-python/pillow[${PYTHON_USEDEP}] - >=dev-python/pylast-1.0.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}] + dev-python/dbus-python + dev-python/pillow[${PYTHON_MULTI_USEDEP}] + >=dev-python/pylast-1.0.0[${PYTHON_MULTI_USEDEP}] + ') media-libs/gst-plugins-base:1.0[introspection] " @@ -49,7 +55,7 @@ pkg_preinst() { src_install() { meson_src_install - python_foreach_impl python_optimize + python_optimize } pkg_postinst() { diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 5fe22faaa887..61677c81b1aa 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 a10281f93c44..5bc392b7c22c 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 18 Mar 2020 06:08:53 +0000 +Wed, 18 Mar 2020 18:38:53 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index a10281f93c44..5bc392b7c22c 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 18 Mar 2020 06:08:53 +0000 +Wed, 18 Mar 2020 18:38:53 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 8569bb973d66..09f39bc92985 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index fe3aac073559..98c0da6a2f53 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/xz-utils-5.2.5 b/metadata/md5-cache/app-arch/xz-utils-5.2.5 new file mode 100644 index 000000000000..0d88f146aa8d --- /dev/null +++ b/metadata/md5-cache/app-arch/xz-utils-5.2.5 @@ -0,0 +1,15 @@ +BDEPEND=>=app-portage/elt-patches-20170815 +DEFINED_PHASES=compile configure install postinst preinst prepare test +DEPEND=!=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 test -DEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= dev-libs/concurrencykit dev-libs/libxslt sys-devel/libtool virtual/pkgconfig test? ( dev-util/cram ) -DESCRIPTION=System performance benchmark -EAPI=7 -HOMEPAGE=https://github.com/akopytov/sysbench -IUSE=aio mysql postgres test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.16.tar.gz -> sysbench-1.0.16.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=18249241680440135788194b661e96bb diff --git a/metadata/md5-cache/app-benchmarks/sysbench-1.0.17-r1 b/metadata/md5-cache/app-benchmarks/sysbench-1.0.19 similarity index 53% rename from metadata/md5-cache/app-benchmarks/sysbench-1.0.17-r1 rename to metadata/md5-cache/app-benchmarks/sysbench-1.0.19 index 477730b17034..f9d0a3e81d76 100644 --- a/metadata/md5-cache/app-benchmarks/sysbench-1.0.17-r1 +++ b/metadata/md5-cache/app-benchmarks/sysbench-1.0.19 @@ -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 +BDEPEND=sys-devel/libtool 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 prepare test -DEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= dev-libs/concurrencykit dev-libs/libxslt sys-devel/libtool virtual/pkgconfig test? ( dev-util/cram ) +DEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:2 dev-libs/concurrencykit dev-libs/libxslt test? ( dev-util/cram ) DESCRIPTION=System performance benchmark EAPI=7 HOMEPAGE=https://github.com/akopytov/sysbench IUSE=aio mysql postgres test KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= +RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:2 RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.17.tar.gz -> sysbench-1.0.17.tar.gz +SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.19.tar.gz -> sysbench-1.0.19.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=18249241680440135788194b661e96bb +_md5_=281356f24d9e3cc567b49527eb94739b diff --git a/metadata/md5-cache/app-cdr/Manifest.gz b/metadata/md5-cache/app-cdr/Manifest.gz index 250cd4170a85..f50cbfc29804 100644 Binary files a/metadata/md5-cache/app-cdr/Manifest.gz and b/metadata/md5-cache/app-cdr/Manifest.gz differ diff --git a/metadata/md5-cache/app-cdr/bchunk-1.2.2 b/metadata/md5-cache/app-cdr/bchunk-1.2.2 new file mode 100644 index 000000000000..473c5d8c70c6 --- /dev/null +++ b/metadata/md5-cache/app-cdr/bchunk-1.2.2 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=Convert CD images from bin/cue to iso+wav/cdr +EAPI=7 +HOMEPAGE=http://he.fi/bchunk/ +KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-2+ +SLOT=0 +SRC_URI=http://he.fi/bchunk/bchunk-1.2.2.tar.gz +_md5_=fd3716bb06100df2382c37d62450e2cc diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 0fb717b93316..cc3dab0fc4b4 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/chntpw-140201 b/metadata/md5-cache/app-crypt/chntpw-140201 index 2708598d0d78..433a7600d965 100644 --- a/metadata/md5-cache/app-crypt/chntpw-140201 +++ b/metadata/md5-cache/app-crypt/chntpw-140201 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile install prepare DEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) app-arch/unzip static? ( dev-libs/openssl:0[static-libs] ) DESCRIPTION=Offline Windows NT Password & Registry Editor EAPI=7 -HOMEPAGE=http://pogostick.net/~pnh/ntpasswd/ +HOMEPAGE=https://pogostick.net/~pnh/ntpasswd/ IUSE=libressl static KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) SLOT=0 -SRC_URI=http://pogostick.net/~pnh/ntpasswd/chntpw-source-140201.zip +SRC_URI=https://pogostick.net/~pnh/ntpasswd/chntpw-source-140201.zip _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=9b84f2db50a53cc17529e0331ebf0a38 +_md5_=5608126e39d71a2ef4c1276e4f59ea74 diff --git a/metadata/md5-cache/app-crypt/qca-2.3.0 b/metadata/md5-cache/app-crypt/qca-2.3.0 index 3910388b629f..7543c4f6b668 100644 --- a/metadata/md5-cache/app-crypt/qca-2.3.0 +++ b/metadata/md5-cache/app-crypt/qca-2.3.0 @@ -5,11 +5,11 @@ DESCRIPTION=Qt Cryptographic Architecture (QCA) EAPI=7 HOMEPAGE=https://userbase.kde.org/QCA IUSE=botan debug doc examples gcrypt gpg logger nss pkcs11 sasl softstore +ssl test -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris LICENSE=LGPL-2.1 RDEPEND=dev-qt/qtcore:5 botan? ( dev-libs/botan:= ) gcrypt? ( dev-libs/libgcrypt:= ) gpg? ( app-crypt/gnupg ) nss? ( dev-libs/nss ) pkcs11? ( >=dev-libs/openssl-1.1 dev-libs/pkcs11-helper ) sasl? ( dev-libs/cyrus-sasl:2 ) ssl? ( >=dev-libs/openssl-1.1:0= ) RESTRICT=!test? ( test ) SLOT=2 SRC_URI=mirror://kde/stable/qca/2.3.0/qca-2.3.0.tar.xz _eclasses_=cmake 88799418ef3db9d88b6232a483143608 estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b kde.org 104cd698592fe00d01da44e1e6d056bd multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bc01adad12452b73a743e97161e19543 +_md5_=a9ab4a3a841818d7e221e4cae67ed174 diff --git a/metadata/md5-cache/app-crypt/rainbowcrack-1.7 b/metadata/md5-cache/app-crypt/rainbowcrack-1.7 index 775f2a03830c..87bc2df6978d 100644 --- a/metadata/md5-cache/app-crypt/rainbowcrack-1.7 +++ b/metadata/md5-cache/app-crypt/rainbowcrack-1.7 @@ -2,11 +2,11 @@ DEFINED_PHASES=install unpack DEPEND=app-arch/unzip DESCRIPTION=Hash cracker that precomputes plaintext - ciphertext pairs in advance EAPI=7 -HOMEPAGE=http://project-rainbowcrack.com/ +HOMEPAGE=https://project-rainbowcrack.com/ KEYWORDS=-* ~amd64 LICENSE=all-rights-reserved RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( http://project-rainbowcrack.com/rainbowcrack-1.7-linux64.zip ) +SRC_URI=amd64? ( https://project-rainbowcrack.com/rainbowcrack-1.7-linux64.zip ) _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 -_md5_=1fc25fd298924a9180e76226b49bbdd2 +_md5_=8727844b4cde16d597bf710071e4221d diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index 2304ceccf025..0c0f401855c6 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/nvi-1.81.6-r7 b/metadata/md5-cache/app-editors/nvi-1.81.6-r7 deleted file mode 100644 index 5be621ffb53b..000000000000 --- a/metadata/md5-cache/app-editors/nvi-1.81.6-r7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare -DEPEND=>=sys-libs/db-4.2.52_p5:= >=sys-libs/ncurses-5.6-r2:= perl? ( dev-lang/perl ) tcl? ( >=dev-lang/tcl-8.5:0= ) virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Re-implementation of the classic 4BSD ex/vi -EAPI=6 -HOMEPAGE=https://sites.google.com/a/bostic.com/keithbostic/vi -IUSE=perl tcl unicode -KEYWORDS=~alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos -LICENSE=BSD -RDEPEND=>=sys-libs/db-4.2.52_p5:= >=sys-libs/ncurses-5.6-r2:= perl? ( dev-lang/perl ) tcl? ( >=dev-lang/tcl-8.5:0= ) app-eselect/eselect-vi -REQUIRED_USE=tcl? ( !unicode ) -SLOT=0 -SRC_URI=http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/nvi-1.81.6.tar.bz2 -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 db-use 501a5d0963e0d17f30260023f292ae8e desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver f9ec87e93172b25ce65a85303dc06964 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=0e68420f9257597e1512140f5fc2236b diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index b7631a6f6de7..e4298863bfeb 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/meson-mode-0.2 b/metadata/md5-cache/app-emacs/meson-mode-0.2 new file mode 100644 index 000000000000..4902c25d1e62 --- /dev/null +++ b/metadata/md5-cache/app-emacs/meson-mode-0.2 @@ -0,0 +1,12 @@ +BDEPEND=>=app-editors/emacs-24:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=A GNU Emacs major mode for Meson build-system files +EAPI=7 +HOMEPAGE=https://github.com/wentasah/meson-mode +KEYWORDS=~amd64 +LICENSE=GPL-3+ +RDEPEND=>=app-editors/emacs-24:* +SLOT=0 +SRC_URI=https://github.com/wentasah/meson-mode/archive/v0.2.tar.gz -> meson-mode-0.2.tar.gz +_eclasses_=elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 504a3383c45504fde86b00426619a709 +_md5_=ff9ff5d7e017850ca22909d308bc2489 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index fd0a57837843..0c3c86c47336 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/protontricks-1.3.1-r1 b/metadata/md5-cache/app-emulation/protontricks-1.3.1-r1 deleted file mode 100644 index df5048b28573..000000000000 --- a/metadata/md5-cache/app-emulation/protontricks-1.3.1-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( 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] ) app-emulation/winetricks python_single_target_python3_6? ( dev-python/vdf[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/vdf[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/vdf[python_targets_python3_8(-)] ) gui? ( gnome-extra/zenity || ( app-emulation/winetricks[gtk] app-emulation/winetricks[kde] ) ) python_single_target_python3_6? ( dev-python/pytest[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pytest[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pytest[python_targets_python3_8(-)] ) ) 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_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) -DEFINED_PHASES=compile configure install postinst prepare setup test -DESCRIPTION=app-emulation/winetricks wrapper for Proton (Steam Play) games -EAPI=7 -HOMEPAGE=https://github.com/Matoking/protontricks -IUSE=+gui test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 -LICENSE=GPL-3 -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] ) app-emulation/winetricks python_single_target_python3_6? ( dev-python/vdf[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/vdf[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/vdf[python_targets_python3_8(-)] ) gui? ( gnome-extra/zenity || ( app-emulation/winetricks[gtk] app-emulation/winetricks[kde] ) ) 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] ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://codeload.github.com/Matoking/protontricks/tar.gz/1.3.1 -> protontricks-1.3.1.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=50d235c26093493d88dd7b1d855be11d diff --git a/metadata/md5-cache/app-emulation/virt-viewer-8.0 b/metadata/md5-cache/app-emulation/virt-viewer-8.0 index f73cef30ec09..2b72d5d5621b 100644 --- a/metadata/md5-cache/app-emulation/virt-viewer-8.0 +++ b/metadata/md5-cache/app-emulation/virt-viewer-8.0 @@ -4,11 +4,11 @@ DESCRIPTION=Graphical console client for connecting to virtual machines EAPI=6 HOMEPAGE=https://virt-manager.org/ IUSE=+libvirt sasl +spice +vnc -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/libxml2-2.6 x11-libs/gtk+:3 libvirt? ( >=app-emulation/libvirt-0.10.0[sasl?] app-emulation/libvirt-glib ) spice? ( >=net-misc/spice-gtk-0.35[sasl?,gtk3] ) vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3(+)] ) REQUIRED_USE=|| ( spice vnc ) SLOT=0 SRC_URI=https://virt-manager.org/download/sources/virt-viewer/virt-viewer-8.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver f9ec87e93172b25ce65a85303dc06964 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 2df69d3da6a26b1ca7cd81185f0599d6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=802c468035463a6a15788279f4a9c9b0 +_md5_=438ceb23d366216b4121e442cc2be179 diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 8ffcad207cc7..389ae09d8582 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/gpyutils-0.4.1 b/metadata/md5-cache/app-portage/gpyutils-0.4.1 index 643aaff2d775..923d369fc63b 100644 --- a/metadata/md5-cache/app-portage/gpyutils-0.4.1 +++ b/metadata/md5-cache/app-portage/gpyutils-0.4.1 @@ -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 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=>=app-portage/gentoopm-0.3.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=https://github.com/mgorny/gpyutils/archive/v0.4.1.tar.gz -> gpyutils-0.4.1.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=0a29fae3cad4f666985a9aac3a479244 +_md5_=aef2169598391e5ff40ea403a769d90c diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 788dbb29aa33..4dfa254498a5 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/ronn-0.7.3-r3 b/metadata/md5-cache/app-text/ronn-0.7.3-r3 index 41074d5ecb9f..7710b0568058 100644 --- a/metadata/md5-cache/app-text/ronn-0.7.3-r3 +++ b/metadata/md5-cache/app-text/ronn-0.7.3-r3 @@ -4,7 +4,7 @@ DESCRIPTION=Converts simple, human readable textfiles to roff for terminal displ EAPI=5 HOMEPAGE=https://github.com/rtomayko/ronn/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/hpricot-0.8.2[ruby_targets_ruby24(-)] >=dev-ruby/mustache-0.7.0[ruby_targets_ruby24(-)] >=dev-ruby/rdiscount-1.5.8[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/hpricot-0.8.2[ruby_targets_ruby25(-)] >=dev-ruby/mustache-0.7.0[ruby_targets_ruby25(-)] >=dev-ruby/rdiscount-1.5.8[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/hpricot-0.8.2[ruby_targets_ruby26(-)] >=dev-ruby/mustache-0.7.0[ruby_targets_ruby26(-)] >=dev-ruby/rdiscount-1.5.8[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ronn-0.7.3.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=471de446197722b389dca911c22c8d1e +_md5_=ab5342a1f86e430e473d39c95d5af682 diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index c8f5fed6bf06..780d40b8af3b 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/tbb-2020.1 b/metadata/md5-cache/dev-cpp/tbb-2020.1 new file mode 100644 index 000000000000..8af3f6f641d0 --- /dev/null +++ b/metadata/md5-cache/dev-cpp/tbb-2020.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=High level abstract threading library +EAPI=7 +HOMEPAGE=https://www.threadingbuildingblocks.org +IUSE=debug examples abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/intel/tbb/archive/2020_U1.tar.gz -> tbb-2020.1.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=6670005f2e885992425b3e80700ed2ff diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index a635eda77a27..ed70c496e6c7 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/postgresql-10.12 b/metadata/md5-cache/dev-db/postgresql-10.12 index 0ccb08e47e05..7b04216cbd85 100644 --- a/metadata/md5-cache/dev-db/postgresql-10.12 +++ b/metadata/md5-cache/dev-db/postgresql-10.12 @@ -5,11 +5,11 @@ DESCRIPTION=PostgreSQL RDBMS EAPI=7 HOMEPAGE=https://www.postgresql.org/ IUSE=debug doc icu kerberos kernel_linux ldap libressl nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-macos ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-macos ~x86-solaris LICENSE=POSTGRESQL GPL-2 RDEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.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] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:10 !dev-db/postgresql-base:10 !dev-db/postgresql-server:10 selinux? ( sec-policy/selinux-postgresql ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 ) ) SLOT=10 SRC_URI=https://ftp.postgresql.org/pub/source/v10.12/postgresql-10.12.tar.bz2 _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b l10n 97f2753e3f1f3753d53d856c7c0bbb0b linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e pam a1771fc1e5831c201eaf18451747d94b prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 -_md5_=e8e3c6389d0f694e28733ab2e969cf67 +_md5_=af414f203f38ecd828a31d50aaa0058e diff --git a/metadata/md5-cache/dev-db/postgresql-11.7 b/metadata/md5-cache/dev-db/postgresql-11.7 index c02b7e01a6bc..03f41499c800 100644 --- a/metadata/md5-cache/dev-db/postgresql-11.7 +++ b/metadata/md5-cache/dev-db/postgresql-11.7 @@ -5,11 +5,11 @@ DESCRIPTION=PostgreSQL RDBMS EAPI=7 HOMEPAGE=http://www.postgresql.org/ IUSE=debug doc icu kerberos kernel_linux ldap libressl llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 RDEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.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] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:11 !dev-db/postgresql-base:11 !dev-db/postgresql-server:11 selinux? ( sec-policy/selinux-postgresql ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 ) ) SLOT=11 SRC_URI=https://ftp.postgresql.org/pub/source/v11.7/postgresql-11.7.tar.bz2 _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b l10n 97f2753e3f1f3753d53d856c7c0bbb0b linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e pam a1771fc1e5831c201eaf18451747d94b prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 -_md5_=c25e243e044ec0963a5a8913c3a0edaa +_md5_=cd9535f089a819b4d7d47a8a54d5023e diff --git a/metadata/md5-cache/dev-db/postgresql-12.2 b/metadata/md5-cache/dev-db/postgresql-12.2 index 8a20edd37890..af2c58d9bdcb 100644 --- a/metadata/md5-cache/dev-db/postgresql-12.2 +++ b/metadata/md5-cache/dev-db/postgresql-12.2 @@ -5,11 +5,11 @@ DESCRIPTION=PostgreSQL RDBMS EAPI=7 HOMEPAGE=http://www.postgresql.org/ IUSE=debug doc icu kerberos kernel_linux ldap libressl llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 RDEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.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] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:12 !dev-db/postgresql-base:12 !dev-db/postgresql-server:12 selinux? ( sec-policy/selinux-postgresql ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 ) ) SLOT=12 SRC_URI=https://ftp.postgresql.org/pub/source/v12.2/postgresql-12.2.tar.bz2 _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b l10n 97f2753e3f1f3753d53d856c7c0bbb0b linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e pam a1771fc1e5831c201eaf18451747d94b prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 -_md5_=57d2ce7313db9c89c7d889a1b960debd +_md5_=5cf05e480b7bc05c039cad6fdcaf7b8e diff --git a/metadata/md5-cache/dev-db/postgresql-9.6.17 b/metadata/md5-cache/dev-db/postgresql-9.6.17 index 1b7f353fd64a..f42e12734643 100644 --- a/metadata/md5-cache/dev-db/postgresql-9.6.17 +++ b/metadata/md5-cache/dev-db/postgresql-9.6.17 @@ -5,11 +5,11 @@ DESCRIPTION=PostgreSQL RDBMS EAPI=7 HOMEPAGE=https://www.postgresql.org/ IUSE=debug doc kerberos kernel_linux ldap libressl nls pam perl -pg_legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=POSTGRESQL GPL-2 RDEPEND=>=app-eselect/eselect-postgresql-2.0 sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.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] ) ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) server? ( systemd? ( sys-apps/systemd ) ) tcl? ( >=dev-lang/tcl-8:0= ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) zlib? ( sys-libs/zlib ) uuid? ( elibc_glibc? ( sys-apps/util-linux ) elibc_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) !dev-db/postgresql-docs:9.6 !dev-db/postgresql-base:9.6 !dev-db/postgresql-server:9.6 selinux? ( sec-policy/selinux-postgresql ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 ) ) SLOT=9.6 SRC_URI=https://ftp.postgresql.org/pub/source/v9.6.17/postgresql-9.6.17.tar.bz2 _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b l10n 97f2753e3f1f3753d53d856c7c0bbb0b linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e pam a1771fc1e5831c201eaf18451747d94b prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 -_md5_=0ceb60f34ae214a7fb1c0641b77649eb +_md5_=6b2257879fe454d3ebf5b0b962d2fc62 diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index e104892b3daf..390cb1217dc6 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.53 b/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.53 new file mode 100644 index 000000000000..a1e3e0d32d5e --- /dev/null +++ b/metadata/md5-cache/dev-java/tomcat-servlet-api-8.5.53 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation +EAPI=7 +HOMEPAGE=https://tomcat.apache.org/ +IUSE=elibc_FreeBSD source elibc_FreeBSD +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +SLOT=3.1 +SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.53/src/apache-tomcat-8.5.53-src.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 a055407af6fd37cf3f692ba73d2d2ba5 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=ddbacae0e101eae5dbe81c3b764a0100 diff --git a/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.33 b/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.33 new file mode 100644 index 000000000000..3b2e056d9b27 --- /dev/null +++ b/metadata/md5-cache/dev-java/tomcat-servlet-api-9.0.33 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation +EAPI=7 +HOMEPAGE=https://tomcat.apache.org/ +IUSE=elibc_FreeBSD source elibc_FreeBSD +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +SLOT=4.0 +SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.33/src/apache-tomcat-9.0.33-src.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 a055407af6fd37cf3f692ba73d2d2ba5 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=016c0fca135aa60fbcecf7096105aea4 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 174fa603da69..d97e101a6655 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/janet-1.7.0 b/metadata/md5-cache/dev-lang/janet-1.7.0 new file mode 100644 index 000000000000..f52e462c0517 --- /dev/null +++ b/metadata/md5-cache/dev-lang/janet-1.7.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install +DESCRIPTION=A dynamic Lisp dialect and bytecode vm +EAPI=7 +HOMEPAGE=https://janet-lang.org +IUSE=static-libs +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +SLOT=0 +SRC_URI=https://github.com/janet-lang/janet/archive/v1.7.0.tar.gz -> janet-1.7.0.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=162e336678cf0588be3ca5462c543289 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index d1473741f664..11e7860bf611 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/hsa-ext-rocr-1.1.9.122 b/metadata/md5-cache/dev-libs/hsa-ext-rocr-1.1.30100.0 similarity index 77% rename from metadata/md5-cache/dev-libs/hsa-ext-rocr-1.1.9.122 rename to metadata/md5-cache/dev-libs/hsa-ext-rocr-1.1.30100.0 index e76de8c3b887..fb9f24e59db1 100644 --- a/metadata/md5-cache/dev-libs/hsa-ext-rocr-1.1.9.122 +++ b/metadata/md5-cache/dev-libs/hsa-ext-rocr-1.1.30100.0 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 LICENSE=AMD-GPU-PRO-EULA RESTRICT=bindist strip SLOT=0 -SRC_URI=http://repo.radeon.com/rocm/apt/debian/pool/main/h/hsa-ext-rocr-dev/hsa-ext-rocr-dev_1.1.9-122-ge5c4efb_amd64.deb +SRC_URI=http://repo.radeon.com/rocm/apt/debian/pool/main/h/hsa-ext-rocr-dev/hsa-ext-rocr-dev_1.1.30100.0-rocm-rel-3.1-44-ecafeba1_amd64.deb _eclasses_=unpacker 3cd8bad0d31e525cd26be1bfa4e61631 -_md5_=2fb165f48c7bc47f45b45ab9e3e7a158 +_md5_=2f19e1b59c6f8e1003e5c85f3db6d298 diff --git a/metadata/md5-cache/dev-libs/libev-4.31 b/metadata/md5-cache/dev-libs/libev-4.31 index e7ea06812dbc..4471346eaa53 100644 --- a/metadata/md5-cache/dev-libs/libev-4.31 +++ b/metadata/md5-cache/dev-libs/libev-4.31 @@ -5,10 +5,10 @@ DESCRIPTION=A high-performance event loop/event model with lots of feature EAPI=7 HOMEPAGE=http://software.schmorp.de/pkg/libev.html IUSE=elibc_glibc static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=|| ( BSD GPL-2 ) RDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.9_p20081201 ) SLOT=0 SRC_URI=http://dist.schmorp.de/libev/libev-4.31.tar.gz http://dist.schmorp.de/libev/Attic/libev-4.31.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=adbb7381a526a846c03bed4e68133eb8 +_md5_=9a522ac54c28fd59f520781ed5738004 diff --git a/metadata/md5-cache/dev-libs/libite-2.0.0 b/metadata/md5-cache/dev-libs/libite-2.2.0 similarity index 77% rename from metadata/md5-cache/dev-libs/libite-2.0.0 rename to metadata/md5-cache/dev-libs/libite-2.2.0 index d65128a49857..8b00d28557e4 100644 --- a/metadata/md5-cache/dev-libs/libite-2.0.0 +++ b/metadata/md5-cache/dev-libs/libite-2.2.0 @@ -1,10 +1,10 @@ DEFINED_PHASES=configure install DESCRIPTION=A collection of useful BSD APIs -EAPI=6 +EAPI=7 HOMEPAGE=https://github.com/troglobit/libite IUSE=static-libs KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=0 -SRC_URI=https://github.com/troglobit/libite/releases/download/v2.0.0/libite-2.0.0.tar.xz -_md5_=438845f18a62c3cbd264ed32053d4349 +SRC_URI=https://github.com/troglobit/libite/releases/download/v2.2.0/libite-2.2.0.tar.xz +_md5_=76f0680d4df895b8e433a4abadda7716 diff --git a/metadata/md5-cache/dev-libs/nspr-4.25 b/metadata/md5-cache/dev-libs/nspr-4.25 index ca893e015f79..e6f6b31cda7d 100644 --- a/metadata/md5-cache/dev-libs/nspr-4.25 +++ b/metadata/md5-cache/dev-libs/nspr-4.25 @@ -4,9 +4,9 @@ DESCRIPTION=Netscape Portable Runtime EAPI=7 HOMEPAGE=http://www.mozilla.org/projects/nspr/ IUSE=debug elibc_musl abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 ) SLOT=0 SRC_URI=https://archive.mozilla.org/pub/nspr/releases/v4.25/src/nspr-4.25.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=480e1dd72f21e44bc4dcfe534ffe6ecd +_md5_=204245387d9a933e2cd77e60a73ffac7 diff --git a/metadata/md5-cache/dev-libs/nss-3.51 b/metadata/md5-cache/dev-libs/nss-3.51 index 8f350c77be36..b9d526a94cfb 100644 --- a/metadata/md5-cache/dev-libs/nss-3.51 +++ b/metadata/md5-cache/dev-libs/nss-3.51 @@ -5,11 +5,11 @@ DESCRIPTION=Mozilla's Network Security Services library that implements PKI supp EAPI=7 HOMEPAGE=http://www.mozilla.org/projects/security/pki/nss/ IUSE=cacert utils abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 ) RDEPEND=>=dev-libs/nspr-4.25[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_riscv_lp64d(-)?,abi_riscv_lp64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-db/sqlite-3.8.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_riscv_lp64d(-)?,abi_riscv_lp64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_riscv_lp64d(-)?,abi_riscv_lp64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=test SLOT=0 SRC_URI=https://archive.mozilla.org/pub/security/nss/releases/NSS_3_51_RTM/src/nss-3.51.tar.gz cacert? ( https://dev.gentoo.org/~axs/distfiles/nss-cacert-class1-class3.patch ) _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=5fd3b29679a85fec9ae739d3c1b0c06a +_md5_=1d7e07da6c1a7208dec6995160da1c3c diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 23a6dd5e8505..27dd11af88c8 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/atomicwrites-1.3.0 b/metadata/md5-cache/dev-python/atomicwrites-1.3.0 index 686c1b6b54e9..14f538d81e89 100644 --- a/metadata/md5-cache/dev-python/atomicwrites-1.3.0 +++ b/metadata/md5-cache/dev-python/atomicwrites-1.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=Atomic file writes EAPI=7 HOMEPAGE=https://github.com/untitaker/python-atomicwrites IUSE=test doc python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-5: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 ) >=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_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/a/atomicwrites/atomicwrites-1.3.0.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=13c5a744d4e5267c397c6a984cb38ca0 +_md5_=3fed88caeefeacac93a0170ef384a868 diff --git a/metadata/md5-cache/dev-python/dbutils-1.3 b/metadata/md5-cache/dev-python/dbutils-1.3 new file mode 100644 index 000000000000..856584bad1ae --- /dev/null +++ b/metadata/md5-cache/dev-python/dbutils-1.3 @@ -0,0 +1,15 @@ +BDEPEND=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(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Database connections for multi-threaded environments +EAPI=7 +HOMEPAGE=https://cito.github.io/DBUtils/ https://github.com/Cito/DBUtils https://pypi.org/project/DBUtils/ +IUSE=test python_targets_python3_6 python_targets_python3_7 +KEYWORDS=~amd64 +LICENSE=OSL-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 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/d/dbutils/DBUtils-1.3.tar.gz +_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=039d3df7f3be0d20cb23ba2fa1bb9265 diff --git a/metadata/md5-cache/dev-python/more-itertools-5.0.0 b/metadata/md5-cache/dev-python/more-itertools-5.0.0 index 21614e05bdbf..450e108ea110 100644 --- a/metadata/md5-cache/dev-python/more-itertools-5.0.0 +++ b/metadata/md5-cache/dev-python/more-itertools-5.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=More routines for operating on iterables, beyond itertools EAPI=7 HOMEPAGE=https://pypi.org/project/more-itertools/ IUSE=doc test python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND==dev-python/pypy3-5: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 ) >=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_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/m/more-itertools/more-itertools-5.0.0.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=2f24a224047b4a361efe223ebce30e44 +_md5_=c0c5f50cfad7195537ef6ac69e54873b diff --git a/metadata/md5-cache/dev-python/neutron-lib-1.29.1 b/metadata/md5-cache/dev-python/neutron-lib-1.29.1 deleted file mode 100644 index f24b966c9e03..000000000000 --- a/metadata/md5-cache/dev-python/neutron-lib-1.29.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=Neutron shared routines and utilities. -EAPI=7 -HOMEPAGE=https://github.com/openstack/neutron-lib -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/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pecan-1.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-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/netaddr-0.7.18[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(-)] >=dev-python/os-ken-0.3.0[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-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.19.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-db-4.37.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-messaging-5.29.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-policy-1.30.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-service-1.24.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-service-1.28.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/oslo-versionedobjects-1.31.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osprofiler-1.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setproctitle-1.1.10[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-traits-0.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/webob-1.7.1[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/n/neutron-lib/neutron-lib-1.29.1.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=9185c846975a74246b0468a3e0351ae2 diff --git a/metadata/md5-cache/dev-python/neutron-lib-1.29.2 b/metadata/md5-cache/dev-python/neutron-lib-1.29.2 index 3009aadcd4f2..ed4a485345f9 100644 --- a/metadata/md5-cache/dev-python/neutron-lib-1.29.2 +++ b/metadata/md5-cache/dev-python/neutron-lib-1.29.2 @@ -5,11 +5,11 @@ DESCRIPTION=Neutron shared routines and utilities. EAPI=7 HOMEPAGE=https://github.com/openstack/neutron-lib IUSE=python_targets_python3_6 python_targets_python3_7 -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_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pecan-1.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-1.0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pecan-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/netaddr-0.7.18[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(-)] >=dev-python/os-ken-0.3.0[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-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.19.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-db-4.37.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-messaging-5.29.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-policy-1.30.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-service-1.24.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-service-1.28.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/oslo-versionedobjects-1.31.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osprofiler-1.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setproctitle-1.1.10[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-traits-0.9.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/webob-1.7.1[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/n/neutron-lib/neutron-lib-1.29.2.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=7d10e64068993bb865468e3446a65feb +_md5_=9185c846975a74246b0468a3e0351ae2 diff --git a/metadata/md5-cache/dev-python/ovsdbapp-0.15.0 b/metadata/md5-cache/dev-python/ovsdbapp-0.15.0 deleted file mode 100644 index 6aad936f8d5d..000000000000 --- a/metadata/md5-cache/dev-python/ovsdbapp-0.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 library for creating OVSDB applications -EAPI=7 -HOMEPAGE=http://bugs.launchpad.net/ovsdbapp -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/fixtures-3.0.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/ovs-2.8.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/o/ovsdbapp/ovsdbapp-0.15.0.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c8f24207dd910e48b07a0f41369db278 diff --git a/metadata/md5-cache/dev-python/ovsdbapp-0.17.2 b/metadata/md5-cache/dev-python/ovsdbapp-0.17.2 index 7f19e518c995..8eb9755f3d52 100644 --- a/metadata/md5-cache/dev-python/ovsdbapp-0.17.2 +++ b/metadata/md5-cache/dev-python/ovsdbapp-0.17.2 @@ -5,11 +5,11 @@ DESCRIPTION=A library for creating OVSDB applications EAPI=7 HOMEPAGE=http://bugs.launchpad.net/ovsdbapp IUSE=python_targets_python3_6 python_targets_python3_7 -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_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pbr-2.1.0 >=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/netaddr-0.7.18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovs-2.8.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/o/ovsdbapp/ovsdbapp-0.17.2.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d7e471e2371f39c283f708b47b9b1457 +_md5_=c8f24207dd910e48b07a0f41369db278 diff --git a/metadata/md5-cache/dev-python/pyhamcrest-1.9.0-r1 b/metadata/md5-cache/dev-python/pyhamcrest-1.9.0-r1 index a461fbfdb235..0690e59b05e6 100644 --- a/metadata/md5-cache/dev-python/pyhamcrest-1.9.0-r1 +++ b/metadata/md5-cache/dev-python/pyhamcrest-1.9.0-r1 @@ -1,15 +1,15 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-python/six-1.4[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] doc? ( python_targets_python3_6? ( >=dev-python/sphinx-2[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/sphinx-2[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/sphinx-2[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/sphinx_rtd_theme[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/sphinx_rtd_theme[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/sphinx_rtd_theme[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? ( >=dev-python/pytest-2.6[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-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/six-1.4[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( >=dev-python/pytest-2.6[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-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(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7 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 ) 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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=Hamcrest framework for matcher objects EAPI=6 HOMEPAGE=https://github.com/hamcrest/PyHamcrest -IUSE=doc examples test python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=examples test doc python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha amd64 arm arm64 ~mips ~sh sparc ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=>=dev-python/six-1.4[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=doc? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) || ( python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/hamcrest/PyHamcrest/archive/V1.9.0.tar.gz -> PyHamcrest-1.9.0.gh.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=42ae52099dd26daac206b66a6751835f +_md5_=5d9b9a0b3840a2d0962dd7109804bda2 diff --git a/metadata/md5-cache/dev-python/pyjwt-1.5.3 b/metadata/md5-cache/dev-python/pyjwt-1.5.3 deleted file mode 100644 index 7608bdbaba4a..000000000000 --- a/metadata/md5-cache/dev-python/pyjwt-1.5.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/cryptography-1.4.0[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(-)] ) 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=JSON Web Token implementation in Python -EAPI=6 -HOMEPAGE=https://github.com/progrium/pyjwt https://pypi.org/project/PyJWT/ -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm ~arm64 x86 -LICENSE=MIT -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=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/P/PyJWT/PyJWT-1.5.3.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=743cbbb41366403a3cce9ab6be323160 diff --git a/metadata/md5-cache/dev-python/pyjwt-1.7.1 b/metadata/md5-cache/dev-python/pyjwt-1.7.1 deleted file mode 100644 index 1e229188c536..000000000000 --- a/metadata/md5-cache/dev-python/pyjwt-1.7.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/cryptography-1.4.0[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(-)] ) 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=JSON Web Token implementation in Python -EAPI=6 -HOMEPAGE=https://github.com/progrium/pyjwt https://pypi.org/project/PyJWT/ -IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm ~arm64 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 ) >=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/P/PyJWT/PyJWT-1.7.1.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=38eedff95a2989962a099892d68950d7 diff --git a/metadata/md5-cache/dev-python/pyjwt-1.7.1-r1 b/metadata/md5-cache/dev-python/pyjwt-1.7.1-r1 index 90bd5ce6dcdc..27c3e1be24b7 100644 --- a/metadata/md5-cache/dev-python/pyjwt-1.7.1-r1 +++ b/metadata/md5-cache/dev-python/pyjwt-1.7.1-r1 @@ -5,7 +5,7 @@ DESCRIPTION=JSON Web Token implementation in Python EAPI=7 HOMEPAGE=https://github.com/progrium/pyjwt https://pypi.org/project/PyJWT/ 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 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-5: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(-)] REQUIRED_USE=|| ( python_targets_pypy3 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/P/PyJWT/PyJWT-1.7.1.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 eutils fcb2aa98e1948b835b5ae66ca52868c5 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=edad36e56856f5ab28f7f31ed5eacbe2 +_md5_=c3548d1311a28ecfbaea0d21eff16796 diff --git a/metadata/md5-cache/dev-python/pyopenssl-17.5.0 b/metadata/md5-cache/dev-python/pyopenssl-17.5.0 deleted file mode 100644 index 22dccd27d98c..000000000000 --- a/metadata/md5-cache/dev-python/pyopenssl-17.5.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/six-1.5.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cryptography-2.1.4[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] doc? ( dev-python/sphinx[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( virtual/python-cffi[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/flaky[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pretend[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pytest-3.0.1[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-5: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DESCRIPTION=Python interface to the OpenSSL library -EAPI=6 -HOMEPAGE=http://pyopenssl.sourceforge.net/ https://launchpad.net/pyopenssl https://pypi.org/project/pyOpenSSL/ -IUSE=doc examples test python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/six-1.5.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cryptography-2.1.4[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy3? ( >=dev-python/pypy3-5: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-17.5.0.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=23eaab936923cd1d37bf932095e4c9c6 diff --git a/metadata/md5-cache/dev-python/pyopenssl-18.0.0 b/metadata/md5-cache/dev-python/pyopenssl-18.0.0 deleted file mode 100644 index ae936ede48b4..000000000000 --- a/metadata/md5-cache/dev-python/pyopenssl-18.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-5: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/six-1.5.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cryptography-2.2.1[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] doc? ( dev-python/sphinx[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( virtual/python-cffi[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/flaky[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pretend[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pytest-3.0.1[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) -DESCRIPTION=Python interface to the OpenSSL library -EAPI=7 -HOMEPAGE=http://pyopenssl.sourceforge.net/ https://launchpad.net/pyopenssl https://pypi.org/project/pyOpenSSL/ -IUSE=doc examples test python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/six-1.5.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/cryptography-2.2.1[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy3? ( >=dev-python/pypy3-5: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-18.0.0.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=57b560056de2f49f13255bfabfbd193f diff --git a/metadata/md5-cache/dev-python/pyopenssl-19.1.0 b/metadata/md5-cache/dev-python/pyopenssl-19.1.0 index 98f1e3ff2454..160d1510c440 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-19.1.0 +++ b/metadata/md5-cache/dev-python/pyopenssl-19.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=Python interface to the OpenSSL library EAPI=7 HOMEPAGE=https://www.pyopenssl.org/ https://pypi.org/project/pyOpenSSL/ https://github.com/pyca/pyopenssl IUSE=test doc python_targets_pypy3 python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=>=dev-python/six-1.5.2[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/cryptography-2.8[python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-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_targets_pypy3? ( >=dev-python/pypy3-5: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(+)] ) >=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_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python2_7 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/p/pyOpenSSL/pyOpenSSL-19.1.0.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=bc5b1182b4f0117a2056080cf0f39635 +_md5_=f37d3d1096731dce9ca5813ef2190b23 diff --git a/metadata/md5-cache/dev-python/python-debian-0.1.31 b/metadata/md5-cache/dev-python/python-debian-0.1.31 deleted file mode 100644 index 3fca2616ddc2..000000000000 --- a/metadata/md5-cache/dev-python/python-debian-0.1.31 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/chardet[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] test? ( app-arch/dpkg ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] -DESCRIPTION=Python modules to work with Debian-related data formats -EAPI=6 -HOMEPAGE=https://packages.debian.org/sid/python-debian -IUSE=test python_targets_python2_7 python_targets_python3_6 -KEYWORDS=amd64 x86 -LICENSE=GPL-2 GPL-3 -RDEPEND=dev-python/chardet[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_6 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://debian/pool/main/p/python-debian/python-debian_0.1.31.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a3e3011e7b68f938c633eaefd3b2810e diff --git a/metadata/md5-cache/dev-python/python-debian-0.1.36 b/metadata/md5-cache/dev-python/python-debian-0.1.36 index 1d3b4fb6a4e0..e8eacd99170c 100644 --- a/metadata/md5-cache/dev-python/python-debian-0.1.36 +++ b/metadata/md5-cache/dev-python/python-debian-0.1.36 @@ -1,15 +1,15 @@ -BDEPEND=dev-python/chardet[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( app-arch/dpkg python_targets_python2_7? ( dev-python/unittest2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=dev-python/chardet[python_targets_python3_6(-)?,python_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[python_targets_python3_6(-)?,python_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(-)] test? ( app-arch/dpkg ) 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=Python modules to work with Debian-related data formats EAPI=7 HOMEPAGE=https://packages.debian.org/sid/python-debian -IUSE=test python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=amd64 x86 LICENSE=GPL-2 GPL-3 -RDEPEND=dev-python/chardet[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=dev-python/chardet[python_targets_python3_6(-)?,python_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[python_targets_python3_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://debian/pool/main/p/python-debian/python-debian_0.1.36.tar.xz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=b64927e9853809225ce8d4556930d7eb +_md5_=e019f7c2208ef98c0ec1297d0516efb8 diff --git a/metadata/md5-cache/dev-python/python-neutronclient-6.12.0 b/metadata/md5-cache/dev-python/python-neutronclient-6.12.0 deleted file mode 100644 index dade2dc2c2b9..000000000000 --- a/metadata/md5-cache/dev-python/python-neutronclient-6.12.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 test? ( >=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/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/mox3-0.20.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/openstackdocstheme-1.17.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/osprofiler-2.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-openstackclient-3.12.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/subunit-1.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/reno-2.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-mock-1.2.0[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/testtools-2.2.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(-)] ) -DESCRIPTION=A client for the OpenStack Quantum API -EAPI=7 -HOMEPAGE=https://launchpad.net/neutron -IUSE=test 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/debtcollector-1.2.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/netaddr-0.7.18[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-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-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/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/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-keystoneclient-3.8.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/simplejson-3.5.1[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(-)] 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/p/python-neutronclient/python-neutronclient-6.12.0.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=1c55a5227ed8f3ee09157b92a31fbe94 diff --git a/metadata/md5-cache/dev-python/python-neutronclient-6.12.1 b/metadata/md5-cache/dev-python/python-neutronclient-6.12.1 index ee3b62f27028..95d890dcce50 100644 --- a/metadata/md5-cache/dev-python/python-neutronclient-6.12.1 +++ b/metadata/md5-cache/dev-python/python-neutronclient-6.12.1 @@ -5,7 +5,7 @@ DESCRIPTION=A client for the OpenStack Quantum API EAPI=7 HOMEPAGE=https://launchpad.net/neutron IUSE=test python_targets_python3_6 python_targets_python3_7 -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_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/debtcollector-1.2.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/netaddr-0.7.18[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-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-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/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/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-keystoneclient-3.8.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/simplejson-3.5.1[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(-)] 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 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/python-neutronclient/python-neutronclient-6.12.1.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d1be55422beb8ec9506330dc10e24f32 +_md5_=1c55a5227ed8f3ee09157b92a31fbe94 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 12dd8b9ae007..8a27c464db5a 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 index d31360002a6f..99bb3e5e824e 100644 --- a/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 +++ b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 @@ -4,7 +4,7 @@ DESCRIPTION=Provides POSIX tarchive management from Ruby programs EAPI=6 HOMEPAGE=https://github.com/halostatue/minitar IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( BSD-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.8.tar.gz -> archive-tar-minitar-0.8.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=6c3ea339df5ea7ca436fc5648836763b +_md5_=df7b125ecf88e33a96b637e574964537 diff --git a/metadata/md5-cache/dev-ruby/atomic-1.1.101 b/metadata/md5-cache/dev-ruby/atomic-1.1.101 index c97dbc9ce2dd..7bb39820b3ae 100644 --- a/metadata/md5-cache/dev-ruby/atomic-1.1.101 +++ b/metadata/md5-cache/dev-ruby/atomic-1.1.101 @@ -4,7 +4,7 @@ DESCRIPTION=An atomic reference implementation for JRuby, Rubinius, and MRI EAPI=5 HOMEPAGE=https://github.com/headius/ruby-atomic IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ppc ppc64 x86 +KEYWORDS=amd64 arm ~arm64 hppa ppc ppc64 x86 LICENSE=Apache-2.0 RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/atomic-1.1.101.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=358f68a219f70e2038b8c19ee03814fc +_md5_=eed044df732246ea28fe8fa40f84bb02 diff --git a/metadata/md5-cache/dev-ruby/backports-3.15.0 b/metadata/md5-cache/dev-ruby/backports-3.15.0 index 378380d75aab..280e838eb02e 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.15.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.15.0 @@ -4,7 +4,7 @@ DESCRIPTION=Backports of Ruby features for older Ruby EAPI=6 HOMEPAGE=https://github.com/marcandre/backports IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/backports-3.15.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=4a674c8fa221b4e181babb44979fcee6 +_md5_=3a02302d5f99951ef4476df47438754f diff --git a/metadata/md5-cache/dev-ruby/backports-3.16.0 b/metadata/md5-cache/dev-ruby/backports-3.16.0 index 9e03c89afff3..42695ba8c5e7 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.16.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.16.0 @@ -5,7 +5,7 @@ DESCRIPTION=Backports of Ruby features for older Ruby EAPI=7 HOMEPAGE=https://github.com/marcandre/backports IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/backports-3.16.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d085ac0fc8f455e93bb424c083aed77e +_md5_=b2f69f91668b7d56ddd0005c872caf0d diff --git a/metadata/md5-cache/dev-ruby/backports-3.16.1 b/metadata/md5-cache/dev-ruby/backports-3.16.1 index 5b054adf3094..d47ca31a1d53 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.16.1 +++ b/metadata/md5-cache/dev-ruby/backports-3.16.1 @@ -5,7 +5,7 @@ DESCRIPTION=Backports of Ruby features for older Ruby EAPI=7 HOMEPAGE=https://github.com/marcandre/backports IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.16.1.tar.gz -> backports-3.16.1{P}.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=be96976b2361a9c10cbff235b3d5b32c +_md5_=9623b8b61dc2ae6562aa88a740fecc89 diff --git a/metadata/md5-cache/dev-ruby/backports-3.17.0 b/metadata/md5-cache/dev-ruby/backports-3.17.0 index 3d6a26b59e50..78db7940bbb5 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.17.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.17.0 @@ -5,7 +5,7 @@ DESCRIPTION=Backports of Ruby features for older Ruby EAPI=7 HOMEPAGE=https://github.com/marcandre/backports IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.17.0.tar.gz -> backports-3.17.0{P}.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=dcd4465358ffdc8302416707f7ffa654 +_md5_=7a7385ef383e626ee66cfc4c77764176 diff --git a/metadata/md5-cache/dev-ruby/bcat-0.6.2-r3 b/metadata/md5-cache/dev-ruby/bcat-0.6.2-r3 index 6fbceba0aed2..fe6e71c5efc3 100644 --- a/metadata/md5-cache/dev-ruby/bcat-0.6.2-r3 +++ b/metadata/md5-cache/dev-ruby/bcat-0.6.2-r3 @@ -4,7 +4,7 @@ DESCRIPTION=Pipe to browser utility for use at the shell and within editors EAPI=5 HOMEPAGE=https://github.com/rtomayko/bcat IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=!! childlabor-0.0.3.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=f979e0104610da094381a0f8f782feea +_md5_=f64db6f748088fddceec715b077a8667 diff --git a/metadata/md5-cache/dev-ruby/childprocess-0.9.0 b/metadata/md5-cache/dev-ruby/childprocess-0.9.0 index 2615d0634a1b..59a80a473536 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-0.9.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-0.9.0 @@ -4,7 +4,7 @@ DESCRIPTION=Solution for controlling external programs running in the background EAPI=6 HOMEPAGE=https://github.com/jarib/childprocess IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby25(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-0.9.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=fd22a6fc8b9874995770be0aca6766c7 +_md5_=b21d19587cd8c64895ad894140a1c6cf diff --git a/metadata/md5-cache/dev-ruby/childprocess-1.0.1-r1 b/metadata/md5-cache/dev-ruby/childprocess-1.0.1-r1 index 5667d712908f..12c797a4ce86 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-1.0.1-r1 +++ b/metadata/md5-cache/dev-ruby/childprocess-1.0.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Solution for controlling external programs running in the background EAPI=6 HOMEPAGE=https://github.com/jarib/childprocess IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-1.0.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c6a25e1228f55f2d436f231d386de61d +_md5_=5a7b2f2cc60cdc8b13e0a741a1ba5f01 diff --git a/metadata/md5-cache/dev-ruby/childprocess-2.0.0 b/metadata/md5-cache/dev-ruby/childprocess-2.0.0 index e67739cbc552..b03368a49668 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-2.0.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-2.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=Solution for controlling external programs running in the background EAPI=6 HOMEPAGE=https://github.com/jarib/childprocess IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-2.0.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=989290564058e3debde6b8cc6b0976e1 +_md5_=787d23c4da1f27ce409ff19a2c7e6d18 diff --git a/metadata/md5-cache/dev-ruby/childprocess-3.0.0 b/metadata/md5-cache/dev-ruby/childprocess-3.0.0 index cbd070918a99..e9fe214ad6ec 100644 --- a/metadata/md5-cache/dev-ruby/childprocess-3.0.0 +++ b/metadata/md5-cache/dev-ruby/childprocess-3.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=Solution for controlling external programs running in the background EAPI=7 HOMEPAGE=https://github.com/jarib/childprocess IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/ffi-1.0.11[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-3.0.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=e364eb5f19009204d7e548d0d4c8a177 +_md5_=b2637514c65def2ff7466532f507ad79 diff --git a/metadata/md5-cache/dev-ruby/chronic-0.10.2 b/metadata/md5-cache/dev-ruby/chronic-0.10.2 index 85535028e06a..e18a339eefa1 100644 --- a/metadata/md5-cache/dev-ruby/chronic-0.10.2 +++ b/metadata/md5-cache/dev-ruby/chronic-0.10.2 @@ -4,7 +4,7 @@ DESCRIPTION=Chronic is a natural language date/time parser written in pure Ruby EAPI=5 HOMEPAGE=https://github.com/mojombo/chronic IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 hppa ia64 ppc ppc64 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chronic-0.10.2.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=88b466f76736df6fa6174b9e37aa919f +_md5_=fd4403dd75508eb45c2548326a653c16 diff --git a/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 b/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 index ca23499bd244..97c7893dafeb 100644 --- a/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 +++ b/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 @@ -4,7 +4,7 @@ DESCRIPTION=Generic connection pooling for Ruby EAPI=6 HOMEPAGE=https://github.com/mperham/connection_pool IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/connection_pool-2.2.2.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=ce0c6eacc5607ccebc7875743d4d22da +_md5_=a613a94d9075f91c97999732183dfc0e diff --git a/metadata/md5-cache/dev-ruby/contracts-0.16.0 b/metadata/md5-cache/dev-ruby/contracts-0.16.0 index a15df76b3158..57f21117a800 100644 --- a/metadata/md5-cache/dev-ruby/contracts-0.16.0 +++ b/metadata/md5-cache/dev-ruby/contracts-0.16.0 @@ -4,7 +4,7 @@ DESCRIPTION=provides contracts for Ruby EAPI=6 HOMEPAGE=https://github.com/egonSchiele/contracts.ruby IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/contracts-0.16.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d39fe04cf59227b10a7ad42df7a37a79 +_md5_=a5c07f4ce50209d7201b3b9771946b8c diff --git a/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 b/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 index 619cfc74202d..03da2e00b7fc 100644 --- a/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 +++ b/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 @@ -4,7 +4,7 @@ DESCRIPTION=Domain Name manipulation library for Ruby EAPI=5 HOMEPAGE=https://github.com/knu/ruby-domain_name IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=BSD-2 RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/domain_name-0.5.20180417.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=9f7e20ab28d3cca0aeec382288eec675 +_md5_=5b692911214ee7ee004355a399436032 diff --git a/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 b/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 index e8c81f5a58c8..7b0c799825a8 100644 --- a/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 +++ b/metadata/md5-cache/dev-ruby/domain_name-0.5.20190701 @@ -4,7 +4,7 @@ DESCRIPTION=Domain Name manipulation library for Ruby EAPI=6 HOMEPAGE=https://github.com/knu/ruby-domain_name IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=BSD-2 RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/unf-0.0.5-r1:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/domain_name-0.5.20190701.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=6a197926aeeb019b84159f155b5c2944 +_md5_=2fa953c1c77e908fde5e8d57fa972b63 diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.19.2 b/metadata/md5-cache/dev-ruby/fakefs-0.19.2 index ba21d4beacc5..e8bf5cd72d8d 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.19.2 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.19.2 @@ -4,7 +4,7 @@ DESCRIPTION=A fake filesystem. Use it in your tests EAPI=6 HOMEPAGE=https://github.com/defunkt/fakefs IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v0.19.2.tar.gz -> fakefs-0.19.2.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=571698226b128145965c68f710ed390d +_md5_=7e5525f19eb157831b941873a61943de diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.20.0 b/metadata/md5-cache/dev-ruby/fakefs-0.20.0 index 8fe862819e80..70414c1f9f78 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.20.0 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.20.0 @@ -4,7 +4,7 @@ DESCRIPTION=A fake filesystem. Use it in your tests EAPI=6 HOMEPAGE=https://github.com/defunkt/fakefs IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v0.20.0.tar.gz -> fakefs-0.20.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=04f333f4f252b5fbab6dde8f0e23bc2b +_md5_=129308f371863c86bbde9b245b04ac21 diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.20.1 b/metadata/md5-cache/dev-ruby/fakefs-0.20.1 index 7e578a72b85e..0bd0a53b8162 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.20.1 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.20.1 @@ -4,7 +4,7 @@ DESCRIPTION=A fake filesystem. Use it in your tests EAPI=6 HOMEPAGE=https://github.com/defunkt/fakefs IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v0.20.1.tar.gz -> fakefs-0.20.1.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=04f333f4f252b5fbab6dde8f0e23bc2b +_md5_=129308f371863c86bbde9b245b04ac21 diff --git a/metadata/md5-cache/dev-ruby/fakefs-1.0.0 b/metadata/md5-cache/dev-ruby/fakefs-1.0.0 index 69c1d75c6f8e..c93d489b4c41 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-1.0.0 +++ b/metadata/md5-cache/dev-ruby/fakefs-1.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=A fake filesystem. Use it in your tests EAPI=7 HOMEPAGE=https://github.com/defunkt/fakefs IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v1.0.0.tar.gz -> fakefs-1.0.0.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c24edf04099ffa716f202cbe22685c26 +_md5_=d87e9b34a3dea7cef7daf3933f0d5d7d diff --git a/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 b/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 index f4a9a23a193e..a61918df055e 100644 --- a/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 +++ b/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 @@ -4,7 +4,7 @@ DESCRIPTION=Helper for faking web requests in Ruby EAPI=6 HOMEPAGE=https://github.com/chrisk/fakeweb IUSE=ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 LICENSE=GPL-2 RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/chrisk/fakeweb/archive/2b08c1ff2714ec13a12f3497d67fcefce95c2cbe.tar.gz -> fakeweb-1.3.0.20170806.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=f5d7fade8184214ceac799ed7daaabdd +_md5_=0792662ea4d4e280704cb8e1d46b6e8d diff --git a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 index 7eeb31f915aa..67a2db3cedb7 100644 --- a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 +++ b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 @@ -4,7 +4,7 @@ DESCRIPTION=fast_xs text escaping library ruby bindings EAPI=5 HOMEPAGE=https://github.com/brianmario/fast_xs IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fast_xs-0.8.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=defacd3e94b564ffee1547ae1b8fa425 +_md5_=8b8655b2a631899ded05f1529de93cea diff --git a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 index 1cfed6685456..bedcfa9e438d 100644 --- a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=FastCGI library for Ruby EAPI=5 HOMEPAGE=https://github.com/alphallc/ruby-fcgi-ng IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=Ruby RDEPEND=dev-libs/fcgi ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fcgi-0.9.2.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=8eed3b43f69c2bed221b1c8ba031d550 +_md5_=aed72eeebe69639c4b4b447e7ab629a2 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.11.3 b/metadata/md5-cache/dev-ruby/ffi-1.11.3 index fbddd584a4f8..fc7bf95e84c8 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.11.3 +++ b/metadata/md5-cache/dev-ruby/ffi-1.11.3 @@ -5,7 +5,7 @@ DESCRIPTION=Ruby extension for programmatically loading dynamic libraries EAPI=7 HOMEPAGE=https://wiki.github.com/ffi/ffi IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-libs/libffi:0= ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.11.3.tar.gz -> ffi-git-1.11.3.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d51c2752c48d3014b4baf686836da8ac +_md5_=9c1b23d9a76c40eb6af54fa85439d4be diff --git a/metadata/md5-cache/dev-ruby/ffi-1.12.1 b/metadata/md5-cache/dev-ruby/ffi-1.12.1 index 58ba034199f0..512d789258cc 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.12.1 +++ b/metadata/md5-cache/dev-ruby/ffi-1.12.1 @@ -5,7 +5,7 @@ DESCRIPTION=Ruby extension for programmatically loading dynamic libraries EAPI=7 HOMEPAGE=https://wiki.github.com/ffi/ffi IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-libs/libffi:0= ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.12.1.tar.gz -> ffi-git-1.12.1.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=764b0dafc8714eac9698c1ee23a6f3a9 +_md5_=0febd895df323b05acf0ebf77c8e2274 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.12.2 b/metadata/md5-cache/dev-ruby/ffi-1.12.2 index 90043e97b0f4..ee0863fd2443 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.12.2 +++ b/metadata/md5-cache/dev-ruby/ffi-1.12.2 @@ -5,7 +5,7 @@ DESCRIPTION=Ruby extension for programmatically loading dynamic libraries EAPI=7 HOMEPAGE=https://wiki.github.com/ffi/ffi IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-libs/libffi:0= ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.12.2.tar.gz -> ffi-git-1.12.2.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=764b0dafc8714eac9698c1ee23a6f3a9 +_md5_=0febd895df323b05acf0ebf77c8e2274 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.9.25 b/metadata/md5-cache/dev-ruby/ffi-1.9.25 index ec639c8cf1c4..552c034453d7 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.9.25 +++ b/metadata/md5-cache/dev-ruby/ffi-1.9.25 @@ -4,7 +4,7 @@ DESCRIPTION=Ruby extension for programmatically loading dynamic libraries EAPI=6 HOMEPAGE=https://wiki.github.com/ffi/ffi IUSE=ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=dev-libs/libffi ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.9.25.tar.gz -> ffi-git-1.9.25.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=04ff75387d4c1cd5f55d63aac8250463 +_md5_=6757487b426eb0086b5eafabf6792af7 diff --git a/metadata/md5-cache/dev-ruby/flexmock-2.3.6 b/metadata/md5-cache/dev-ruby/flexmock-2.3.6 index ea8ee074005a..87ba6bcc55fc 100644 --- a/metadata/md5-cache/dev-ruby/flexmock-2.3.6 +++ b/metadata/md5-cache/dev-ruby/flexmock-2.3.6 @@ -4,7 +4,7 @@ DESCRIPTION=Simple mock object library for Ruby unit testing EAPI=5 HOMEPAGE=https://github.com/doudou/flexmock IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=flexmock RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/doudou/flexmock/archive/v2.3.6.tar.gz -> flexmock-2.3.6.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=66eff941ca2e1feafb92836f767a24ef +_md5_=2830791ef420ea125004a80717e9a0cf diff --git a/metadata/md5-cache/dev-ruby/gherkin-5.1.0 b/metadata/md5-cache/dev-ruby/gherkin-5.1.0 index 67b2f1074138..7636bd09f8b9 100644 --- a/metadata/md5-cache/dev-ruby/gherkin-5.1.0 +++ b/metadata/md5-cache/dev-ruby/gherkin-5.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Fast Gherkin lexer and parser EAPI=6 HOMEPAGE=https://github.com/cucumber/gherkin IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/gherkin-5.1.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=0ff7cc2d94e6745fb07cea2fa82b5dc0 +_md5_=a913bf04bc828a630f331b0a9c4420db diff --git a/metadata/md5-cache/dev-ruby/highline-1.7.8 b/metadata/md5-cache/dev-ruby/highline-1.7.8 index ace753b63f6e..b07ac8b8ce1d 100644 --- a/metadata/md5-cache/dev-ruby/highline-1.7.8 +++ b/metadata/md5-cache/dev-ruby/highline-1.7.8 @@ -4,7 +4,7 @@ DESCRIPTION=Highline is a high-level command-line IO library for ruby EAPI=5 HOMEPAGE=https://github.com/JEG2/highline IUSE=ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( GPL-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/highline-1.7.8.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=e5c06ea5634977081282bfacdea7c626 +_md5_=a50411431f853d04c5c77bb74bd46170 diff --git a/metadata/md5-cache/dev-ruby/highline-2.0.3 b/metadata/md5-cache/dev-ruby/highline-2.0.3 index 4edcbac1c776..c44da40fec47 100644 --- a/metadata/md5-cache/dev-ruby/highline-2.0.3 +++ b/metadata/md5-cache/dev-ruby/highline-2.0.3 @@ -5,7 +5,7 @@ DESCRIPTION=Highline is a high-level command-line IO library for ruby EAPI=7 HOMEPAGE=https://github.com/JEG2/highline IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( GPL-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) 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_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/JEG2/highline/archive/v2.0.3.tar.gz -> highline-2.0.3.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=674f4ddeef58f9e0ce7a9cc247c8c070 +_md5_=ecf9aeed123d13b089e499a373176cfe diff --git a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 index 8d596fce2ed7..71ab0d2877af 100644 --- a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 +++ b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 @@ -4,7 +4,7 @@ DESCRIPTION=A fast and liberal HTML parser for Ruby EAPI=5 HOMEPAGE=https://wiki.github.com/hpricot/hpricot IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/fast_xs[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/fast_xs[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/fast_xs[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/fast_xs[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hpricot-0.8.6.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=77e1fc8d32fe0e82d4cbdea523b20b03 +_md5_=a55c9e801d7ec06ee201b2d11f01bc17 diff --git a/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 b/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 index 33ec4576a249..2bac6dd24763 100644 --- a/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 +++ b/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 @@ -4,7 +4,7 @@ DESCRIPTION=A ruby library to handle HTTP cookies EAPI=5 HOMEPAGE=https://github.com/sparklemotion/http-cookie IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/domain_name-0.5:0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/domain_name-0.5:0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/domain_name-0.5:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/http-cookie-1.0.3.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=69093eed247165ad22930ae3f7a66171 +_md5_=ae0fef93e459a405ee89512ec3d5929c diff --git a/metadata/md5-cache/dev-ruby/httpclient-2.8.3 b/metadata/md5-cache/dev-ruby/httpclient-2.8.3 index b961922a2afc..b40bade01de2 100644 --- a/metadata/md5-cache/dev-ruby/httpclient-2.8.3 +++ b/metadata/md5-cache/dev-ruby/httpclient-2.8.3 @@ -4,7 +4,7 @@ DESCRIPTION='httpclient' gives something like the functionality of libwww-perl ( EAPI=5 HOMEPAGE=https://github.com/nahi/httpclient IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( virtual/ruby-ssl[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/ruby-ssl[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/ruby-ssl[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nahi/httpclient/archive/v2.8.3.tar.gz -> httpclient-2.8.3.tgz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=8be717fd523af00cbffba9d7abcc92cd +_md5_=b602a93835d469aa4c40fe3608998e71 diff --git a/metadata/md5-cache/dev-ruby/libxml-2.9.0 b/metadata/md5-cache/dev-ruby/libxml-2.9.0 index 49cbaf13120e..cefdc1c25ad9 100644 --- a/metadata/md5-cache/dev-ruby/libxml-2.9.0 +++ b/metadata/md5-cache/dev-ruby/libxml-2.9.0 @@ -4,7 +4,7 @@ DESCRIPTION=Ruby libxml with a user friendly API, akin to REXML EAPI=5 HOMEPAGE=https://github.com/xml4r/libxml-ruby IUSE=ruby_targets_ruby24 doc test test -KEYWORDS=~alpha amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=dev-libs/libxml2 ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/libxml-ruby-2.9.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=429efafb5d674e589cb4cb2537d47e2d +_md5_=dffbd6f7f8eb13137dcaf6d54e09a4b2 diff --git a/metadata/md5-cache/dev-ruby/minitar-0.8 b/metadata/md5-cache/dev-ruby/minitar-0.8 index bdd963830443..581e90d338bc 100644 --- a/metadata/md5-cache/dev-ruby/minitar-0.8 +++ b/metadata/md5-cache/dev-ruby/minitar-0.8 @@ -4,7 +4,7 @@ DESCRIPTION=Provides POSIX tarchive management from Ruby programs EAPI=6 HOMEPAGE=https://github.com/halostatue/minitar IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( BSD-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.8.tar.gz -> minitar-0.8.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=ffa3005ab0520bce38a4705a57794cda +_md5_=8e397f828fb8b0a174d207c56e455a27 diff --git a/metadata/md5-cache/dev-ruby/minitar-0.9 b/metadata/md5-cache/dev-ruby/minitar-0.9 index 3b714ebee74a..896c0b71353c 100644 --- a/metadata/md5-cache/dev-ruby/minitar-0.9 +++ b/metadata/md5-cache/dev-ruby/minitar-0.9 @@ -5,7 +5,7 @@ DESCRIPTION=Provides POSIX tarchive management from Ruby programs EAPI=7 HOMEPAGE=https://github.com/halostatue/minitar IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( BSD-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) 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_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.9.tar.gz -> minitar-0.9.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=75ba01cf3ffb0472665d61e4319d2350 +_md5_=fd76cc3bc3dbd25935ea7232f9de35c0 diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.13.1 b/metadata/md5-cache/dev-ruby/multi_json-1.13.1 index d7e1d237da61..cb4f4c1e1d22 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.13.1 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.13.1 @@ -4,7 +4,7 @@ DESCRIPTION=A gem to provide swappable JSON backends EAPI=6 HOMEPAGE=https://github.com/intridea/multi_json IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby24(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby24(-)] ) ) ruby_targets_ruby25? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby25(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby26(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.13.1.tar.gz -> multi_json-1.13.1.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=eda345c0e7841bddfdd493902102670b +_md5_=11fe7a2dacf95448c23b29ddb8fcec0a diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.14.0 b/metadata/md5-cache/dev-ruby/multi_json-1.14.0 index cd275beebdc3..48aec0cf27d3 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.14.0 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.14.0 @@ -5,7 +5,7 @@ DESCRIPTION=A gem to provide swappable JSON backends EAPI=7 HOMEPAGE=https://github.com/intridea/multi_json IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby24(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby24(-)] ) ) ruby_targets_ruby25? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby25(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby26(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.14.0.tar.gz -> multi_json-1.14.0.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=4c077e8256ab7ea11fbc6ce43dddc3df +_md5_=9605348cc1096cafe2aa78fdcdf2d4d8 diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.14.1 b/metadata/md5-cache/dev-ruby/multi_json-1.14.1 index 7ceb6982950a..f2f87acf9a45 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.14.1 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.14.1 @@ -5,7 +5,7 @@ DESCRIPTION=A gem to provide swappable JSON backends EAPI=7 HOMEPAGE=https://github.com/intridea/multi_json IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby24(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby24(-)] ) ) ruby_targets_ruby25? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby25(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby26(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( || ( >=dev-ruby/json-1.4:*[ruby_targets_ruby27(-)] >=dev-ruby/yajl-ruby-1.0[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.14.1.tar.gz -> multi_json-1.14.1.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=99e6873d4b11ad1f7c9436a0df0d4855 +_md5_=414aa2a0abfaf593256bb4ee464c33fe diff --git a/metadata/md5-cache/dev-ruby/multi_test-0.1.2 b/metadata/md5-cache/dev-ruby/multi_test-0.1.2 index 908fb0a7c61c..309e002fe01f 100644 --- a/metadata/md5-cache/dev-ruby/multi_test-0.1.2 +++ b/metadata/md5-cache/dev-ruby/multi_test-0.1.2 @@ -4,7 +4,7 @@ DESCRIPTION=A uniform interface for Ruby testing libraries EAPI=5 HOMEPAGE=http://cukes.info/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/multi_test-0.1.2.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=000d49b1a3337521c37ec640605c3d00 +_md5_=ecb0ec77432a13bcb9068f4e3851e565 diff --git a/metadata/md5-cache/dev-ruby/mustache-1.0.5 b/metadata/md5-cache/dev-ruby/mustache-1.0.5 index a5829c24fac0..9c513faa0bf5 100644 --- a/metadata/md5-cache/dev-ruby/mustache-1.0.5 +++ b/metadata/md5-cache/dev-ruby/mustache-1.0.5 @@ -4,7 +4,7 @@ DESCRIPTION=Mustache is a framework-agnostic way to render logic-free views EAPI=5 HOMEPAGE=https://mustache.github.com/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 doc test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x64-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mustache-1.0.5.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=3c57fe825491535a8aa2e957b854ace8 +_md5_=a5c48092f7e97b952e1d4e6f195e6fcd diff --git a/metadata/md5-cache/dev-ruby/mustache-1.1.0 b/metadata/md5-cache/dev-ruby/mustache-1.1.0 index 5885ccc56a52..11e0783b3c0b 100644 --- a/metadata/md5-cache/dev-ruby/mustache-1.1.0 +++ b/metadata/md5-cache/dev-ruby/mustache-1.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Mustache is a framework-agnostic way to render logic-free views EAPI=6 HOMEPAGE=https://mustache.github.com/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mustache-1.1.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=022a9c841839ac1d4c07f4cf451cbc84 +_md5_=d112e8f5e1f23bdea1eedcc63061f22b diff --git a/metadata/md5-cache/dev-ruby/mustache-1.1.1 b/metadata/md5-cache/dev-ruby/mustache-1.1.1 index 85343f0e62b5..ee23401f238b 100644 --- a/metadata/md5-cache/dev-ruby/mustache-1.1.1 +++ b/metadata/md5-cache/dev-ruby/mustache-1.1.1 @@ -5,7 +5,7 @@ DESCRIPTION=Mustache is a framework-agnostic way to render logic-free views EAPI=7 HOMEPAGE=https://mustache.github.com/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mustache-1.1.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c5d78ad09a49fa5cc59f189255a9c169 +_md5_=dce705778c705fc15aeb568528b1ef50 diff --git a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 index 876e1bd91ffd..a1e35358e99d 100644 --- a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 +++ b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 @@ -4,7 +4,7 @@ DESCRIPTION=Extremely mynymal test framework EAPI=5 HOMEPAGE=https://github.com/mynyml/nanotest IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nanotest-0.9.4.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=d3d026d9bf3724e323467b65c8cbb55b +_md5_=c5e9696c101ab7670add7f46afee22a3 diff --git a/metadata/md5-cache/dev-ruby/optimist-3.0.0 b/metadata/md5-cache/dev-ruby/optimist-3.0.0 index 62e8bbb5536f..04a0114562bc 100644 --- a/metadata/md5-cache/dev-ruby/optimist-3.0.0 +++ b/metadata/md5-cache/dev-ruby/optimist-3.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=A commandline option parser for Ruby that just gets out of your way. EAPI=6 HOMEPAGE=https://manageiq.github.io/optimist/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/optimist-3.0.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=33023b513afa75919b6f33ff1c6293d6 +_md5_=0dc7c5efa86fc7e5ab8ad5b9b277d8ec diff --git a/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 b/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 index 82a582cb428b..b4884015460c 100644 --- a/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 @@ -4,7 +4,7 @@ DESCRIPTION=Implements low level PDF features for Prawn EAPI=5 HOMEPAGE=https://github.com/prawnpdf/pdf-core/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( Ruby GPL-2 GPL-3 ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.7.0.tar.gz -> pdf-core-0.7.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=095f74d443687b1fdadd4b0043a341cd +_md5_=ff610f3756f4a62b5cdc37326a6ad0e5 diff --git a/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 b/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 index 88c4664ca491..5fe7b5aaf2b6 100644 --- a/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 @@ -4,7 +4,7 @@ DESCRIPTION=Implements low level PDF features for Prawn EAPI=6 HOMEPAGE=https://github.com/prawnpdf/pdf-core/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( Ruby GPL-2 GPL-3 ) RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.8.1.tar.gz -> pdf-core-0.8.1.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c55e2ea8f2d490403b68e8c1efdb0027 +_md5_=c1e53fe6300e965c1a248d22c63ab0ee diff --git a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 index 36d65aca22da..e156e2c99e21 100644 --- a/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 +++ b/metadata/md5-cache/dev-ruby/pdf-inspector-1.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=A tool for analyzing PDF output EAPI=6 HOMEPAGE=https://github.com/prawnpdf/pdf-inspector IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( Ruby GPL-2 GPL-3 ) RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/pdf-reader-1.0:*[ruby_targets_ruby24(-)] =dev-ruby/pdf-reader-1.0:*[ruby_targets_ruby25(-)] =dev-ruby/pdf-reader-1.0:*[ruby_targets_ruby26(-)] =dev-ruby/pdf-reader-1.0:*[ruby_targets_ruby27(-)] =dev-ruby/ttfunk-1.5:*[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby25(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby26(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/prawnpdf/prawn/archive/2.2.0.tar.gz -> prawn-2.2.0.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=533c1774079236558269cc8684bfd444 +_md5_=e402daf193a6d577b9a2c8538c4329d6 diff --git a/metadata/md5-cache/dev-ruby/prawn-2.2.2 b/metadata/md5-cache/dev-ruby/prawn-2.2.2 index f9e0c080dbcf..9320ea17f319 100644 --- a/metadata/md5-cache/dev-ruby/prawn-2.2.2 +++ b/metadata/md5-cache/dev-ruby/prawn-2.2.2 @@ -5,7 +5,7 @@ DESCRIPTION=Fast, Nimble PDF Generation For Ruby EAPI=7 HOMEPAGE=http://prawn.majesticseacreature.com/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 Ruby ) RDEPEND=ruby_targets_ruby24? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby24(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby25(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby26(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( =dev-ruby/pdf-core-0.7*[ruby_targets_ruby27(-)] >=dev-ruby/ttfunk-1.5:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/prawnpdf/prawn/archive/2.2.2.tar.gz -> prawn-2.2.2.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=3092f8cc73e736b12e4c3301b4968c3a +_md5_=7ed070ab63664d810b716905a2b75259 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 index 3a74871c3c70..6e45bcc63b6f 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 @@ -4,7 +4,7 @@ DESCRIPTION=Provide a standard and simplified way to build and package Ruby exte EAPI=6 HOMEPAGE=https://github.com/luislavena/rake-compiler IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.0.7.tar.gz -> rake-compiler-1.0.7.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5f449b01311fcdc9dc5424cf17c73f34 +_md5_=557939b7bd22cf190d29240394f0fc86 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.8 b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.8 index d4b69c5ec768..9f3e1390514d 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.8 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.8 @@ -5,7 +5,7 @@ DESCRIPTION=Provide a standard and simplified way to build and package Ruby exte EAPI=7 HOMEPAGE=https://github.com/luislavena/rake-compiler IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.0.8.tar.gz -> rake-compiler-1.0.8.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c75382bbb5fb1d8363cacb6e9ea7c31f +_md5_=0872d357fba602a5bd11055763ee6c4f diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.9 b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.9 index c5454d73ba4c..3f17a9147787 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.9 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.9 @@ -5,7 +5,7 @@ DESCRIPTION=Provide a standard and simplified way to build and package Ruby exte EAPI=7 HOMEPAGE=https://github.com/luislavena/rake-compiler IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.0.9.tar.gz -> rake-compiler-1.0.9.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=bb72b03053b4cd795b78dbcd134a69c2 +_md5_=9bef1184f09982510f9a954ad72154e0 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 index 06dd62a8aad2..b124bf511a98 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=Provide a standard and simplified way to build and package Ruby exte EAPI=7 HOMEPAGE=https://github.com/luislavena/rake-compiler IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.1.0.tar.gz -> rake-compiler-1.1.0.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=a29c8363547a3f685b5d099eb217656f +_md5_=03b0138a2891c1a75705b81d4070eb1b diff --git a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 index 2706a42f87a3..623f3f77aa24 100644 --- a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 +++ b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 @@ -4,7 +4,7 @@ DESCRIPTION=A thorough inotify wrapper for Ruby using FFI EAPI=6 HOMEPAGE=https://github.com/nex3/rb-inotify IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/ffi[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/ffi[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-inotify-0.10.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c8ffccc576d4cc8a691df4d5e46ee503 +_md5_=ab178405dd48a07c65ea06a03745dab9 diff --git a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 index 055e9b79fe2e..dc4c8da2e09d 100644 --- a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 +++ b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 @@ -5,7 +5,7 @@ DESCRIPTION=A thorough inotify wrapper for Ruby using FFI EAPI=7 HOMEPAGE=https://github.com/nex3/rb-inotify IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-ruby/ffi[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/ffi[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/ffi[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/ffi[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-inotify-0.10.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=389f09085b438f387a0e6640dee6064f +_md5_=26564ca6f7155978f65d7d0b36034192 diff --git a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 index c6dab14db3b5..63d2d7f207e4 100644 --- a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A module for using Textile in Ruby EAPI=6 HOMEPAGE=http://redcloth.org/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) 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_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jgarber/redcloth/archive/v4.3.2.tar.gz -> RedCloth-4.3.2.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c versionator 2352c3fc97241f6a02042773c8287748 -_md5_=f4b09c2b3b37d5274ddd68f6c758b45a +_md5_=2b9f62dee193bd3125a1d68756cec2c9 diff --git a/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 b/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 index f4fda98bfa39..5a1ba16b0d44 100644 --- a/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=5 HOMEPAGE=https://github.com/rspec/rspec-its IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby24(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby25(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby26(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-its-1.2.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=fdd5aeea7dcba5ab937479a90d2cd245 +_md5_=dcee35daf54b31f54652cebfd0b703b0 diff --git a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 index 33b318c8d750..6e60d66e29aa 100644 --- a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 +++ b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec-its IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby24(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby25(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby26(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rspec-core-3.0.0[ruby_targets_ruby27(-)] >=dev-ruby/rspec-expectations-3.0.0[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-its-1.3.0.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c3fe7ac1a037cefbf12fe8b914c184ed +_md5_=f0a4b7f6c0c3b66ab6709de920a28325 diff --git a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.19 b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.19 index 57d4bd8253a6..8378738b0fdc 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.19 +++ b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.19 @@ -4,7 +4,7 @@ DESCRIPTION=A Ruby interface to some LDAP libraries EAPI=5 HOMEPAGE=https://github.com/bearded/ruby-ldap IUSE=ssl ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha amd64 ~arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-macos +KEYWORDS=amd64 ~arm hppa ia64 ppc ~ppc64 ~sparc x86 ~x86-macos LICENSE=BSD RDEPEND=>=net-nds/openldap-2 dev-libs/cyrus-sasl ssl? ( dev-libs/openssl:0 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ldap-0.9.19.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=52468f87aa89982aef4b2b889ee1586c +_md5_=dac25b1fe10ad34f4765a5606ec5411d diff --git a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 index be81f6c255e4..b05e4f403486 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 +++ b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 @@ -4,7 +4,7 @@ DESCRIPTION=A Ruby interface to some LDAP libraries EAPI=6 HOMEPAGE=https://github.com/bearded/ruby-ldap IUSE=ssl ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos +KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos LICENSE=BSD RDEPEND=>=net-nds/openldap-2 dev-libs/cyrus-sasl ssl? ( dev-libs/openssl:0 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ldap-0.9.20.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=ff711987617dc65458a9fd0a4d0a84d0 +_md5_=26f258ecc59fb2b685bd1f146f894f4f diff --git a/metadata/md5-cache/dev-ruby/ruby_dep-1.5.0 b/metadata/md5-cache/dev-ruby/ruby_dep-1.5.0 index 0d832b88c139..63d31c41b2fe 100644 --- a/metadata/md5-cache/dev-ruby/ruby_dep-1.5.0 +++ b/metadata/md5-cache/dev-ruby/ruby_dep-1.5.0 @@ -4,7 +4,7 @@ DESCRIPTION=Creates a version constraint of supported Rubies,suitable for a gems EAPI=5 HOMEPAGE=https://github.com/e2/ruby_dep IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ruby_dep-1.5.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=442f4b91a1c9e579f23d49bbe94a6ad8 +_md5_=8276530ebd9dddbb474ea6f036efd2d3 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-1.2.2 b/metadata/md5-cache/dev-ruby/rubyzip-1.2.2 index b3fec6ebf788..bbfac4d79f4a 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-1.2.2 +++ b/metadata/md5-cache/dev-ruby/rubyzip-1.2.2 @@ -4,7 +4,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=6 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v1.2.2.tar.gz -> rubyzip-1.2.2-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=4599acdc05144a77275d937daa9893d9 +_md5_=6a1444ec7cc17b3417518f2ad0f63080 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 b/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 index 24b6e92b6de4..1c51fbeb7e76 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 @@ -5,7 +5,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=7 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 +KEYWORDS=amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v1.3.0.tar.gz -> rubyzip-1.3.0-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=bea9dcb00f4820004644a8af43a4243f +_md5_=1d9742adc118c9ce3665df51382e78f6 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.0.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.0.0 index 44a69fcf8cdb..679e28216332 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.0.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.0.0 @@ -5,7 +5,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=7 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.0.0.tar.gz -> rubyzip-2.0.0-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=5878b9d23990716e1bf57e96b3a59ca4 +_md5_=835a573b18d3df5ccce40f1b33528912 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.1.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.1.0 index 82a996c59130..72cb1ac83be5 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.1.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=7 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.1.0.tar.gz -> rubyzip-2.1.0-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=416a3103c3ea07e1f69ae97e95f46fc5 +_md5_=fd03e5fc6dee17d336aa999b17347854 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 index 75f6c43ddd6d..0c0a53a201b0 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 @@ -5,7 +5,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=7 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.2.0.tar.gz -> rubyzip-2.2.0-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=416a3103c3ea07e1f69ae97e95f46fc5 +_md5_=fd03e5fc6dee17d336aa999b17347854 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 index 7266f5f0ade9..62b59519dd00 100644 --- a/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 +++ b/metadata/md5-cache/dev-ruby/rubyzip-2.3.0 @@ -5,7 +5,7 @@ DESCRIPTION=A ruby library for reading and writing zip files EAPI=7 HOMEPAGE=https://github.com/rubyzip/rubyzip IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubyzip/rubyzip/archive/v2.3.0.tar.gz -> rubyzip-2.3.0-git.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=387d3185474ad93e1ee7da76e4ea6c69 +_md5_=22f74a5368b3349668176d3240db5e53 diff --git a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 index bdf998668b7a..bbee75ff244d 100644 --- a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 +++ b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 @@ -4,7 +4,7 @@ DESCRIPTION=Simply adds a declarative test method syntax to test/unit EAPI=5 HOMEPAGE=https://github.com/svenfuchs/test_declarative IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/svenfuchs/test_declarative/tarball/v0.0.6 -> test_declarative-0.0.6.tgz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=9b84b1fc126c03a0be066afbfde68bd8 +_md5_=34b6c768b54132813884becc9856be06 diff --git a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 index e4ec7d0fdb30..e06eb616269d 100644 --- a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 +++ b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 @@ -4,7 +4,7 @@ DESCRIPTION=Hyphenates words according to the rules of the language the word is EAPI=5 HOMEPAGE=http://rubyforge.org/projects/text-format IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/text-hyphen-1.4.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=84ac843ad1ad719458d7684006abfbf3 +_md5_=43aad8e3aedecfaf2f8fae74b31f30d5 diff --git a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 index 7ce5c1a3b030..b4b3edbd4797 100644 --- a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 +++ b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 @@ -4,7 +4,7 @@ DESCRIPTION=A collection of thread-safe versions of common core Ruby classes EAPI=5 HOMEPAGE=https://github.com/ruby-concurrency/thread_safe IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/thread_safe-0.3.6.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=a721adeda47bb9342a1895e759927f6f +_md5_=55577b0c0e3b9b4a4a812402712210ca diff --git a/metadata/md5-cache/dev-ruby/trollop-2.1.3 b/metadata/md5-cache/dev-ruby/trollop-2.1.3 index eff6d5ec611e..198ce73b98bb 100644 --- a/metadata/md5-cache/dev-ruby/trollop-2.1.3 +++ b/metadata/md5-cache/dev-ruby/trollop-2.1.3 @@ -4,7 +4,7 @@ DESCRIPTION=Trollop is a commandline option parser for Ruby EAPI=6 HOMEPAGE=https://manageiq.github.io/trollop/ IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/trollop-2.1.3.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=29c28d196a4fa4d6558ef9e35b01a624 +_md5_=cfa74b6e2baa85eb175abc352ea2cb9a diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 index b270e935ec32..d0e1a51e450b 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 @@ -4,7 +4,7 @@ DESCRIPTION=Daylight-savings aware timezone library EAPI=6 HOMEPAGE=https://tzinfo.github.io/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ppc ~ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 hppa ppc ~ppc64 x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=sys-libs/timezone-data ruby_targets_ruby24? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/thread_safe-0.1:0[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.5.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=542b4f68af8afb505f93749756d52a89 +_md5_=4117cf7296f96fa39e8150575b17f795 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.6 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.6 index 32a8dfb76361..1096a67ff3ef 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.6 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.6 @@ -5,7 +5,7 @@ DESCRIPTION=Daylight-savings aware timezone library EAPI=7 HOMEPAGE=https://tzinfo.github.io/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=sys-libs/timezone-data ruby_targets_ruby24? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.6.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=992d735378382870f79d0aad91e61406 +_md5_=e0bf5f78519fd52369aebebc427ba109 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-2.0.0 b/metadata/md5-cache/dev-ruby/tzinfo-2.0.0 index 8bb5b13810a4..243926c27353 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-2.0.0 +++ b/metadata/md5-cache/dev-ruby/tzinfo-2.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=Daylight-savings aware timezone library EAPI=6 HOMEPAGE=https://tzinfo.github.io/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=sys-libs/timezone-data ruby_targets_ruby24? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tzinfo/tzinfo/archive/v2.0.0.tar.gz -> tzinfo-2.0.0.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=a5a7b40c27eb73e38f6a2b94edf4edce +_md5_=73a9a31229934efb8bebdfe65de2fb06 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-2.0.1 b/metadata/md5-cache/dev-ruby/tzinfo-2.0.1 index 8c973f2c3fd2..16627d603616 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-2.0.1 +++ b/metadata/md5-cache/dev-ruby/tzinfo-2.0.1 @@ -5,7 +5,7 @@ DESCRIPTION=Daylight-savings aware timezone library EAPI=7 HOMEPAGE=https://tzinfo.github.io/ IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=sys-libs/timezone-data ruby_targets_ruby24? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/concurrent-ruby:1[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tzinfo/tzinfo/archive/v2.0.1.tar.gz -> tzinfo-2.0.1.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=b949892136017b1da5061a276b787fff +_md5_=c28bdaf2f626f383dc40af845ca493d4 diff --git a/metadata/md5-cache/dev-ruby/unindent-1.0 b/metadata/md5-cache/dev-ruby/unindent-1.0 index 58de4912e960..5bb422669cd6 100644 --- a/metadata/md5-cache/dev-ruby/unindent-1.0 +++ b/metadata/md5-cache/dev-ruby/unindent-1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Ruby method to unindent strings EAPI=5 HOMEPAGE=https://github.com/mynyml/unindent IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unindent-1.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=e213a02222133ecb173abe421844fb91 +_md5_=6b55ed7e1d33228871d2bb969fae9e83 diff --git a/metadata/md5-cache/dev-ruby/yajl-ruby-1.3.1 b/metadata/md5-cache/dev-ruby/yajl-ruby-1.3.1 index d53239ca7fa6..0794a0db4d10 100644 --- a/metadata/md5-cache/dev-ruby/yajl-ruby-1.3.1 +++ b/metadata/md5-cache/dev-ruby/yajl-ruby-1.3.1 @@ -4,7 +4,7 @@ DESCRIPTION=Ruby C bindings to the Yajl JSON stream-based parser library EAPI=6 HOMEPAGE=https://github.com/brianmario/yajl-ruby IUSE=ruby_targets_ruby24 ruby_targets_ruby25 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=dev-libs/yajl ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/yajl-ruby-1.3.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=72611928be457a08a53f39a3871d40a0 +_md5_=fa5bafb4fa4d727f04c627d0af237525 diff --git a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 index e96cd8043ac1..f0c901bcd393 100644 --- a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 +++ b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 @@ -4,7 +4,7 @@ DESCRIPTION=Ruby C bindings to the Yajl JSON stream-based parser library EAPI=6 HOMEPAGE=https://github.com/brianmario/yajl-ruby IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=dev-libs/yajl ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/yajl-ruby-1.4.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=9013a021a80faf6dc05f1d3783cabf9f +_md5_=b5117e171e366bc9610aedab46538f56 diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index 53e6954b4b8f..8d4f262941da 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/aruba-0.6.2-r2 b/metadata/md5-cache/dev-util/aruba-0.6.2-r2 index 48cf33a65319..fcc1677a981d 100644 --- a/metadata/md5-cache/dev-util/aruba-0.6.2-r2 +++ b/metadata/md5-cache/dev-util/aruba-0.6.2-r2 @@ -4,7 +4,7 @@ DESCRIPTION=Cucumber steps for driving out command line applications EAPI=6 HOMEPAGE=https://github.com/cucumber/aruba IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/childprocess-0.3.6[ruby_targets_ruby24(-)] >=dev-ruby/rspec-expectations-2.7:2[ruby_targets_ruby24(-)] >=dev-util/cucumber-1.1.1[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/childprocess-0.3.6[ruby_targets_ruby25(-)] >=dev-ruby/rspec-expectations-2.7:2[ruby_targets_ruby25(-)] >=dev-util/cucumber-1.1.1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/childprocess-0.3.6[ruby_targets_ruby26(-)] >=dev-ruby/rspec-expectations-2.7:2[ruby_targets_ruby26(-)] >=dev-util/cucumber-1.1.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/aruba-0.6.2.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=6810eeacb8daf769ca35c7f55155d66d +_md5_=4bd0931f6f0dac66a1de696e5376acfe diff --git a/metadata/md5-cache/dev-util/aruba-0.8.1 b/metadata/md5-cache/dev-util/aruba-0.8.1 index c6bb0a4c6e78..c0499c751f72 100644 --- a/metadata/md5-cache/dev-util/aruba-0.8.1 +++ b/metadata/md5-cache/dev-util/aruba-0.8.1 @@ -4,7 +4,7 @@ DESCRIPTION=Cucumber steps for driving out command line applications EAPI=5 HOMEPAGE=https://github.com/cucumber/aruba IUSE=test ruby_targets_ruby24 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/childprocess-0.5.6[ruby_targets_ruby24(-)] =dev-ruby/childprocess-0*[ruby_targets_ruby24(-)] >=dev-ruby/contracts-0.9:0[ruby_targets_ruby24(-)] >=dev-ruby/rspec-expectations-2.99:2[ruby_targets_ruby24(-)] >=dev-util/cucumber-1.3.19[ruby_targets_ruby24(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/aruba-0.8.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=697dedf5c45cf8cec2ff824b6afe5f52 +_md5_=574db39585ba0c2182f5d7e8dc5023b9 diff --git a/metadata/md5-cache/dev-util/bsdiff-4.3-r4 b/metadata/md5-cache/dev-util/bsdiff-4.3-r4 index e6bb266a7243..ccf8f30235c3 100644 --- a/metadata/md5-cache/dev-util/bsdiff-4.3-r4 +++ b/metadata/md5-cache/dev-util/bsdiff-4.3-r4 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile install DESCRIPTION=bsdiff: Binary Differencer using a suffix alg EAPI=7 HOMEPAGE=https://www.daemonology.net/bsdiff/ -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha amd64 ~arm hppa ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=BSD-2 RDEPEND=app-arch/bzip2 SLOT=0 SRC_URI=https://www.daemonology.net/bsdiff/bsdiff-4.3.tar.gz _eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=3a76f9b58f4b14756950de3241dc80da +_md5_=81f113d7bc77786d22666987961bdfe5 diff --git a/metadata/md5-cache/dev-util/cucumber-3.1.2 b/metadata/md5-cache/dev-util/cucumber-3.1.2 index 96d46678da58..2eaffe0acb84 100644 --- a/metadata/md5-cache/dev-util/cucumber-3.1.2 +++ b/metadata/md5-cache/dev-util/cucumber-3.1.2 @@ -4,7 +4,7 @@ DESCRIPTION=Executable feature scenarios EAPI=6 HOMEPAGE=https://github.com/aslakhellesoy/cucumber/wikis IUSE=examples test test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby24(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby24(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby24(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby24(-)] >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby24(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby24(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby24(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby25(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby25(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby25(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby25(-)] >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby25(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby25(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby26(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.3:0[ruby_targets_ruby26(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby26(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v3.1.2.tar.gz -> cucumber-3.1.2.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=e3690c1e36f925d61a88c5d216e0f700 +_md5_=af5390ea16aef1a6b703fd49db77443d diff --git a/metadata/md5-cache/dev-util/cucumber-core-3.2.1 b/metadata/md5-cache/dev-util/cucumber-core-3.2.1 index 392a70f011a1..f0eba3409ce6 100644 --- a/metadata/md5-cache/dev-util/cucumber-core-3.2.1 +++ b/metadata/md5-cache/dev-util/cucumber-core-3.2.1 @@ -4,7 +4,7 @@ DESCRIPTION=Executable feature scenarios EAPI=6 HOMEPAGE=https://github.com/aslakhellesoy/cucumber/wikis IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/backports-3.8.0[ruby_targets_ruby24(-)] >=dev-util/cucumber-tag_expressions-1.1.0[ruby_targets_ruby24(-)] dev-ruby/gherkin:5[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( >=dev-ruby/backports-3.8.0[ruby_targets_ruby25(-)] >=dev-util/cucumber-tag_expressions-1.1.0[ruby_targets_ruby25(-)] dev-ruby/gherkin:5[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/backports-3.8.0[ruby_targets_ruby26(-)] >=dev-util/cucumber-tag_expressions-1.1.0[ruby_targets_ruby26(-)] dev-ruby/gherkin:5[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/backports-3.8.0[ruby_targets_ruby27(-)] >=dev-util/cucumber-tag_expressions-1.1.0[ruby_targets_ruby27(-)] dev-ruby/gherkin:5[ruby_targets_ruby27(-)] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) 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_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.2 SRC_URI=https://github.com/cucumber/cucumber-ruby-core/archive/v3.2.1.tar.gz -> cucumber-core-3.2.1.tar.gz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=b3195cdafd639cccb2af29f2a94655e8 +_md5_=1fd528120a0ed2777451b485cb6add27 diff --git a/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 b/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 index b1b8754270a8..9bc8f0fc891a 100644 --- a/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 +++ b/metadata/md5-cache/dev-util/cucumber-wire-0.0.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Executable feature scenarios EAPI=6 HOMEPAGE=https://github.com/aslakhellesoy/cucumber/wikis IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24(-)] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cucumber-wire-0.0.1.gem _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem cca036a1477f29b926bf994faddf4099 ruby-ng a1c89995f9f6dd045e93d13a92ca81a9 ruby-utils cdb4c1e4283adb7707b7dd48ccaa7ad2 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=1db2a6ee94d2b199810386107ad8d7f3 +_md5_=6108c0952ba20eeef35666651a2b4b86 diff --git a/metadata/md5-cache/dev-util/diffball-1.0.1 b/metadata/md5-cache/dev-util/diffball-1.0.1 deleted file mode 100644 index ba3ee48be535..000000000000 --- a/metadata/md5-cache/dev-util/diffball-1.0.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure prepare -DEPEND=>=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils virtual/pkgconfig -DESCRIPTION=Delta compression suite for using/generating binary patches -EAPI=6 -HOMEPAGE=https://github.com/rafaelmartins/diffball -IUSE=debug -KEYWORDS=~alpha amd64 ~hppa ia64 ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos -LICENSE=BSD -RDEPEND=>=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils -RESTRICT=strip -SLOT=0 -SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/diffball/diffball-1.0.1.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=4c9d56882c923aa1af44697a11c34d0b diff --git a/metadata/md5-cache/dev-util/diffball-1.0.1-r1 b/metadata/md5-cache/dev-util/diffball-1.0.1-r1 deleted file mode 100644 index 682af5b5cde1..000000000000 --- a/metadata/md5-cache/dev-util/diffball-1.0.1-r1 +++ /dev/null @@ -1,15 +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 prepare -DEPEND=>=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils virtual/pkgconfig -DESCRIPTION=Delta compression suite for using/generating binary patches -EAPI=7 -HOMEPAGE=https://github.com/zmedico/diffball -IUSE=debug -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos -LICENSE=BSD -RDEPEND=>=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/zmedico/diffball/archive/v1.0.1.tar.gz -> diffball-1.0.1.tar.gz https://github.com/zmedico/diffball/pull/1.patch -> diffball-1.0.1-bug_543310_stack_buffer_overflows.patch -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=f9b646a9c0d5e7d04954b262f591a04c diff --git a/metadata/md5-cache/dev-util/diffball-1.0.1-r2 b/metadata/md5-cache/dev-util/diffball-1.0.1-r2 index a46bf7b26ecb..1571be436676 100644 --- a/metadata/md5-cache/dev-util/diffball-1.0.1-r2 +++ b/metadata/md5-cache/dev-util/diffball-1.0.1-r2 @@ -5,11 +5,11 @@ DESCRIPTION=Delta compression suite for using/generating binary patches EAPI=7 HOMEPAGE=https://github.com/zmedico/diffball IUSE=debug -KEYWORDS=~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha amd64 ~hppa ia64 ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=BSD RDEPEND=>=sys-libs/zlib-1.1.4 >=app-arch/bzip2-1.0.2 app-arch/xz-utils RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/diffball/archive/v1.0.1.tar.gz -> diffball-1.0.1.tar.gz https://github.com/zmedico/diffball/pull/1.patch -> diffball-1.0.1-bug_543310_stack_buffer_overflows.patch https://github.com/zmedico/diffball/pull/2.patch -> diffball-1.0.1-bug_708736_cseek_xz_reset_avail_in_out.patch _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=7a0e64b374c2691041c71c736c644af2 +_md5_=52cbe4b5b0429ccaef3088f65db519cb diff --git a/metadata/md5-cache/dev-util/distro-info-0.14 b/metadata/md5-cache/dev-util/distro-info-0.14 deleted file mode 100644 index 7e4fed04539b..000000000000 --- a/metadata/md5-cache/dev-util/distro-info-0.14 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl:= python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) python? ( dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) test? ( dev-util/shunit2 dev-python/pylint[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) -DESCRIPTION=Provides information about the Debian distributions' releases -EAPI=6 -HOMEPAGE=https://debian.org -IUSE=python test python_targets_python2_7 python_targets_python3_6 -KEYWORDS=amd64 x86 -LICENSE=ISC -RDEPEND=dev-lang/perl:= python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) dev-util/distro-info-data -REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_6 ) ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://debian/pool/main/d/distro-info/distro-info_0.14.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6d70143e4ad34d8af73fd2051b7ed959 diff --git a/metadata/md5-cache/dev-util/distro-info-0.22 b/metadata/md5-cache/dev-util/distro-info-0.22 index 08e58302679b..c55d3a941c22 100644 --- a/metadata/md5-cache/dev-util/distro-info-0.22 +++ b/metadata/md5-cache/dev-util/distro-info-0.22 @@ -4,7 +4,7 @@ DESCRIPTION=Provides information about the Debian distributions' releases EAPI=7 HOMEPAGE=https://debian.org IUSE=python test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=ISC RDEPEND=dev-lang/perl:= python? ( 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-util/distro-info-data REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 ) ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://debian/pool/main/d/distro-info/distro-info_0.22.tar.xz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=d5345cb7cd76334e2a48f426e226985b +_md5_=304a2b7bd9b0a547c1dc370c650fa4ad diff --git a/metadata/md5-cache/dev-util/dput-ng-1.10-r1 b/metadata/md5-cache/dev-util/dput-ng-1.10-r1 deleted file mode 100644 index efe3fbb9282e..000000000000 --- a/metadata/md5-cache/dev-util/dput-ng-1.10-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python_single_target_python2_7? ( dev-python/python-debian[python_targets_python2_7(-)] dev-python/paramiko[python_targets_python2_7(-)] dev-util/distro-info[python,python_targets_python2_7(-)] ) app-text/asciidoc test? ( python_single_target_python2_7? ( dev-python/nose[python_targets_python2_7(-)] dev-python/python-debian[python_targets_python2_7(-)] ) ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) python_single_target_python2_7? ( >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)] ) -DESCRIPTION=Next generation Debian package upload tool -EAPI=6 -HOMEPAGE=https://people.debian.org/~paultag/dput-ng/ -IUSE=test +python_single_target_python2_7 -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=python_single_target_python2_7? ( dev-python/python-debian[python_targets_python2_7(-)] dev-python/paramiko[python_targets_python2_7(-)] dev-util/distro-info[python,python_targets_python2_7(-)] ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) -REQUIRED_USE=^^ ( python_single_target_python2_7 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://debian/pool/main/d/dput-ng/dput-ng_1.10.tar.xz -_eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=239efcd73dd4f2104cf3a5b6f62d6369 diff --git a/metadata/md5-cache/dev-util/dput-ng-1.28-r1 b/metadata/md5-cache/dev-util/dput-ng-1.28-r1 index 33a9cea84ac3..83ed93c0acbd 100644 --- a/metadata/md5-cache/dev-util/dput-ng-1.28-r1 +++ b/metadata/md5-cache/dev-util/dput-ng-1.28-r1 @@ -5,7 +5,7 @@ DESCRIPTION=Next generation Debian package upload tool EAPI=7 HOMEPAGE=https://people.debian.org/~paultag/dput-ng/ IUSE=test python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=python_single_target_python3_6? ( dev-python/python-debian[python_targets_python3_6(-)] dev-python/paramiko[python_targets_python3_6(-)] dev-util/distro-info[python,python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/python-debian[python_targets_python3_7(-)] dev-python/paramiko[python_targets_python3_7(-)] dev-util/distro-info[python,python_targets_python3_7(-)] ) 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] ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://debian/pool/main/d/dput-ng/dput-ng_1.28.tar.xz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb distutils-r1 b976429675a7a9926cb08dc110c52f17 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=c8808b12e8c0c3fc58235bd7cc6a7c6a +_md5_=d52809b45f64428606f7938829ea835e diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 6758e1da59f0..bda49ce696e9 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/git-2.25.0 b/metadata/md5-cache/dev-vcs/git-2.25.2 similarity index 95% rename from metadata/md5-cache/dev-vcs/git-2.25.0 rename to metadata/md5-cache/dev-vcs/git-2.25.2 index edf40e12ac06..9771184755ea 100644 --- a/metadata/md5-cache/dev-vcs/git-2.25.0 +++ b/metadata/md5-cache/dev-vcs/git-2.25.2 @@ -11,6 +11,6 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret ) !libressl? ( dev-libs/openssl:0= REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) subversion? ( perl ) webdav? ( curl ) pcre-jit? ( pcre ) perforce? ( ^^ ( python_single_target_python2_7 python_single_target_python3_6 python_single_target_python3_7 ) ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.25.0.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.25.0.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.25.0.tar.xz ) +SRC_URI=https://www.kernel.org/pub/software/scm/git/git-2.25.2.tar.xz https://www.kernel.org/pub/software/scm/git/git-manpages-2.25.2.tar.xz doc? ( https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.25.2.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 504a3383c45504fde86b00426619a709 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c _md5_=d0a6bf1b27bd420d751ecb40e37e6d52 diff --git a/metadata/md5-cache/dev-vcs/mercurial-5.2.2-r1 b/metadata/md5-cache/dev-vcs/mercurial-5.2.2-r1 index 10bbde49f700..c0f1a1d2723b 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-5.2.2-r1 +++ b/metadata/md5-cache/dev-vcs/mercurial-5.2.2-r1 @@ -5,7 +5,7 @@ DESCRIPTION=Scalable distributed SCM EAPI=7 HOMEPAGE=https://www.mercurial-scm.org/ IUSE=+chg emacs gpg test tk zsh-completion python_targets_python2_7 python_targets_python3_6 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2+ RDEPEND=!~dev-python/python-3.5.0 !~dev-python/python-3.5.1 !~dev-python/python-3.5.2 !~dev-python/python-3.6.0 !~dev-python/python-3.6.1 app-misc/ca-certificates dev-python/zstandard[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_6 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-5.2.2.tar.gz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb distutils-r1 b976429675a7a9926cb08dc110c52f17 elisp-common 504a3383c45504fde86b00426619a709 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=644238a41109b55573fe02d973d5b15c +_md5_=e8f97e17af88d417510b9179d1bfa63e diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index 94f4abf5a5bb..97ee65198c56 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/libmilter-1.0.2_p1 b/metadata/md5-cache/mail-filter/libmilter-1.0.2_p1 index 4a6194d7cff6..6e1b322960f0 100644 --- a/metadata/md5-cache/mail-filter/libmilter-1.0.2_p1 +++ b/metadata/md5-cache/mail-filter/libmilter-1.0.2_p1 @@ -4,10 +4,10 @@ DESCRIPTION=The Sendmail Filter API (Milter) EAPI=7 HOMEPAGE=http://www.sendmail.org/ IUSE=ipv6 poll -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86 LICENSE=Sendmail RDEPEND=!mail-mta/sendmail SLOT=0 SRC_URI=ftp://ftp.sendmail.org/pub/sendmail/sendmail.8.15.2.tar.gz _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=4fd6ceec966de738f396903e62bd8e99 +_md5_=3966cbc05842d0204e63b7c960185a69 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 17edacf28c3e..0f1a51c07697 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/gst-plugins-bad-1.14.5 b/metadata/md5-cache/media-libs/gst-plugins-bad-1.14.5 index f665be2ff0fa..da42b6428b3c 100644 --- a/metadata/md5-cache/media-libs/gst-plugins-bad-1.14.5 +++ b/metadata/md5-cache/media-libs/gst-plugins-bad-1.14.5 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.14.5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b gstreamer 65a3b883436ddde6185aabbc803831bf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 virtualx e49dbce7ac14426e1155497476915307 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c8683349d3d546eb0814fbd13efb1622 +_md5_=1d74526789ceda39044c7aeaf45a600c diff --git a/metadata/md5-cache/media-libs/gst-plugins-base-1.14.5-r1 b/metadata/md5-cache/media-libs/gst-plugins-base-1.14.5-r1 index 09ba03cbc70e..24f01000eddc 100644 --- a/metadata/md5-cache/media-libs/gst-plugins-base-1.14.5-r1 +++ b/metadata/md5-cache/media-libs/gst-plugins-base-1.14.5-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=ivorbis? ( ogg ) theora? ( ogg ) vorbis? ( ogg ) opengl? ( || ( egl SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.14.5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b gstreamer 65a3b883436ddde6185aabbc803831bf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=17318d85c92a1e335a5405afe0b4c657 +_md5_=db9ce1e67fa8c1386b1562e6cfaa737d diff --git a/metadata/md5-cache/media-libs/gst-plugins-good-1.14.5 b/metadata/md5-cache/media-libs/gst-plugins-good-1.14.5 index e15ba8f87350..f4850a04e675 100644 --- a/metadata/md5-cache/media-libs/gst-plugins-good-1.14.5 +++ b/metadata/md5-cache/media-libs/gst-plugins-good-1.14.5 @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/glib-2.40.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,a SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.14.5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b gstreamer 65a3b883436ddde6185aabbc803831bf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c07fa50be696e582ae6170026fa244dc +_md5_=6b3c47437d3c93692a08914a46e9a3ca diff --git a/metadata/md5-cache/media-libs/gst-plugins-ugly-1.14.3 b/metadata/md5-cache/media-libs/gst-plugins-ugly-1.14.3 index 42377740847c..ecc394f75b4b 100644 --- a/metadata/md5-cache/media-libs/gst-plugins-ugly-1.14.3 +++ b/metadata/md5-cache/media-libs/gst-plugins-ugly-1.14.3 @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/glib-2.40.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,a SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.14.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 gstreamer 65a3b883436ddde6185aabbc803831bf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ebddcba4ce740dfa944b58480802947e +_md5_=2a0267ac9bbcf6e086cb2908fb7bca11 diff --git a/metadata/md5-cache/media-libs/gstreamer-1.14.5 b/metadata/md5-cache/media-libs/gstreamer-1.14.5 index 7287b037692e..536c6b1d600d 100644 --- a/metadata/md5-cache/media-libs/gstreamer-1.14.5 +++ b/metadata/md5-cache/media-libs/gstreamer-1.14.5 @@ -11,4 +11,4 @@ RESTRICT=!test? ( test ) SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.14.5.tar.xz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=7653406072b2a45bdf87dee712da917a +_md5_=c7827a6d7685e5497e83449bbe4aa8da diff --git a/metadata/md5-cache/media-libs/libvorbis-1.3.6-r1 b/metadata/md5-cache/media-libs/libvorbis-1.3.6-r1 index 2e4093a37fd9..a9e11f63c4e3 100644 --- a/metadata/md5-cache/media-libs/libvorbis-1.3.6-r1 +++ b/metadata/md5-cache/media-libs/libvorbis-1.3.6-r1 @@ -5,11 +5,11 @@ DESCRIPTION=The Ogg Vorbis sound file format library EAPI=7 HOMEPAGE=https://xiph.org/vorbis/ IUSE=static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sh 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 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=>=media-libs/libogg-1.3.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_riscv_lp64d(-)?,abi_riscv_lp64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.6.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=88a1a85a58c2bd35df7ecbb1e2637c06 +_md5_=e90782c1f4282480536e4ce472ac55c6 diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index 6b385b7c622c..1933a583c928 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/gst-plugins-srtp-1.14.5 b/metadata/md5-cache/media-plugins/gst-plugins-srtp-1.14.5 index 3eb4861f6612..d880e06e42f1 100644 --- a/metadata/md5-cache/media-plugins/gst-plugins-srtp-1.14.5 +++ b/metadata/md5-cache/media-plugins/gst-plugins-srtp-1.14.5 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=1.0 SRC_URI=https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.14.5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 gstreamer 65a3b883436ddde6185aabbc803831bf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=035d573e767bc3d130217e1beaa225e0 +_md5_=e9975192377d8d8d02501fdecdf05d21 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 7e0f960bf057..f5b5b027a636 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/din-43.0.1 b/metadata/md5-cache/media-sound/din-43.0.1 deleted file mode 100644 index d8d2d652374d..000000000000 --- a/metadata/md5-cache/media-sound/din-43.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure postinst postrm preinst prepare -DEPEND=dev-lang/tcl:0= media-libs/libsdl:= virtual/glu virtual/opengl alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) dev-libs/boost dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=a software musical instrument and audio synthesizer -EAPI=7 -HOMEPAGE=http://dinisnoise.org/ -IUSE=+alsa jack -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/tcl:0= media-libs/libsdl:= virtual/glu virtual/opengl alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( alsa jack ) -SLOT=0 -SRC_URI=https://archive.org/download/dinisnoise_source_code/din-43.0.1.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=90867210f7af9bf7926a1fd26a4099e4 diff --git a/metadata/md5-cache/media-sound/din-44.0.2 b/metadata/md5-cache/media-sound/din-44.0.2 index a3ee4988980b..19326790bfbd 100644 --- a/metadata/md5-cache/media-sound/din-44.0.2 +++ b/metadata/md5-cache/media-sound/din-44.0.2 @@ -5,11 +5,11 @@ DESCRIPTION=a software musical instrument and audio synthesizer EAPI=7 HOMEPAGE=http://dinisnoise.org/ IUSE=+alsa jack -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=dev-lang/tcl:0= media-libs/libsdl:= virtual/glu virtual/opengl alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) REQUIRED_USE=|| ( alsa jack ) SLOT=0 SRC_URI=https://archive.org/download/dinisnoise_source_code/din-44.0.2.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=33e6fe5214cad7f0dc0b795d2ad60121 +_md5_=37908b969b88838eb36af822f328d88e diff --git a/metadata/md5-cache/media-sound/lollypop-1.2.22 b/metadata/md5-cache/media-sound/lollypop-1.2.22 deleted file mode 100644 index 3e09b77169c1..000000000000 --- a/metadata/md5-cache/media-sound/lollypop-1.2.22 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] dev-python/pycairo[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] gnome-base/gnome-common x11-libs/gtk+:3 dev-python/pkgconfig[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-util/desktop-file-utils dev-util/itstool dev-util/intltool >=dev-util/meson-0.51.2 >=dev-util/ninja-1.8.2 -DEFINED_PHASES=compile configure install postinst postrm preinst test -DEPEND=python_targets_python3_6? ( dev-lang/python:3.6[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] dev-python/pycairo[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] gnome-base/gnome-common x11-libs/gtk+:3 -DESCRIPTION=Modern music player for GNOME -EAPI=7 -HOMEPAGE=https://wiki.gnome.org/Apps/Lollypop -IUSE=python_targets_python3_6 -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] dev-python/pycairo[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] gnome-base/gnome-common x11-libs/gtk+:3 app-crypt/libsecret[introspection] dev-libs/totem-pl-parser dev-python/beautifulsoup:4[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] dev-python/dbus-python dev-python/pillow[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] >=dev-python/pylast-1.0.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] media-libs/gst-plugins-base:1.0[introspection] -REQUIRED_USE=|| ( python_targets_python3_6 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://adishatz.org/lollypop/lollypop-1.2.22.tar.xz -_eclasses_=gnome2-utils 532371cfcba45b2ab0d2950547c97d95 meson 0b22603e8787cab8d798c23c5e711ca5 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f8119f88f5707bf4c14610c4f3a762f1 diff --git a/metadata/md5-cache/media-sound/lollypop-1.2.25 b/metadata/md5-cache/media-sound/lollypop-1.2.25 new file mode 100644 index 000000000000..c4c73a475214 --- /dev/null +++ b/metadata/md5-cache/media-sound/lollypop-1.2.25 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] python_single_target_python3_6? ( dev-python/pycairo[python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] ) gnome-base/gnome-common x11-libs/gtk+:3 python_single_target_python3_6? ( dev-python/pkgconfig[python_targets_python3_6(-)] ) dev-util/desktop-file-utils dev-util/itstool dev-util/intltool >=dev-util/meson-0.51.2 >=dev-util/ninja-1.8.2 +DEFINED_PHASES=compile configure install postinst postrm preinst setup test +DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] python_single_target_python3_6? ( dev-python/pycairo[python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] ) gnome-base/gnome-common x11-libs/gtk+:3 +DESCRIPTION=Modern music player for GNOME +EAPI=7 +HOMEPAGE=https://wiki.gnome.org/Apps/Lollypop +IUSE=+python_single_target_python3_6 +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) dev-libs/appstream-glib[introspection] dev-libs/glib:2 dev-libs/gobject-introspection[cairo(+)] python_single_target_python3_6? ( dev-python/pycairo[python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] ) gnome-base/gnome-common x11-libs/gtk+:3 app-crypt/libsecret[introspection] dev-libs/totem-pl-parser python_single_target_python3_6? ( dev-python/beautifulsoup:4[python_targets_python3_6(-)] dev-python/dbus-python dev-python/pillow[python_targets_python3_6(-)] >=dev-python/pylast-1.0.0[python_targets_python3_6(-)] ) media-libs/gst-plugins-base:1.0[introspection] +REQUIRED_USE=^^ ( python_single_target_python3_6 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://adishatz.org/lollypop/lollypop-1.2.25.tar.xz +_eclasses_=gnome2-utils 532371cfcba45b2ab0d2950547c97d95 meson 0b22603e8787cab8d798c23c5e711ca5 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=d2c441fb4429785148611cfd7e3e522a diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 1e783a8c74ee..ecae51b9adc5 100644 Binary files a/metadata/md5-cache/net-analyzer/Manifest.gz and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/nrpe-4.0.0 b/metadata/md5-cache/net-analyzer/nrpe-4.0.0 index 18b70ea5de77..ff15b7fa32b7 100644 --- a/metadata/md5-cache/net-analyzer/nrpe-4.0.0 +++ b/metadata/md5-cache/net-analyzer/nrpe-4.0.0 @@ -5,10 +5,10 @@ DESCRIPTION=Nagios Remote Plugin Executor EAPI=7 HOMEPAGE=https://github.com/NagiosEnterprises/nrpe IUSE=command-args libressl selinux ssl -KEYWORDS=~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~hppa ppc ppc64 sparc x86 LICENSE=GPL-2+ RDEPEND=acct-group/nagios acct-user/nagios sys-apps/tcp-wrappers ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) || ( net-analyzer/nagios-plugins net-analyzer/monitoring-plugins ) selinux? ( sec-policy/selinux-nagios ) SLOT=0 SRC_URI=https://github.com/NagiosEnterprises/nrpe/releases/download/nrpe-4.0.0/nrpe-4.0.0.tar.gz _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=757194dbad8f7a04d0c5fc007db1e896 +_md5_=f01852c4b74f330c7bc1a2bc601ef18b diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 5599fc383d6d..82eeda241b67 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/libidn2-2.3.0 b/metadata/md5-cache/net-dns/libidn2-2.3.0 index cd577a0155c4..885e25ea919a 100644 --- a/metadata/md5-cache/net-dns/libidn2-2.3.0 +++ b/metadata/md5-cache/net-dns/libidn2-2.3.0 @@ -5,10 +5,10 @@ DESCRIPTION=An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5 EAPI=7 HOMEPAGE=https://www.gnu.org/software/libidn/#libidn2 https://gitlab.com/libidn/libidn2 IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_riscv_lp64d abi_riscv_lp64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh 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 ~sh 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+ LGPL-3+ RDEPEND=dev-libs/libunistring[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_riscv_lp64d(-)?,abi_riscv_lp64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0/2 SRC_URI=mirror://gnu/libidn/libidn2-2.3.0.tar.gz _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=ce2bffeb3540a78979cf9c0b282d8d41 +_md5_=0415646337d7433853a0e672ddc4d983 diff --git a/metadata/md5-cache/net-firewall/Manifest.gz b/metadata/md5-cache/net-firewall/Manifest.gz index b54c9089a894..7dc5ef810863 100644 Binary files a/metadata/md5-cache/net-firewall/Manifest.gz and b/metadata/md5-cache/net-firewall/Manifest.gz differ diff --git a/metadata/md5-cache/net-firewall/firewalld-0.7.1-r2 b/metadata/md5-cache/net-firewall/firewalld-0.7.1-r2 index d116de574a1b..447c3d43f811 100644 --- a/metadata/md5-cache/net-firewall/firewalld-0.7.1-r2 +++ b/metadata/md5-cache/net-firewall/firewalld-0.7.1-r2 @@ -5,7 +5,7 @@ DESCRIPTION=A firewall daemon with D-BUS interface providing a dynamic firewall EAPI=7 HOMEPAGE=http://www.firewalld.org/ IUSE=gui +nftables +iptables kernel_linux python_single_target_python2_7 python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm64 ~ppc64 x86 LICENSE=GPL-2+ RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) python_single_target_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] ) !!net-firewall/gshield nftables? ( net-firewall/nftables ) iptables? ( net-firewall/iptables[ipv6] net-firewall/ebtables net-firewall/ipset nftables? ( net-firewall/nftables[xtables(+)] ) ) || ( >=sys-apps/openrc-0.11.5 sys-apps/systemd ) python_single_target_python2_7? ( dev-python/dbus-python[python_targets_python2_7(-)] dev-python/decorator[python_targets_python2_7(-)] >=dev-python/python-slip-0.2.7[dbus,python_targets_python2_7(-)] dev-python/pygobject:3[python_targets_python2_7(-)] gui? ( x11-libs/gtk+:3 dev-python/PyQt5[gui,widgets,python_targets_python2_7(-)] ) ) python_single_target_python3_6? ( dev-python/dbus-python[python_targets_python3_6(-)] dev-python/decorator[python_targets_python3_6(-)] >=dev-python/python-slip-0.2.7[dbus,python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] gui? ( x11-libs/gtk+:3 dev-python/PyQt5[gui,widgets,python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( dev-python/dbus-python[python_targets_python3_7(-)] dev-python/decorator[python_targets_python3_7(-)] >=dev-python/python-slip-0.2.7[dbus,python_targets_python3_7(-)] dev-python/pygobject:3[python_targets_python3_7(-)] gui? ( x11-libs/gtk+:3 dev-python/PyQt5[gui,widgets,python_targets_python3_7(-)] ) ) REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_6 python_single_target_python3_7 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/firewalld/firewalld/archive/v0.7.1.tar.gz -> firewalld-0.7.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 47a7402d95930413ce25ba8d857339bb gnome2-utils 532371cfcba45b2ab0d2950547c97d95 l10n 97f2753e3f1f3753d53d856c7c0bbb0b libtool f143db5a74ccd9ca28c1234deffede96 linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e python-single-r1 01eeb2dae449b6155b46f8deb0a2087d python-utils-r1 89113cd44c8118e781d18387d4256fe3 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cbfa3244e44a69013e58e2286929f0c6 +_md5_=f3f686e9496a090e0dff222532fec6bc diff --git a/metadata/md5-cache/net-ftp/Manifest.gz b/metadata/md5-cache/net-ftp/Manifest.gz index c340694c469e..70df9fc9745e 100644 Binary files a/metadata/md5-cache/net-ftp/Manifest.gz and b/metadata/md5-cache/net-ftp/Manifest.gz differ diff --git a/metadata/md5-cache/net-ftp/proftpd-1.3.6c b/metadata/md5-cache/net-ftp/proftpd-1.3.6c index dda7f2ef7ae1..ea21b241d616 100644 --- a/metadata/md5-cache/net-ftp/proftpd-1.3.6c +++ b/metadata/md5-cache/net-ftp/proftpd-1.3.6c @@ -5,7 +5,7 @@ DESCRIPTION=An advanced and very configurable FTP server EAPI=7 HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ https://github.com/jbenden/mod_clamav http://gssmod.sourceforge.net/ IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 +KEYWORDS=~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) pam? ( sys-libs/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) virtual/tmpfiles REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) sftp? ( ssl ) shaper? ( ctrls ) mysql? ( ssl ) postgres? ( ssl ) sqlite? ( ssl ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.6c.tar.gz case? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-case-0.7.tar.gz ) clamav? ( https://github.com/jbenden/mod_clamav/archive/v0.14rc2.tar.gz -> proftpd-mod_clamav-0.14rc2.tar.gz ) diskuse? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-diskuse-0.9.tar.gz ) kerberos? ( mirror://sourceforge/gssmod/mod_gss-1.3.9.tar.gz ) msg? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-msg-0.4.1.tar.gz ) vroot? ( https://github.com/Castaglia/proftpd-mod_vroot/archive/v0.9.4.tar.gz -> mod_vroot-0.9.4.tar.gz ) _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=2dd2b5fb04be606f076a01beadf3f92b +_md5_=e1642464875c259627f5a85629479860 diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index a6a116c0a509..0722dc96f9c2 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/skypeforlinux-8.58.0.93 b/metadata/md5-cache/net-im/skypeforlinux-8.58.0.93 new file mode 100644 index 000000000000..45b65c1b1e01 --- /dev/null +++ b/metadata/md5-cache/net-im/skypeforlinux-8.58.0.93 @@ -0,0 +1,15 @@ +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=>=app-arch/rpm2targz-9.0.0.3g dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Instant messaging client, with support for audio and video +EAPI=7 +HOMEPAGE=https://www.skype.com/ +IUSE=kernel_linux abi_x86_64 +KEYWORDS=-* ~amd64 +LICENSE=Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1 +RDEPEND=app-crypt/libsecret[abi_x86_64(-)?] dev-libs/atk[abi_x86_64(-)?] dev-libs/expat[abi_x86_64(-)?] dev-libs/glib:2[abi_x86_64(-)?] dev-libs/nspr[abi_x86_64(-)?] dev-libs/nss[abi_x86_64(-)?] media-libs/alsa-lib[abi_x86_64(-)?] media-libs/fontconfig:1.0[abi_x86_64(-)?] media-libs/freetype:2[abi_x86_64(-)?] media-libs/libv4l[abi_x86_64(-)?] net-print/cups[abi_x86_64(-)?] sys-apps/dbus[abi_x86_64(-)?] sys-devel/gcc[cxx] virtual/ttf-fonts x11-libs/cairo[abi_x86_64(-)?] x11-libs/gdk-pixbuf:2[abi_x86_64(-)?] x11-libs/gtk+:3[abi_x86_64(-)?] x11-libs/libX11[abi_x86_64(-)?] x11-libs/libXScrnSaver[abi_x86_64(-)?] x11-libs/libXcomposite[abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_64(-)?] x11-libs/libXdamage[abi_x86_64(-)?] x11-libs/libXext[abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_64(-)?] x11-libs/libXi[abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_64(-)?] x11-libs/libXrender[abi_x86_64(-)?] x11-libs/libXtst[abi_x86_64(-)?] x11-libs/libxcb[abi_x86_64(-)?] x11-libs/libxkbfile[abi_x86_64(-)?] x11-libs/pango[abi_x86_64(-)?] +REQUIRED_USE=|| ( abi_x86_64 ) +RESTRICT=mirror bindist strip +SLOT=0 +SRC_URI=https://repo.skype.com/rpm/stable/skypeforlinux_8.58.0.93-1.x86_64.rpm +_eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multilib-build dfda7934df092a96e439c05b4aeac519 pax-utils a41d1fd1c111289ffa04490de6ee79d7 rpm c1d552831d4ee9c7bb82c35545c264c8 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1a8f802f06f1c6ed7df1bf48f2d3302f diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 3b9176f7cf32..c8c3b3411617 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/farstream-0.2.8-r2 b/metadata/md5-cache/net-libs/farstream-0.2.8-r2 index 0f0678a9a45a..f7a276e2e6f4 100644 --- a/metadata/md5-cache/net-libs/farstream-0.2.8-r2 +++ b/metadata/md5-cache/net-libs/farstream-0.2.8-r2 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0.2/5 SRC_URI=https://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.8.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver f9ec87e93172b25ce65a85303dc06964 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 2df69d3da6a26b1ca7cd81185f0599d6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 3b59474e577cf775a757884b62a6d9cf python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2665b62b8574948abae8ea590c075720 +_md5_=ff5d335c1a025050eb71ea48c62da81f diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 26616dc4f133..0d5541a6eecc 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/connman-1.38 b/metadata/md5-cache/net-misc/connman-1.38 index 725cc63630b5..07e9414e0a4c 100644 --- a/metadata/md5-cache/net-misc/connman-1.38 +++ b/metadata/md5-cache/net-misc/connman-1.38 @@ -5,11 +5,11 @@ DESCRIPTION=Provides a daemon for managing internet connections EAPI=7 HOMEPAGE=https://01.org/connman IUSE=bluetooth debug doc +ethernet examples iptables iwd l2tp networkmanager +nftables ofono openconnect openvpn policykit pptp tools vpnc +wifi wireguard wispr -KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 arm ~arm64 ~ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=sys-apps/dbus-1.2.24 sys-libs/readline:0= bluetooth? ( net-wireless/bluez ) iptables? ( >=net-firewall/iptables-1.4.8 ) iwd? ( net-wireless/iwd ) l2tp? ( net-dialup/xl2tpd ) nftables? ( >=net-libs/libnftnl-1.0.4:0= >=net-libs/libmnl-1.0.0:0= ) ofono? ( net-misc/ofono ) openconnect? ( net-vpn/openconnect ) openvpn? ( net-vpn/openvpn ) policykit? ( sys-auth/polkit ) pptp? ( net-dialup/pptpclient ) vpnc? ( net-vpn/vpnc ) wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] ) wireguard? ( >=net-libs/libmnl-1.0.0:0= ) wispr? ( net-libs/gnutls ) virtual/tmpfiles REQUIRED_USE=^^ ( iptables nftables ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/network/connman/connman-1.38.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=214f4ad6b3db29280c451de532d98507 +_md5_=17e1923ff173210066e4604be3b73e3d diff --git a/metadata/md5-cache/net-misc/dahdi-tools-3.1.0 b/metadata/md5-cache/net-misc/dahdi-tools-3.1.0 index fbd7744dd719..5af5b440dfa5 100644 --- a/metadata/md5-cache/net-misc/dahdi-tools-3.1.0 +++ b/metadata/md5-cache/net-misc/dahdi-tools-3.1.0 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/newt net-misc/dahdi sys-kernel/linux-headers virtual/libusb:0 p SLOT=0 SRC_URI=https://downloads.asterisk.org/pub/telephony/dahdi-tools/releases/dahdi-tools-3.1.0.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 47a7402d95930413ce25ba8d857339bb libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=0990da8b4beec00e2f5617eca098535f +_md5_=596556a12d525b520cf204b242bfc2a3 diff --git a/metadata/md5-cache/net-misc/youtube-viewer-3.7.4 b/metadata/md5-cache/net-misc/youtube-viewer-3.7.4-r1 similarity index 97% rename from metadata/md5-cache/net-misc/youtube-viewer-3.7.4 rename to metadata/md5-cache/net-misc/youtube-viewer-3.7.4-r1 index c90e2ab660c2..8e3c0cbd436d 100644 --- a/metadata/md5-cache/net-misc/youtube-viewer-3.7.4 +++ b/metadata/md5-cache/net-misc/youtube-viewer-3.7.4-r1 @@ -12,4 +12,4 @@ REQUIRED_USE=gtk2? ( gtk ) SLOT=0 SRC_URI=https://github.com/trizen/youtube-viewer/archive/3.7.4.tar.gz -> youtube-viewer-3.7.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eutils fcb2aa98e1948b835b5ae66ca52868c5 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fd0195fd0c8c66e4b1adc922e711c000 +_md5_=001612fbe075afb7f92fcbc9d673adeb diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index 6547ab27de52..6cc0b0dec6c7 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/fms-0.3.80 b/metadata/md5-cache/net-p2p/fms-0.3.82 similarity index 88% rename from metadata/md5-cache/net-p2p/fms-0.3.80 rename to metadata/md5-cache/net-p2p/fms-0.3.82 index f7b8d1cf68f2..c37fd758b4fa 100644 --- a/metadata/md5-cache/net-p2p/fms-0.3.80 +++ b/metadata/md5-cache/net-p2p/fms-0.3.82 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile configure install postinst prepare setup test DEPEND=virtual/libiconv frost? ( net-libs/mbedtls ) ssl? ( net-libs/mbedtls ) >=dev-libs/poco-1.4.3_p1 >=dev-db/sqlite-3.6.15 app-arch/unzip sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=A spam-resistant message board application for Freenet EAPI=6 -HOMEPAGE=http://freenetproject.org/tools.html +HOMEPAGE=https://github.com/freenet/wiki/wiki/FMS IUSE=frost ssl KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=virtual/libiconv frost? ( net-libs/mbedtls ) ssl? ( net-libs/mbedtls ) >=dev-libs/poco-1.4.3_p1 >=dev-db/sqlite-3.6.15 SLOT=0 -SRC_URI=mirror://gentoo/fms-src-0.3.80.zip +SRC_URI=https://dev.gentoo.org/~tommy/distfiles/fms-src-0.3.82.zip _eclasses_=cmake-utils be72eac95bd029ad1d81d5d656c3c83b desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=42502f063a6bd007652430d501c2b91b +_md5_=ef2a0e4eab1fb47a7c690608738c5acd diff --git a/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 b/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 index 8645d7edf9ac..581652817d6a 100644 --- a/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 +++ b/metadata/md5-cache/net-p2p/go-ipfs-0.4.23 @@ -1,5 +1,5 @@ -BDEPEND=>=dev-lang/go-1.12 app-arch/unzip >=dev-lang/go-1.10 virtual/pkgconfig -DEFINED_PHASES=compile install postinst preinst test unpack +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/ @@ -8,6 +8,6 @@ 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://dist.ipfs.io/go-ipfs/v0.4.23/go-ipfs-source.tar.gz -> go-ipfs-0.4.23.tar.gz https://raw.githubusercontent.com/ipfs/go-ipfs/v0.4.23/misc/completion/ipfs-completion.bash -> go-ipfs-0.4.23.bash -_eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb go-module cca12a5688562f107c14ffcf28195dd7 golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 multilib 1d91b03d42ab6308b5f4f6b598ed110e systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=79c262bf778415dbb7d6d5e20f20827f +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 47a7402d95930413ce25ba8d857339bb go-module cca12a5688562f107c14ffcf28195dd7 multilib 1d91b03d42ab6308b5f4f6b598ed110e systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=7a6cf46e16cea3fb2aac2062d298d018 diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz index ef46348ecff8..1a25473efc74 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/cups-filters-1.27.2 b/metadata/md5-cache/net-print/cups-filters-1.27.2 new file mode 100644 index 000000000000..6ec1c0df28d9 --- /dev/null +++ b/metadata/md5-cache/net-print/cups-filters-1.27.2 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/gdbus-codegen >=sys-devel/gettext-0.18.3 virtual/pkgconfig test? ( media-fonts/dejavu ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=>=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils] >=app-text/qpdf-8.3.0:= dev-libs/glib:2 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 >=net-print/cups-1.7.3 !<=net-print/cups-1.5.9999 sys-devel/bc sys-libs/zlib dbus? ( sys-apps/dbus ) foomatic? ( !net-print/foomatic-filters ) jpeg? ( virtual/jpeg:0 ) ldap? ( net-nds/openldap ) pdf? ( app-text/mupdf ) perl? ( dev-lang/perl:= ) png? ( media-libs/libpng:0= ) postscript? ( >=app-text/ghostscript-gpl-9.09[cups] ) tiff? ( media-libs/tiff:0 ) zeroconf? ( net-dns/avahi[dbus] ) +DESCRIPTION=Cups filters +EAPI=7 +HOMEPAGE=https://wiki.linuxfoundation.org/openprinting/cups-filters +IUSE=dbus +foomatic jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~m68k-mint +LICENSE=MIT GPL-2 +RDEPEND=>=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils] >=app-text/qpdf-8.3.0:= dev-libs/glib:2 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 >=net-print/cups-1.7.3 !<=net-print/cups-1.5.9999 sys-devel/bc sys-libs/zlib dbus? ( sys-apps/dbus ) foomatic? ( !net-print/foomatic-filters ) jpeg? ( virtual/jpeg:0 ) ldap? ( net-nds/openldap ) pdf? ( app-text/mupdf ) perl? ( dev-lang/perl:= ) png? ( media-libs/libpng:0= ) postscript? ( >=app-text/ghostscript-gpl-9.09[cups] ) tiff? ( media-libs/tiff:0 ) zeroconf? ( net-dns/avahi[dbus] ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=http://www.openprinting.org/download/cups-filters/cups-filters-1.27.2.tar.xz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=ce0916e423debb2db2bca46c5fdc7e4e diff --git a/metadata/md5-cache/net-print/cups-filters-9999 b/metadata/md5-cache/net-print/cups-filters-9999 index 9b885982d243..7a147f7d603a 100644 --- a/metadata/md5-cache/net-print/cups-filters-9999 +++ b/metadata/md5-cache/net-print/cups-filters-9999 @@ -4,11 +4,11 @@ DEPEND=>=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils] >=app-text/qpdf-8.3 DESCRIPTION=Cups filters EAPI=7 HOMEPAGE=https://wiki.linuxfoundation.org/openprinting/cups-filters -IUSE=dbus +foomatic ipp_autosetup jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf +IUSE=dbus +foomatic jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf LICENSE=MIT GPL-2 PROPERTIES=live RDEPEND=>=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils] >=app-text/qpdf-8.3.0:= dev-libs/glib:2 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 >=net-print/cups-1.7.3 !<=net-print/cups-1.5.9999 sys-devel/bc sys-libs/zlib dbus? ( sys-apps/dbus ) foomatic? ( !net-print/foomatic-filters ) jpeg? ( virtual/jpeg:0 ) ldap? ( net-nds/openldap ) pdf? ( app-text/mupdf ) perl? ( dev-lang/perl:= ) png? ( media-libs/libpng:0= ) postscript? ( >=app-text/ghostscript-gpl-9.09[cups] ) tiff? ( media-libs/tiff:0 ) zeroconf? ( net-dns/avahi[dbus] ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b git-r3 86a0188f2ad9eb3d65e4d031ab8a0422 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=5a97ef099f92729a9d3dffd827bf4c14 +_md5_=ce0916e423debb2db2bca46c5fdc7e4e diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 80d475ad4e6a..a350f5b8d2d7 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/tor-0.4.1.9 b/metadata/md5-cache/net-vpn/tor-0.4.1.9 new file mode 100644 index 000000000000..1a7e62be05e2 --- /dev/null +++ b/metadata/md5-cache/net-vpn/tor-0.4.1.9 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install +DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) +DESCRIPTION=Anonymizing overlay network for TCP +EAPI=7 +HOMEPAGE=http://www.torproject.org/ +IUSE=caps doc libressl lzma +man scrypt seccomp selinux systemd tor-hardening test zstd +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos +LICENSE=BSD GPL-2 +RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.torproject.org/dist/tor-0.4.1.9.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.1.9.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=4ae03b2969363777a2d255019af067b2 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.2.7 b/metadata/md5-cache/net-vpn/tor-0.4.2.7 new file mode 100644 index 000000000000..568cbea8b601 --- /dev/null +++ b/metadata/md5-cache/net-vpn/tor-0.4.2.7 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install +DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) +DESCRIPTION=Anonymizing overlay network for TCP +EAPI=7 +HOMEPAGE=http://www.torproject.org/ +IUSE=caps doc libressl lzma +man scrypt seccomp selinux systemd tor-hardening test zstd +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos +LICENSE=BSD GPL-2 +RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.torproject.org/dist/tor-0.4.2.7.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.2.7.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=364b5fb3524c737290d42c5e77f99ad1 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.3.3_alpha b/metadata/md5-cache/net-vpn/tor-0.4.3.3_alpha new file mode 100644 index 000000000000..75cbc1b54695 --- /dev/null +++ b/metadata/md5-cache/net-vpn/tor-0.4.3.3_alpha @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install +DEPEND=dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) +DESCRIPTION=Anonymizing overlay network for TCP +EAPI=7 +HOMEPAGE=http://www.torproject.org/ +IUSE=caps doc libressl lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd +KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos +LICENSE=BSD GPL-2 +RDEPEND=acct-user/tor acct-group/tor dev-libs/libevent:=[ssl] sys-libs/zlib caps? ( sys-libs/libcap ) man? ( app-text/asciidoc ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) lzma? ( app-arch/xz-utils ) scrypt? ( app-crypt/libscrypt ) seccomp? ( >=sys-libs/libseccomp-2.4.1 ) systemd? ( sys-apps/systemd ) zstd? ( app-arch/zstd ) selinux? ( sec-policy/selinux-tor ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.torproject.org/dist/tor-0.4.3.3-alpha.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.3.3-alpha.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b multilib 1d91b03d42ab6308b5f4f6b598ed110e readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=ea89617d40c67e07222f4f02814d45d2 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index b49ca028ef9e..822b41e4d13b 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/crda-4.14 b/metadata/md5-cache/net-wireless/crda-4.14 index b62ab2ca5924..f045f4add7b3 100644 --- a/metadata/md5-cache/net-wireless/crda-4.14 +++ b/metadata/md5-cache/net-wireless/crda-4.14 @@ -4,10 +4,10 @@ DESCRIPTION=Central Regulatory Domain Agent for wireless networks EAPI=6 HOMEPAGE=https://wireless.wiki.kernel.org/en/developers/regulatory/crda IUSE=gcrypt libressl -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm ~arm64 ia64 ~mips ~ppc ppc64 ~sparc x86 LICENSE=ISC RDEPEND=!gcrypt? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) gcrypt? ( dev-libs/libgcrypt:0= ) dev-libs/libnl:3 net-wireless/wireless-regdb SLOT=0 SRC_URI=https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/crda.git/snapshot/crda-4.14.tar.gz _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e python-any-r1 3b59474e577cf775a757884b62a6d9cf python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=20c72231f62b808fb25caa3ec7d45be3 +_md5_=ba86e0111906bd83de0798c3bde573c6 diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index eecffa988c90..ebf2e68f5ba5 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/osm-gps-map-1.1.0 b/metadata/md5-cache/sci-geosciences/osm-gps-map-1.1.0 index df51f1732c97..e84d119a2c77 100644 --- a/metadata/md5-cache/sci-geosciences/osm-gps-map-1.1.0 +++ b/metadata/md5-cache/sci-geosciences/osm-gps-map-1.1.0 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare DEPEND=>=dev-libs/glib-2.16.0:2 >=net-libs/libsoup-2.4.0:2.4 >=x11-libs/cairo-1.8.0 >=x11-libs/gtk+-3.0:3[introspection] dev-libs/gobject-introspection dev-util/gtk-doc-am gnome-base/gnome-common:3 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 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A GTK+ widget for displaying OpenStreetMap tiles EAPI=6 -HOMEPAGE=http://nzjrs.github.io/osm-gps-map/ +HOMEPAGE=https://nzjrs.github.io/osm-gps-map/ IUSE=static-libs KEYWORDS=amd64 x86 LICENSE=GPL-2+ @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/glib-2.16.0:2 >=net-libs/libsoup-2.4.0:2.4 >=x11-libs/cairo-1 SLOT=0 SRC_URI=https://github.com/nzjrs/osm-gps-map/releases/download/1.1.0/osm-gps-map-1.1.0.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver f9ec87e93172b25ce65a85303dc06964 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 2df69d3da6a26b1ca7cd81185f0599d6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=04dda7537e4c16a141d0f6504f3835bd +_md5_=3814ef1e72911a80dcfff4f31aec165d diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index c22d72f3a39e..a559aaa9308e 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/less-550 b/metadata/md5-cache/sys-apps/less-556 similarity index 84% rename from metadata/md5-cache/sys-apps/less-550 rename to metadata/md5-cache/sys-apps/less-556 index 9bff12807c02..ad5ad1f92543 100644 --- a/metadata/md5-cache/sys-apps/less-550 +++ b/metadata/md5-cache/sys-apps/less-556 @@ -1,12 +1,12 @@ 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=6 +EAPI=7 HOMEPAGE=http://www.greenwoodsoftware.com/less/ IUSE=pcre unicode KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~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-550.tar.gz -_md5_=1e022e5ec885174e7e5f39a27b2bf784 +SRC_URI=http://www.greenwoodsoftware.com/less/less-556.tar.gz +_md5_=831e4a78ea2ee1bf972b59e14fee749f diff --git a/metadata/md5-cache/sys-apps/shadow-4.8-r4 b/metadata/md5-cache/sys-apps/shadow-4.8-r4 index 0c9b1fde7fe1..cdd83e31448e 100644 --- a/metadata/md5-cache/sys-apps/shadow-4.8-r4 +++ b/metadata/md5-cache/sys-apps/shadow-4.8-r4 @@ -5,10 +5,10 @@ DESCRIPTION=Utilities to deal with user accounts EAPI=7 HOMEPAGE=https://github.com/shadow-maint/shadow IUSE=acl audit bcrypt +cracklib nls pam selinux skey split-usr +su xattr -KEYWORDS=~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 LICENSE=BSD GPL-2 RDEPEND=acl? ( sys-apps/acl:0= ) audit? ( >=sys-process/audit-2.6:0= ) cracklib? ( >=sys-libs/cracklib-2.7-r3:0= ) nls? ( virtual/libintl ) pam? ( sys-libs/pam:0= ) skey? ( sys-auth/skey:0= ) selinux? ( >=sys-libs/libselinux-1.28:0= sys-libs/libsemanage:0= ) xattr? ( sys-apps/attr:0= ) pam? ( >=sys-auth/pambase-20150213 ) su? ( !sys-apps/util-linux[su(-)] ) SLOT=0 SRC_URI=https://github.com/shadow-maint/shadow/releases/download/4.8/shadow-4.8.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 eutils fcb2aa98e1948b835b5ae66ca52868c5 flag-o-matic 74b1bca587791941e9df7b808a01575b libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e pam a1771fc1e5831c201eaf18451747d94b toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=b991a1f82ba5e8c2e3300656b0da2f93 +_md5_=d1f8275b63b90f857fd17bd9cca8a1dd diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index dc477b7433c2..54573d8e7849 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/neutron-15.0.1 b/metadata/md5-cache/sys-cluster/neutron-15.0.1 deleted file mode 100644 index 7a7f74c5acbf..000000000000 --- a/metadata/md5-cache/sys-cluster/neutron-15.0.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 config configure install postinst prepare pretend setup 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-4.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] app-admin/sudo -DESCRIPTION=A virtual network service for Openstack -EAPI=7 -HOMEPAGE=https://launchpad.net/neutron -IUSE=compute-only dhcp haproxy ipv6 l3 metadata openvswitch linuxbridge server sqlite +mysql postgres python_targets_python3_6 python_targets_python3_7 kernel_linux -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-4.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/paste-2.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pastedeploy-1.5.0-r1[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/debtcollector-1.2.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(-)] >=dev-python/eventlet-0.18.4[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/pecan-1.3.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/httplib2-0.9.1[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/jinja-2.10[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/neutron-lib-1.29.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-neutronclient-6.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/tenacity-3.2.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] compute-only? ( >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-1.2.0[sqlite,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) mysql? ( >=dev-python/pymysql-0.7.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pymysql-0.7.7[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) postgres? ( >=dev-python/psycopg-2.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) >=dev-python/webob-1.8.2[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/alembic-0.8.10[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.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-cache-1.26.0[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-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.19.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-db-4.37.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-messaging-5.29.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-middleware-3.31.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-policy-1.30.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-privsep-1.32.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-reports-1.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-rootwrap-5.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-service-1.24.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-service-1.28.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-upgradecheck-0.1.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-versionedobjects-1.35.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osprofiler-2.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-ken-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovs-2.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovsdbapp-0.9.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/psutil-3.2.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyroute2-0.5.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-novaclient-9.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/openstacksdk-0.31.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-designateclient-2.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-xenapi-0.3.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-vif-1.15.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyudev[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] sys-apps/iproute2 net-misc/iputils[arping] net-misc/bridge-utils net-firewall/ipset net-firewall/iptables net-firewall/ebtables net-firewall/conntrack-tools haproxy? ( net-proxy/haproxy ) openvswitch? ( net-misc/openvswitch ) ipv6? ( net-misc/radvd >=net-misc/dibbler-1.0.1 ) dhcp? ( net-dns/dnsmasq[dhcp-tools] ) acct-group/neutron acct-user/neutron 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=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( !mysql !postgres !sqlite !dhcp !l3 !metadata !server || ( openvswitch linuxbridge ) ) || ( python_targets_python3_6 python_targets_python3_7 ) -SLOT=0 -SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/configs.tar.gz -> neutron-configs-15.0.1.tar.gz https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/ml2_plugins.tar.gz -> neutron-ml2-plugins-15.0.1.tar.gz https://tarballs.openstack.org/neutron/neutron-15.0.1.tar.gz -_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=e469c5374149cfce6ec42f3916febb62 diff --git a/metadata/md5-cache/sys-cluster/neutron-15.0.2 b/metadata/md5-cache/sys-cluster/neutron-15.0.2 index b4cef3d07868..795cd2b6847b 100644 --- a/metadata/md5-cache/sys-cluster/neutron-15.0.2 +++ b/metadata/md5-cache/sys-cluster/neutron-15.0.2 @@ -5,11 +5,11 @@ DESCRIPTION=A virtual network service for Openstack EAPI=7 HOMEPAGE=https://launchpad.net/neutron IUSE=compute-only dhcp haproxy ipv6 l3 metadata openvswitch linuxbridge server sqlite +mysql postgres python_targets_python3_6 python_targets_python3_7 kernel_linux -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-4.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/paste-2.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pastedeploy-1.5.0-r1[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/debtcollector-1.2.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(-)] >=dev-python/eventlet-0.18.4[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/pecan-1.3.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/httplib2-0.9.1[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/jinja-2.10[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/neutron-lib-1.29.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-neutronclient-6.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/tenacity-3.2.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] compute-only? ( >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-1.2.0[sqlite,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) mysql? ( >=dev-python/pymysql-0.7.6[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/pymysql-0.7.7[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) postgres? ( >=dev-python/psycopg-2.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sqlalchemy-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) >=dev-python/webob-1.8.2[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/alembic-0.8.10[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.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-cache-1.26.0[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-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.19.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-db-4.37.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-messaging-5.29.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-middleware-3.31.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-policy-1.30.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-privsep-1.32.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-reports-1.18.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-rootwrap-5.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-service-1.24.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] !~dev-python/oslo-service-1.28.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/oslo-upgradecheck-0.1.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-versionedobjects-1.35.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/osprofiler-2.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-ken-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovs-2.8.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/ovsdbapp-0.9.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/psutil-3.2.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/pyroute2-0.5.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-novaclient-9.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/openstacksdk-0.31.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/python-designateclient-2.7.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-xenapi-0.3.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/os-vif-1.15.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyudev[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] sys-apps/iproute2 net-misc/iputils[arping] net-misc/bridge-utils net-firewall/ipset net-firewall/iptables net-firewall/ebtables net-firewall/conntrack-tools haproxy? ( net-proxy/haproxy ) openvswitch? ( net-misc/openvswitch ) ipv6? ( net-misc/radvd >=net-misc/dibbler-1.0.1 ) dhcp? ( net-dns/dnsmasq[dhcp-tools] ) acct-group/neutron acct-user/neutron 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=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( !mysql !postgres !sqlite !dhcp !l3 !metadata !server || ( openvswitch linuxbridge ) ) || ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/configs.tar.gz -> neutron-configs-15.0.2.tar.gz https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/ml2_plugins.tar.gz -> neutron-ml2-plugins-15.0.2.tar.gz https://tarballs.openstack.org/neutron/neutron-15.0.2.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=682d15a3e68459fc25bd1d092bda1934 +_md5_=e469c5374149cfce6ec42f3916febb62 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index ba8c10839c45..7fd8c05e5261 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.111 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.111 new file mode 100644 index 000000000000..67970af5649f --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.111 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=4.19.111 +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-110.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-110.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-110.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-110.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-110.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-110.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-110.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-110.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-110.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=48841405d8da8b7f1214f48dbac551fc diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.26 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.26 new file mode 100644 index 000000000000..fdd558b7f546 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.26 @@ -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 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=5.4.26 +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-26.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-26.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-26.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-26.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-26.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-26.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-26.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-26.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-26.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=d48a2c83faecfd614059327b0de1741a diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.5.10 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.5.10 new file mode 100644 index 000000000000..98919c0690c4 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.5.10 @@ -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.5 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=5.5.10 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.5.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.5-12.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.5-12.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.5-12.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.5-12.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.5-12.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.5-12.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.5-12.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.5-12.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.5-12.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=404bf80b5fb8f3fb562da13b89338276 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20190603 b/metadata/md5-cache/sys-kernel/linux-firmware-20190603 deleted file mode 100644 index 8dbc90eb2fcd..000000000000 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20190603 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst preinst prepare unpack -DESCRIPTION=Linux firmware files -EAPI=7 -HOMEPAGE=https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git -IUSE=+redistributable savedconfig unknown-license savedconfig -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) redistributable? ( linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) unknown-license? ( all-rights-reserved ) -RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !media-tv/cx18-firmware ! linux-firmware-20190603.tar.gz -_eclasses_=portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=d3c4a75069359a7e1f2d47663b51fbdc diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20190904 b/metadata/md5-cache/sys-kernel/linux-firmware-20190904 deleted file mode 100644 index 8e7a561b25d1..000000000000 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20190904 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=initramfs? ( app-arch/cpio ) -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend unpack -DESCRIPTION=Linux firmware files -EAPI=7 -HOMEPAGE=https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git -IUSE=initramfs +redistributable savedconfig unknown-license savedconfig -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) redistributable? ( linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) unknown-license? ( all-rights-reserved ) -RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !media-tv/cx18-firmware ! linux-firmware-20190904.tar.gz -_eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=8268bede028a4f1953bf30bbf0aeaa63 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20191008 b/metadata/md5-cache/sys-kernel/linux-firmware-20191008 deleted file mode 100644 index 6cb32af57d1a..000000000000 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20191008 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=initramfs? ( app-arch/cpio ) -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend unpack -DESCRIPTION=Linux firmware files -EAPI=7 -HOMEPAGE=https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git -IUSE=initramfs +redistributable savedconfig unknown-license savedconfig -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) redistributable? ( linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) unknown-license? ( all-rights-reserved ) -RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !media-tv/cx18-firmware ! linux-firmware-20191008.tar.gz -_eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=0ebec96fdaf32b38520fa33974c1a3b1 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20191108 b/metadata/md5-cache/sys-kernel/linux-firmware-20191108 deleted file mode 100644 index 8847b640dd36..000000000000 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20191108 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=initramfs? ( app-arch/cpio ) -DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend unpack -DESCRIPTION=Linux firmware files -EAPI=7 -HOMEPAGE=https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git -IUSE=initramfs +redistributable savedconfig unknown-license savedconfig -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) redistributable? ( linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) unknown-license? ( all-rights-reserved ) -RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !media-tv/cx18-firmware ! linux-firmware-20191108.tar.gz -_eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=d616e10693511c4150f667e91063be10 diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20200302 b/metadata/md5-cache/sys-kernel/linux-firmware-20200316 similarity index 93% rename from metadata/md5-cache/sys-kernel/linux-firmware-20200302 rename to metadata/md5-cache/sys-kernel/linux-firmware-20200316 index f2eec33bc8fc..c6a3e0febb59 100644 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20200302 +++ b/metadata/md5-cache/sys-kernel/linux-firmware-20200316 @@ -10,6 +10,6 @@ RDEPEND=!savedconfig? ( redistributable? ( !sys-firmware/alsa-firmware[alsa_card REQUIRED_USE=initramfs? ( redistributable ) RESTRICT=binchecks strip unknown-license? ( bindist ) SLOT=0 -SRC_URI=https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-0148cfefcbf98898ca65bb26d9d7d638b30e211d.tar.gz -> linux-firmware-20200302.tar.gz +SRC_URI=https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-20200316.tar.gz -> linux-firmware-20200316.tar.gz _eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd -_md5_=700781d6b321a94e8be48c4a7fdd5f07 +_md5_=f512fb6cc26452adccc18ccd1895e715 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.110 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.111 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.19.110 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.19.111 index 175187b3ea09..b520c83eb40b 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.110 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.111 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip -SLOT=4.19.110 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.110.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz +SLOT=4.19.111 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.111.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c _md5_=af62ceca6b46feac79b140ba555f8fb5 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.25 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.26 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.4.25 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.4.26 index cca04c087b95..e1b69157aca2 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.25 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.26 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip -SLOT=5.4.25 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.25.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz +SLOT=5.4.26 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.26.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c _md5_=af62ceca6b46feac79b140ba555f8fb5 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.5.9 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.5.10 similarity index 84% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.5.9 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.5.10 index 62a58f0f445f..0110bcd45b92 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.5.9 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.5.10 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip -SLOT=5.5.9 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.5.9.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.5.tar.xz +SLOT=5.5.10 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.5.10.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.5.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 161e65a1e185c10599fd2c5b258be436 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c _md5_=af62ceca6b46feac79b140ba555f8fb5 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 8080dc3e66d4..56a29450db2b 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/tomcat-8.5.53 b/metadata/md5-cache/www-servers/tomcat-8.5.53 new file mode 100644 index 000000000000..596391fb65d7 --- /dev/null +++ b/metadata/md5-cache/www-servers/tomcat-8.5.53 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup test +DEPEND=dev-java/eclipse-ecj:4.5 ~dev-java/tomcat-servlet-api-8.5.53:3.1 app-admin/pwgen >=dev-java/ant-core-1.9.13 virtual/jdk:1.8 test? ( >=dev-java/ant-junit-1.9:0 dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container +EAPI=7 +HOMEPAGE=https://tomcat.apache.org/ +IUSE=extra-webapps elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=dev-java/eclipse-ecj:4.5 ~dev-java/tomcat-servlet-api-8.5.53:3.1 virtual/jre >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=test +SLOT=8.5 +SRC_URI=mirror://apache/tomcat/tomcat-8/v8.5.53/src/apache-tomcat-8.5.53-src.tar.gz +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 a055407af6fd37cf3f692ba73d2d2ba5 multilib 1d91b03d42ab6308b5f4f6b598ed110e prefix c2993e4c430c1ee24f278983d6189501 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_md5_=b37abbcaf7c683a6af8786132eabacbf diff --git a/metadata/md5-cache/www-servers/tomcat-9.0.33 b/metadata/md5-cache/www-servers/tomcat-9.0.33 new file mode 100644 index 000000000000..f37ea65e682f --- /dev/null +++ b/metadata/md5-cache/www-servers/tomcat-9.0.33 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack +DEPEND=dev-java/eclipse-ecj:4.13 dev-java/glassfish-xmlrpc-api:0 ~dev-java/tomcat-servlet-api-9.0.33:4.0 dev-java/wsdl4j:0 app-admin/pwgen >=dev-java/ant-core-1.9.13 virtual/jdk:1.8 test? ( >=dev-java/ant-junit-1.9:0 dev-java/easymock:3.2 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=Tomcat Servlet-4.0/JSP-2.4?/EL-3.1?/WebSocket-1.2?/JASPIC-1.1 Container +EAPI=7 +HOMEPAGE=https://tomcat.apache.org/ +IUSE=extra-webapps elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=dev-java/eclipse-ecj:4.13 dev-java/glassfish-xmlrpc-api:0 ~dev-java/tomcat-servlet-api-9.0.33:4.0 dev-java/wsdl4j:0 virtual/jre >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=test +SLOT=9 +SRC_URI=mirror://apache/tomcat/tomcat-9/v9.0.33/src/apache-tomcat-9.0.33-src.tar.gz https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/4.1.0/biz.aQute.bnd-4.1.0.jar https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/4.1.0/biz.aQute.bndlib-4.1.0.jar +_eclasses_=eutils fcb2aa98e1948b835b5ae66ca52868c5 java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 a055407af6fd37cf3f692ba73d2d2ba5 multilib 1d91b03d42ab6308b5f4f6b598ed110e prefix c2993e4c430c1ee24f278983d6189501 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c user 7b7fc6ec5eb1c1eee55b0609f01e7362 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_md5_=064c71371eb7474725dac438e6cfbff8 diff --git a/metadata/md5-cache/www-servers/tornado-4.5.3 b/metadata/md5-cache/www-servers/tornado-4.5.3 index 2ed2c5ae7e3d..a77c18b45189 100644 --- a/metadata/md5-cache/www-servers/tornado-4.5.3 +++ b/metadata/md5-cache/www-servers/tornado-4.5.3 @@ -1,9 +1,9 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] dev-python/sphinx_rtd_theme[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) test? ( dev-python/certifi[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-python/backports-ssl-match-hostname-3.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) || ( >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ( python_targets_python2_7? ( dev-python/twisted-names[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/twisted-web[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] test? ( dev-python/certifi[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-python/backports-ssl-match-hostname-3.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) || ( >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ( python_targets_python2_7? ( dev-python/twisted-names[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/twisted-web[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ) doc? ( || ( ( dev-lang/python:3.6[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[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[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] DESCRIPTION=Python web framework and asynchronous networking library EAPI=6 HOMEPAGE=http://www.tornadoweb.org/ -IUSE=doc examples test python_targets_python2_7 python_targets_python3_6 +IUSE=examples test doc python_targets_python2_7 python_targets_python3_6 KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=dev-python/certifi[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-python/backports-ssl-match-hostname-3.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) || ( >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] ( python_targets_python2_7? ( dev-python/twisted-names[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/twisted-web[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-)] @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/tornado/tornado-4.5.3.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 b976429675a7a9926cb08dc110c52f17 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=70c8743179d8f25d6be88b58306387f4 +_md5_=c278a35096d4a6ef96090d952e5e49d3 diff --git a/metadata/md5-cache/www-servers/tornado-5.1-r1 b/metadata/md5-cache/www-servers/tornado-5.1-r1 index 438fb37f859f..3b12368dbfa3 100644 --- a/metadata/md5-cache/www-servers/tornado-5.1-r1 +++ b/metadata/md5-cache/www-servers/tornado-5.1-r1 @@ -1,10 +1,10 @@ -BDEPEND=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(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=doc? ( || ( ( dev-lang/python:3.8[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[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[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[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[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(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-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_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) test? ( python_targets_python2_7? ( dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( python_targets_python2_7? ( dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=Python web framework and asynchronous networking library EAPI=7 HOMEPAGE=http://www.tornadoweb.org/ -IUSE=doc examples test python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=examples test doc python_targets_python2_7 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=python_targets_python2_7? ( dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/pycurl-7.19.3.1[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/twisted-16.0.0[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python2_7? ( dev-python/backports-abc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/futures[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) 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(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python2_7(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/tornado/tornado-5.1.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=e60b2056fc4e3163ce9fa9c5ba3c30df +_md5_=e633767fccc130f3a7a3f09edb821169 diff --git a/metadata/md5-cache/www-servers/tornado-6.0.3 b/metadata/md5-cache/www-servers/tornado-6.0.3 index 96d65480b9e0..4df688d579c2 100644 --- a/metadata/md5-cache/www-servers/tornado-6.0.3 +++ b/metadata/md5-cache/www-servers/tornado-6.0.3 @@ -1,10 +1,10 @@ -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(+)] ) >=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-lang/python:3.8[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[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[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(+)] ) ) ) 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(+)] ) >=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(-)] 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(-)] ) test? ( >=dev-python/pycurl-7.19.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/twisted-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(-)] 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(-)] ) +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/pycurl-7.19.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/twisted-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(-)] dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=Python web framework and asynchronous networking library EAPI=7 HOMEPAGE=https://www.tornadoweb.org/ -IUSE=doc examples test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +IUSE=examples test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pycurl-7.19.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/twisted-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(-)] 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(+)] ) >=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(-)] @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/t/tornado/tornado-6.0.3.tar.gz _eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c -_md5_=ef7526ad1f221ec75142d02c2a9a1cb0 +_md5_=6fbc1627d080e90046bd2db7587d5ced diff --git a/metadata/md5-cache/www-servers/tornado-6.0.3-r1 b/metadata/md5-cache/www-servers/tornado-6.0.3-r1 new file mode 100644 index 000000000000..c84334860358 --- /dev/null +++ b/metadata/md5-cache/www-servers/tornado-6.0.3-r1 @@ -0,0 +1,16 @@ +BDEPEND=doc? ( || ( ( dev-lang/python:3.8[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-python/sphinxcontrib-asyncio[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/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinxcontrib-asyncio[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/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinxcontrib-asyncio[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(+)] ) >=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/pycurl-7.19.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/twisted-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(-)] dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +DESCRIPTION=Python web framework and asynchronous networking library +EAPI=7 +HOMEPAGE=https://www.tornadoweb.org/ +IUSE=examples test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pycurl-7.19.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/twisted-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(-)] 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(+)] ) >=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/tornado/tornado-6.0.3.tar.gz +_eclasses_=distutils-r1 b976429675a7a9926cb08dc110c52f17 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 4dfa39908a2b26ac08e45ca546f7c9b6 python-utils-r1 89113cd44c8118e781d18387d4256fe3 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c +_md5_=8706026d72233b593438b8384c6e8056 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 84f3fc392cfc..5ba168b2271b 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/pcmanfm-1.2.3 b/metadata/md5-cache/x11-misc/pcmanfm-1.2.3 deleted file mode 100644 index a1007252c0f7..000000000000 --- a/metadata/md5-cache/x11-misc/pcmanfm-1.2.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.16:2 >=lxde-base/menu-cache-0.3.2 x11-misc/shared-mime-info >=x11-libs/libfm-1.2.3:=[gtk(+)] virtual/eject virtual/freedesktop-icon-theme app-arch/xz-utils >=dev-util/intltool-0.40 virtual/pkgconfig sys-devel/gettext -DESCRIPTION=Fast lightweight tabbed filemanager -EAPI=5 -HOMEPAGE=https://wiki.lxde.org/en/PCManFM -IUSE=debug -KEYWORDS=~alpha amd64 arm ~arm64 ~mips ppc x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.16:2 >=lxde-base/menu-cache-0.3.2 x11-misc/shared-mime-info >=x11-libs/libfm-1.2.3:=[gtk(+)] virtual/eject virtual/freedesktop-icon-theme -SLOT=0 -SRC_URI=https://dev.gentoo.org/~hwoarang/distfiles/pcmanfm-1.2.3.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 l10n 97f2753e3f1f3753d53d856c7c0bbb0b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo 273fa5d1a8ed000a29d79323e2ed0dc1 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f856f90425adfc92e3bfa915c98ffe97 diff --git a/metadata/md5-cache/x11-misc/pcmanfm-1.2.5 b/metadata/md5-cache/x11-misc/pcmanfm-1.2.5 deleted file mode 100644 index 1e168c0b66d9..000000000000 --- a/metadata/md5-cache/x11-misc/pcmanfm-1.2.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.16:2 >=lxde-base/menu-cache-0.3.2 x11-misc/shared-mime-info >=x11-libs/libfm-1.2.5:=[gtk(+)] virtual/eject virtual/freedesktop-icon-theme app-arch/xz-utils >=dev-util/intltool-0.40 virtual/pkgconfig sys-devel/gettext -DESCRIPTION=Fast lightweight tabbed filemanager -EAPI=6 -HOMEPAGE=https://wiki.lxde.org/en/PCManFM -IUSE=debug -KEYWORDS=~alpha amd64 arm ~arm64 ~mips ppc x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.16:2 >=lxde-base/menu-cache-0.3.2 x11-misc/shared-mime-info >=x11-libs/libfm-1.2.5:=[gtk(+)] virtual/eject virtual/freedesktop-icon-theme -SLOT=0 -SRC_URI=mirror://sourceforge/pcmanfm/pcmanfm-1.2.5.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 l10n 97f2753e3f1f3753d53d856c7c0bbb0b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=279585149184a3acc74cdc5cac973e19 diff --git a/metadata/md5-cache/x11-misc/shutter-0.93.1-r3 b/metadata/md5-cache/x11-misc/shutter-0.93.1-r3 deleted file mode 100644 index fe35b3e884e6..000000000000 --- a/metadata/md5-cache/x11-misc/shutter-0.93.1-r3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst prepare -DESCRIPTION=Feature-rich screenshot program -EAPI=6 -HOMEPAGE=http://shutter-project.org/ -IUSE=drawing -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-lang/perl drawing? ( dev-perl/Goo-Canvas ) dev-perl/libxml-perl dev-perl/gnome2-canvas dev-perl/gnome2-perl dev-perl/gnome2-wnck dev-perl/Gtk2-Unique dev-perl/Gtk2-ImageView dev-perl/File-DesktopEntry dev-perl/File-HomeDir dev-perl/File-Which dev-perl/JSON dev-perl/File-Copy-Recursive dev-perl/File-MimeInfo dev-perl/Locale-gettext dev-perl/Net-DBus dev-perl/Proc-Simple dev-perl/Proc-ProcessTable dev-perl/Sort-Naturally dev-perl/WWW-Mechanize dev-perl/X11-Protocol dev-perl/XML-Simple dev-perl/libwww-perl virtual/imagemagick-tools[perl] -SLOT=0 -SRC_URI=http://shutter-project.org/wp-content/uploads/releases/tars/shutter-0.93.1.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils fcb2aa98e1948b835b5ae66ca52868c5 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 512eb3367f507ebaa1d1d43ab7d66e6c vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=65ea1ae0bebd2ad7ba5f6743f924a3be diff --git a/metadata/md5-cache/x11-misc/xystray-1.0 b/metadata/md5-cache/x11-misc/xystray-1.0 index d58cb51a9bbd..f5a0a1a224cd 100644 --- a/metadata/md5-cache/x11-misc/xystray-1.0 +++ b/metadata/md5-cache/x11-misc/xystray-1.0 @@ -2,10 +2,10 @@ DEFINED_PHASES=install DEPEND=x11-libs/libX11 x11-libs/libXt x11-libs/libXaw DESCRIPTION=A simple implementation of freedesktop.org notification area for X EAPI=6 -HOMEPAGE=http://steelman.github.com/xystray/ +HOMEPAGE=https://steelman.github.com/xystray/ KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=x11-libs/libX11 x11-libs/libXt SLOT=0 SRC_URI=https://github.com/steelman/xystray/archive/v1.0.tar.gz -> xystray-1.0.tar.gz -_md5_=cda555ec2c861ce8bd0de71cacb63ab1 +_md5_=011a0cf54fa9f61d00ebb8f4214d3d86 diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index b315fe2c7b8b..c8c5dba4f533 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/gnome-backgrounds-3.34.0 b/metadata/md5-cache/x11-themes/gnome-backgrounds-3.34.0 new file mode 100644 index 000000000000..5ef1af1be903 --- /dev/null +++ b/metadata/md5-cache/x11-themes/gnome-backgrounds-3.34.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install test +DEPEND=>=sys-devel/gettext-0.19.8 app-arch/xz-utils >=dev-util/meson-0.51.2 >=dev-util/ninja-1.8.2 +DESCRIPTION=A set of backgrounds packaged with the GNOME desktop +EAPI=6 +HOMEPAGE=https://git.gnome.org/browse/gnome-backgrounds +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 +LICENSE=CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-2.0 +RDEPEND=! ${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm64 ~ppc64 x86" IUSE="gui +nftables +iptables" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/net-ftp/Manifest.gz b/net-ftp/Manifest.gz index 6aad7783b3e0..4951e52072af 100644 Binary files a/net-ftp/Manifest.gz and b/net-ftp/Manifest.gz differ diff --git a/net-ftp/proftpd/proftpd-1.3.6c.ebuild b/net-ftp/proftpd/proftpd-1.3.6c.ebuild index 565991108c7a..ee796087785e 100644 --- a/net-ftp/proftpd/proftpd-1.3.6c.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.6c.ebuild @@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86" IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot" diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 4cb9721c6102..f8911bbb4c6c 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest index 7b83f305d6f1..3e5395d9807d 100644 --- a/net-im/skypeforlinux/Manifest +++ b/net-im/skypeforlinux/Manifest @@ -1 +1,2 @@ DIST skypeforlinux_8.57.0.116-1.x86_64.rpm 107397354 BLAKE2B 22d1b41201087b3067e89e583734f0b195103dff52f2023e5cc812a977338f2af7eafe5e82bd3f34e263740a1c2791035ee6b75dc077865fa14f1dcc1189b9a6 SHA512 79b5019be9c4cdb28c3dd166aa76128385631e1bc4e31f0b0bfdb0c7af54494987faf4ab3ed05dc9f810b05e07de916d997d5fe4c722aff089e00789394ef3d3 +DIST skypeforlinux_8.58.0.93-1.x86_64.rpm 108966411 BLAKE2B b74dfe1758fbec9e000be7134d1b575a28077967c95b18955c6b90ac9b3bba1b69b19f91553185939f0e39a1ff80fa26020a383a42940c729d6256df01cf74cc SHA512 907159ac1fead3248114a9bf67a764df9f3ec7deb1b9008b6228d55deacbc6ee150e8496674a484c5be14a59ab33c163493b704c364c822177827fcacfba0452 diff --git a/net-im/skypeforlinux/skypeforlinux-8.58.0.93.ebuild b/net-im/skypeforlinux/skypeforlinux-8.58.0.93.ebuild new file mode 100644 index 000000000000..c2755ee5b06c --- /dev/null +++ b/net-im/skypeforlinux/skypeforlinux-8.58.0.93.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MULTILIB_COMPAT=( abi_x86_64 ) + +inherit chromium-2 desktop pax-utils rpm multilib-build xdg + +DESCRIPTION="Instant messaging client, with support for audio and video" +HOMEPAGE="https://www.skype.com/" +SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm" + +LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1" +SLOT="0" +KEYWORDS="-* ~amd64" + +S="${WORKDIR}" +QA_PREBUILT="*" +RESTRICT="mirror bindist strip" #299368 + +RDEPEND=" + app-crypt/libsecret[${MULTILIB_USEDEP}] + dev-libs/atk[${MULTILIB_USEDEP}] + dev-libs/expat[${MULTILIB_USEDEP}] + dev-libs/glib:2[${MULTILIB_USEDEP}] + dev-libs/nspr[${MULTILIB_USEDEP}] + dev-libs/nss[${MULTILIB_USEDEP}] + media-libs/alsa-lib[${MULTILIB_USEDEP}] + media-libs/fontconfig:1.0[${MULTILIB_USEDEP}] + media-libs/freetype:2[${MULTILIB_USEDEP}] + media-libs/libv4l[${MULTILIB_USEDEP}] + net-print/cups[${MULTILIB_USEDEP}] + sys-apps/dbus[${MULTILIB_USEDEP}] + sys-devel/gcc[cxx] + virtual/ttf-fonts + x11-libs/cairo[${MULTILIB_USEDEP}] + x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] + x11-libs/gtk+:3[${MULTILIB_USEDEP}] + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] + x11-libs/libXcomposite[${MULTILIB_USEDEP}] + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXdamage[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXi[${MULTILIB_USEDEP}] + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-libs/libXrender[${MULTILIB_USEDEP}] + x11-libs/libXtst[${MULTILIB_USEDEP}] + x11-libs/libxcb[${MULTILIB_USEDEP}] + x11-libs/libxkbfile[${MULTILIB_USEDEP}] + x11-libs/pango[${MULTILIB_USEDEP}]" + +pkg_setup() { + chromium_suid_sandbox_check_kernel_config +} + +src_unpack() { + rpm_src_unpack ${A} +} + +src_prepare() { + default + sed -e "s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \ + -i usr/bin/skypeforlinux || die + sed -e "s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \ + -e "/^OnlyShowIn=/d" \ + -i usr/share/applications/skypeforlinux.desktop || die +} + +src_install() { + dodir /opt + cp -a usr/share/skypeforlinux "${ED}"/opt || die + + # remove chrome-sandbox binary, users should use kernel namespaces + # https://bugs.gentoo.org/692692#c18 + rm "${ED}"/opt/skypeforlinux/chrome-sandbox || die + + dobin usr/bin/skypeforlinux + + dodoc usr/share/skypeforlinux/*.html + dodoc -r usr/share/doc/skypeforlinux/. + # symlink required for the "Help->3rd Party Notes" menu entry (otherwise frozen skype -> xdg-open) + dosym ${PF} usr/share/doc/skypeforlinux + + doicon usr/share/pixmaps/skypeforlinux.png + + local res + for res in 16 32 256 512; do + newicon -s ${res} usr/share/icons/hicolor/${res}x${res}/apps/skypeforlinux.png skypeforlinux.png + done + + domenu usr/share/applications/skypeforlinux.desktop + + pax-mark -m "${ED}"/opt/skypeforlinux/skypeforlinux + pax-mark -m "${ED}"/opt/skypeforlinux/resources/app.asar.unpacked/node_modules/slimcore/bin/slimcore.node +} diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 498b1e6e5e47..4ba2a3c6f0e9 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/farstream/farstream-0.2.8-r2.ebuild b/net-libs/farstream/farstream-0.2.8-r2.ebuild index c5a2f6eb67f3..94ad2225e928 100644 --- a/net-libs/farstream/farstream-0.2.8-r2.ebuild +++ b/net-libs/farstream/farstream-0.2.8-r2.ebuild @@ -44,6 +44,10 @@ DEPEND="${COMMONDEPEND} media-libs/gst-plugins-good:1.0 ) " +PATCHES=( + "${FILESDIR}"/${PN}-0.2.8-make43.patch # remove when bumping and switching to Meson +) + pkg_setup() { python-any-r1_pkg_setup } diff --git a/net-libs/farstream/files/farstream-0.2.8-make43.patch b/net-libs/farstream/files/farstream-0.2.8-make43.patch new file mode 100644 index 000000000000..c1e1c0d42791 --- /dev/null +++ b/net-libs/farstream/files/farstream-0.2.8-make43.patch @@ -0,0 +1,60 @@ +--- a/farstream/Makefile.in ++++ b/farstream/Makefile.in +@@ -17,6 +17,8 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance +@@ -549,7 +551,7 @@ + glib_enum_define = FS + glib_gen_prefix = _fs + glib_gen_basename = fs +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + @HAVE_INTROSPECTION_TRUE@introspection_sources = \ + @HAVE_INTROSPECTION_TRUE@ $(libfarstream_@FS_APIVERSION@_la_SOURCES) \ + @HAVE_INTROSPECTION_TRUE@ $(nodist_libfarstreaminclude_HEADERS) \ +--- a/gst/fsrtpconference/Makefile.in ++++ b/gst/fsrtpconference/Makefile.in +@@ -17,6 +17,8 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance +@@ -569,7 +571,7 @@ + glib_enum_define = FS_RTP + glib_gen_prefix = _fs_rtp + glib_gen_basename = fs-rtp +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: +--- a/transmitters/rawudp/Makefile.in ++++ b/transmitters/rawudp/Makefile.in +@@ -17,6 +17,8 @@ + # these are the variables your Makefile.am should set + # the example is based on the colorbalance interface + ++H := \# ++ + #glib_enum_headers=$(colorbalance_headers) + #glib_enum_define=GST_COLOR_BALANCE + #glib_gen_prefix=gst_color_balance +@@ -496,7 +498,7 @@ + glib_enum_define = FS_RAWUDP + glib_gen_prefix = _fs_rawudp + glib_gen_basename = fs-rawudp +-enum_headers = $(foreach h,$(glib_enum_headers),\n\#include \"$(h)\") ++enum_headers = $(foreach h,$(glib_enum_headers),\n$(H)include \"$(h)\") + all: all-am + + .SUFFIXES: diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 9ad5ee653af6..c689795605ed 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/connman/connman-1.38.ebuild b/net-misc/connman/connman-1.38.ebuild index 4fcf4d3e5b9d..d59fe30170f9 100644 --- a/net-misc/connman/connman-1.38.ebuild +++ b/net-misc/connman/connman-1.38.ebuild @@ -9,7 +9,7 @@ if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/connman/connman.git" else SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 x86" fi DESCRIPTION="Provides a daemon for managing internet connections" diff --git a/net-misc/dahdi-tools/dahdi-tools-3.1.0.ebuild b/net-misc/dahdi-tools/dahdi-tools-3.1.0.ebuild index 2a8c5a467685..eb1951f384c1 100644 --- a/net-misc/dahdi-tools/dahdi-tools-3.1.0.ebuild +++ b/net-misc/dahdi-tools/dahdi-tools-3.1.0.ebuild @@ -16,6 +16,7 @@ IUSE="ppp" PATCHES=( "${FILESDIR}/dahdi-nondigium-blacklist.patch" "${FILESDIR}/dahdi-tools-3.1.0-parallel-make-no-config.patch" + "${FILESDIR}/dahdi-tools-3.1.0-fno-common.patch" ) DEPEND="dev-libs/newt diff --git a/net-misc/dahdi-tools/files/dahdi-tools-3.1.0-fno-common.patch b/net-misc/dahdi-tools/files/dahdi-tools-3.1.0-fno-common.patch new file mode 100644 index 000000000000..3ca5bd2aa09b --- /dev/null +++ b/net-misc/dahdi-tools/files/dahdi-tools-3.1.0-fno-common.patch @@ -0,0 +1,39 @@ +diff --git a/xpp/mpptalk.c b/xpp/mpptalk.c +index fdb34f1..8fb3687 100644 +--- a/xpp/mpptalk.c ++++ b/xpp/mpptalk.c +@@ -237,7 +237,7 @@ union XTALK_PDATA(MPP) { + MEMBER(MPP, TWS_PORT_GET_REPLY); + MEMBER(MPP, TWS_PWR_GET); + MEMBER(MPP, TWS_PWR_GET_REPLY); +-} PACKED members; ++} PACKED; + + /* + * Statuses +diff --git a/xpp/xtalk/xtalk_raw.c b/xpp/xtalk/xtalk_raw.c +index 49e47d5..251a502 100644 +--- a/xpp/xtalk/xtalk_raw.c ++++ b/xpp/xtalk/xtalk_raw.c +@@ -48,7 +48,7 @@ CMD_DEF(XTALK, ACK, + + union XTALK_PDATA(XTALK) { + MEMBER(XTALK, ACK); +-} PACKED members; ++} PACKED; + + const struct xtalk_protocol xtalk_raw_proto = { + .name = "XTALK-RAW", +diff --git a/xpp/xtalk/xtalk_sync.c b/xpp/xtalk/xtalk_sync.c +index 18a5cad..ffa79d2 100644 +--- a/xpp/xtalk/xtalk_sync.c ++++ b/xpp/xtalk/xtalk_sync.c +@@ -60,7 +60,7 @@ union XTALK_PDATA(XTALK) { + MEMBER(XTALK, ACK); + MEMBER(XTALK, PROTO_GET); + MEMBER(XTALK, PROTO_GET_REPLY); +-} PACKED members; ++} PACKED; + + const struct xtalk_protocol xtalk_sync_proto = { + .name = "XTALK-SYNC", diff --git a/net-misc/youtube-viewer/youtube-viewer-3.7.4.ebuild b/net-misc/youtube-viewer/youtube-viewer-3.7.4-r1.ebuild similarity index 90% rename from net-misc/youtube-viewer/youtube-viewer-3.7.4.ebuild rename to net-misc/youtube-viewer/youtube-viewer-3.7.4-r1.ebuild index 18973d997c62..90be18b8c75b 100644 --- a/net-misc/youtube-viewer/youtube-viewer-3.7.4.ebuild +++ b/net-misc/youtube-viewer/youtube-viewer-3.7.4-r1.ebuild @@ -80,6 +80,10 @@ pkg_postinst() { elog elog "Check the configuration file in ~/.config/youtube-viewer/" elog "and configure your video player backend." + elog + ewarn "Starting with version 3.7.4, youtube-viewer requires the user to" + ewarn "get their own API key to function. Please refer to README.md or" + ewarn "https://github.com/trizen/youtube-viewer#logging-in for details!" } pkg_postrm() { diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index e41f36a5bb17..4ac83a0497a1 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/fms/Manifest b/net-p2p/fms/Manifest index d1d553de6079..3668c75ee5de 100644 --- a/net-p2p/fms/Manifest +++ b/net-p2p/fms/Manifest @@ -1,2 +1,2 @@ -DIST fms-src-0.3.80.zip 4583891 BLAKE2B 363fe148c622d999398d2f435f49e312d3bea22ad6b69865a618593616b47b632c1a56bcc8fc75bd40590e3858aad7e3f1d70991a21936e38562e10f1813b49c SHA512 d3aa5eb7d417bb135d88a515702fac9c451054d071374bb7f475add9af7e1fda90f4d9c61569e3e9040b2a241efa7fcc7ecac32a7f652327d15ed8d1ea1418c4 DIST fms-src-0.3.81.zip 4732577 BLAKE2B a873fe4458a4abf4d19c7849d2045e49f556e001315d9112f50fd5c544481c64e00d0db5672ca20f1974e8d8b46e88b98e6a339536659a8a4c06b1a3c4439d21 SHA512 7e5efc2bf22fd3ba24d61fb4a7afbd3b6181a6ea4d038bc06bc2135dd9254835647cbb62be68982ee553212be9f2e038f50623916db3131b2fd19a77c3180af2 +DIST fms-src-0.3.82.zip 4786920 BLAKE2B c18630b8b1b8871290f1d66c4638b99c110e0f49bef11517aa83760274707fd5d0b53c053ea3b38a0c35018de4a4b6f3dd426499228997bac377bb1f04f784fb SHA512 2a72cbc7e23eb16cc12bd373944d1da090030602a09d0c1cf2fd8688a7b1a98ff649f1d0aa8b525b65987394d81acbb9b7558fcb21cea90a7646067a16600673 diff --git a/net-p2p/fms/fms-0.3.80.ebuild b/net-p2p/fms/fms-0.3.82.ebuild similarity index 75% rename from net-p2p/fms/fms-0.3.80.ebuild rename to net-p2p/fms/fms-0.3.82.ebuild index 057149a612c4..574d26fb3ac5 100644 --- a/net-p2p/fms/fms-0.3.80.ebuild +++ b/net-p2p/fms/fms-0.3.82.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -6,8 +6,9 @@ EAPI="6" inherit eutils cmake-utils user DESCRIPTION="A spam-resistant message board application for Freenet" -HOMEPAGE="http://freenetproject.org/tools.html" -SRC_URI="mirror://gentoo/${PN}-src-${PV}.zip" +#FMS oly has a homepage within freenet, so the closest is a wiki linking to it +HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS" +SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip" LICENSE="GPL-2" SLOT="0" @@ -49,18 +50,18 @@ src_configure() { src_install() { insinto /var/freenet/fms - dobin "${CMAKE_BUILD_DIR}"/fms - doins *.htm - doins -r fonts images styles translations + dobin "${CMAKE_BUILD_DIR}"/fms || die + doins *.htm || die "doinstall failed" + doins -r fonts images styles translations || die fperms -R o-rwx /var/freenet/fms/ /usr/bin/fms fowners -R freenet:freenet /var/freenet/fms/ /usr/bin/fms - doinitd "${FILESDIR}/fms" - dodoc readme.txt + doinitd "${FILESDIR}/fms" || die "installing init.d file failed" + dodoc readme.txt || die "installing doc failed" } pkg_postinst() { if ! has_version 'net-p2p/freenet' ; then - ewarn "FMS needs a freenet node to up-/download #ssages." + ewarn "FMS needs a freenet node to up-/download messages." ewarn "Please make sure to have a node you can connect to" ewarn "or install net-p2p/freenet to get FMS working." fi diff --git a/net-p2p/go-ipfs/Manifest b/net-p2p/go-ipfs/Manifest index 7389951ffca2..a260ad820ac3 100644 --- a/net-p2p/go-ipfs/Manifest +++ b/net-p2p/go-ipfs/Manifest @@ -1,2 +1,798 @@ -DIST go-ipfs-0.4.23.bash 20753 BLAKE2B c34d29a48cf249b7a646a8a7b6015b9c4a4a5d8656187ec5984b0dfb741a8ca7b2f2d0a10bc0288aa862679c6d52145936b46497936565ba7cdb2ba847fda5b8 SHA512 acd3bdb689964aa5e15965bfea3cd1267f54a2014c05f49f4e536902cbdab3e22038f4f5db5ecc273c147135b265fcb82a41db22bfc3fd8f6ddc8ae43fd053ea +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 cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b SHA512 5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273 +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!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!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%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%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%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod 35 BLAKE2B e9ca430f98cfcfdc5bc1e50ef421253011f21fe2a9a06b15b4b818f336c64a544ede9a8d1552740e85358fcb16a588345124b06fb2788951c24c9dd92c3b1cda SHA512 a0c76da94f068f583607520b728036f45ea071b727d3aee601eee712bd952b5f6c8cd5df1e1484195b07bb4c3b224771dda1fc7848dcd086a6dc93ada3ff2ce8 +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%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod 31 BLAKE2B 15785a01a9f07d2cfe324a1ece5c8188395300b11821621fe13427b702cb9f452ebe125566c3c2648d2d83139add9ad6224d00536aaea7b16306eb62f67f8184 SHA512 5f7f52012aa82bdc43bd89d1491fbe00091299554bd85dbfc07f0cc757fcf44f4499df97a4f19c234ce70fbb7af0f4c54c13ffd547ef0a733365ea9c68dd0297 +DIST github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip 19948 BLAKE2B 3f604e82647eb2a4a4c309622080fd07701d032a430999f13da727cc01d455cd3d0e31a7079e0bd833fd17d84a228f9e3f588719c4491ba83e50aa442080acf3 SHA512 e1c0c9251b0c7f05bcfad6f73cab4215cbd550d98065ccf8553dc04a56d7f6153ee70a477230a0e7cd8adc3707c8bfba279676902300537eb056fd912d75b51c +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%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%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%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod 146 BLAKE2B 5efa8dad622ae253ffa106eafea277fd947fc0f28e6962e461283ce2267d992b85b1f0eb9074a90009d8ed1d47f9e1f3e03cfc0eb7ad7df104282cfd144cc12a SHA512 32c34a590e6c113a16700ef2faa5124ebb6c8773cd76594312157bd2b70d54cd939ff2c32fac47421b5615e804142cb7b393394d4745d5894f9b68392bc37ad9 +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%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%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.10.mod 94 BLAKE2B 94e391c9c787f7b0b9d238f1fc61ac5e90d4d6658f7d60a4c143bbeae999ea0ca23d28f2ca204523e44b61807afa23e8690af850d14203e5755717b0a1f5981d SHA512 b54a3715ce2745ef68bf269b09d458d3712d8ec7a876eff53f5c171d23d992a5391552651c56f7adf5b90a356bcefab552a7ef8dd3a0d562fd396434970963ab +DIST github.com%2Fcskr%2Fpubsub%2F@v%2Fv1.0.2.mod 39 BLAKE2B ad751b3cc7739079f549f61216a0ed6c3ff60726f9e45854baf44eaeed0fcbb85dd4407f81907e6c4d67c9f32c811b9fca22537e4a5da5cdd89cd256ccc2e21a SHA512 c1b70111b85332905b8f0171d585fdcd269f3ea3f21235a1cf489f8986e24f9ccf2578f9752648a3c56b4e7c28ed056bf5946a0acde9e4d64f7ccc2205a2437e +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%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%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%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%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%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-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-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%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%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%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%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%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%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%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%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%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%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%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%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%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%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-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-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.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-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-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-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-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-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-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-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-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-blocksutil%2F@v%2Fv0.0.1.mod 90 BLAKE2B 5f055caed5fd1babdfef6839e17ac53ef29a39369f6ad7910889d62f7476d0465e0ffde9a8e24d1921622c5fd4e84120f6ff0cd7cf3ae4e61ea5a46fe474051e SHA512 e147cec13fdc70ae540336090c0dc95fa3cfc7c88ba2feb0007dd1e8e525e152f5f3e5109c9db3dbc27fe86ae72a9243ea7e7052ac26f52be5a6410e53cc982b +DIST github.com%2Fipfs%2Fgo-ipfs-blocksutil%2F@v%2Fv0.0.1.zip 5917 BLAKE2B 73937eceb9957c17f064283f83df274a1f6ce7ba37580c48dde78583cceb9e873acf671be54f6a959c5faac35026b06abb3819d4ab7f7a17e34cb4c5b184a106 SHA512 b14c306cab0a71aea1dd87d7c47378ad6aeafd4e34f277bc596681c8bccd168f0d08d5920cbf3d579e00f85ec4d38360dac806e6aaf4dc9c11356c8a6e5f4a1c +DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.mod 270 BLAKE2B b2263f6189b6b56f91f0270badd26ad9ef8aea225bb5d0312cfdd3a5e9d07da898d6a1ae54dcb31d92cff61bbf8cd67aa3abc525ba8f94ac3b616a2abbb62379 SHA512 c497b564de8aa700f3b81dcc4c5682d4d1aca8cb95b631ede4f82699b6fe52566f7f4a243cfa16b38c7a33ffc5f6e8b0d92d241a5352bba16b0434b231ba2d35 +DIST github.com%2Fipfs%2Fgo-ipfs-chunker%2F@v%2Fv0.0.1.zip 12272 BLAKE2B 89eadb7fddcdb3467934bcf49e864f2f5fcc1661e68a796ac8334ff86990ab882fdf1ca84d0e997c2be18e7b9cac37b0c434cfd6f29722e4e0c410bd5db8c00e SHA512 462d3dce73e3575d32cf419c102645a6cb3dd06bfb32f8df7c7dc4a8a737ade5d02852f16e03abc14f97adcde52d0d96058eaa410eeca0dbd9124a7adca5aab9 +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-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-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 +DIST github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.mod 162 BLAKE2B 7f72ea52bb48b2dd9e7c72d235b0976897da8d959d5aca446a8d37d92308ee3590b46589895d0d4775c07c1a6a1a8e3661f112fde5ad91cfe2e078a87ecc10b3 SHA512 9182f87ca28cfca32ff5aa2e776cb503aff01cc6bdf0c63e4637836298c23a23b831abb3f7fd40f3212840874e5dbeafc95aae7295b21a93f4ad969f0d2ae06b +DIST github.com%2Fipfs%2Fgo-ipfs-ds-help%2F@v%2Fv0.0.1.zip 6780 BLAKE2B a05dedfc93976141ef060bc81ebcc77555dd35bce91488232f66b4a388eb7c234de28163b36123582ccc11e93f62e7f9e32471eca0c3131a2ff890887c3ca496 SHA512 96b6a5e8977e63fe548423d6f6dadff239362e8bcc814f61df11b478ee4efef2c941ded9189d1f96c417f32493c92367cbe5dbda14f4913e01dd8a0b25bd2c23 +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.mod 134 BLAKE2B ed35da45f5a552d26fd9a78119d538994f0e563f56d83aae6eeec2076aa503bd003e677b33971e64d7dc5e2f190470e33760c068870b7ee6d4952f4a261cb6e7 SHA512 c742dd6a6f077f39f44057b708133c12819acc6968cd8c555a4ade18417f4f525329cbee8bfac1dc6cb8f8fb5ddb6fa52ca2a208d47ddc9aee48ef309f1c4a72 +DIST github.com%2Fipfs%2Fgo-ipfs-exchange-interface%2F@v%2Fv0.0.1.zip 5712 BLAKE2B 27aed07bea15c49d5f7a0ecccfa92156d350a1d9776dcd819502f43dca54cf42a005488a37ebd13ba274b15fe9fb153a02536d8b83d17a2a4f88f946bb2baa0f SHA512 df6aebd00b29e6748d58ee8650ea98283fc34f774ec44d57d3e4125b8692b4b9a2104754fd9753c8034bdea52d9a7b7bb354a72432874de82b873e03981c2fea +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-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-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-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-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-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-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-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-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-log%2F@v%2Fv0.0.1.mod 345 BLAKE2B 5114c21b10163a82815a747a5e06ccb49e872ff66ec824fb3103a95997f9524cfdfed3355c7aea5f1233ca305ac455c09bc2323a074c1550b6fcb705cd779d02 SHA512 26ceee384c2a1edf4d4611a30d7e7fff22039dec08e33de28ccdacc89243746202eca4523c5350f87586c126c43e5fdf9a677d5f73a7e8fb6746f82d8ecb2bcc +DIST github.com%2Fipfs%2Fgo-log%2F@v%2Fv0.0.1.zip 42796 BLAKE2B 7068f99ce6b082312c146366ee8ae77a9de0e9cb1c96d7d24c3c44132801687bea4980c7fe44dee0f4ecad9f8cafabe0bc4dfe0acfadd09c9e4307d16fe040f2 SHA512 4ca424215ff6f7fe552bc52808753380b56498b185101aa37bf76a2b485926078b64d42077ee78abea6d717784edd7417c3b40399861fb0ad98ac762b2db69db +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-metrics-interface%2F@v%2Fv0.0.1.mod 44 BLAKE2B 80b79e8658486ddeb981cdddf9768b5ce9698d45d1c27c88f1beb3dd79a02ca978b5d0e0d30157363462d7cc4036998d49320bcbc8cea1dab57c71088bc1355c SHA512 5ad88c260792c7814e17b5f60d7a07ffdff7dd321e56d069f69d58c9844363f9a658a903e074f06ef0779522c76160e2bdb4698177d77ca5cbc98ac5cf3c5477 +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-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-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-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-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%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 +DIST github.com%2Fjackpal%2Fgo-nat-pmp%2F@v%2Fv1.0.1.zip 6125 BLAKE2B 08cf6039744d2b74891c4e20129921207d78abe85c90e6ace259eebb9150c587a6aaf72885b17f0b1a9267cb7b2e35a30280c4f35fa4c45b73527b2d6ef8d4d9 SHA512 683e8a701acc56cbcd48595be55989bba93d9ab2c13c981ded662efe88a54bf775313181ef9c32d25be418bd2ec1275f39e92a24f41d788455a4e9cc93fc17ad +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-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 +DIST github.com%2Fjbenet%2Fgo-temp-err-catcher%2F@v%2Fv0.0.0-20150120210811-aac704a3f4f2.zip 6283 BLAKE2B 8befc80be68b67da3c7da266f834a5480f1e94214efbaf53623e567d2a8bb12619a7de65590a683147394e0a8e0e9174776d1eaebc514ab0ef2d1c8c30115a30 SHA512 379c7769655af403e8a618a5b1f4e1f23fa491e6fc7fbfc1ce92918fa44bb65a599e213bfe5bf65b842b67c15f834a3bad5f828b2c0ac8f07bf7c49f78313dd1 +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%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%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%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%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%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod 143 BLAKE2B 128f8934f81d0e497e1258ec65129fe5d8831b66058669a5aef3fdb2fbe5f6d8ab30bfe97a1de7befadd34aafd55d6d15bb787e8948fb7718761392817203874 SHA512 c5e546822036a7114a29454e28290f8e1082392a47a101fb1d370e0969fc2c83186b4487473f903dd638abb8a763ce3180dc87993906895a2df33db7d8bc4790 +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%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%2Fpty%2F@v%2Fv1.1.1.mod 25 BLAKE2B 63db8520df2f699bca5a7ccecc44ee04973307d86099cfe66ded30e2ca1bdd76fc3db48cfca0138673c20c6f94061caf219f018b21b9d67231fe959eef338596 SHA512 967fcdce835c12afbf3b12bb204a256f32d46a3da535e2a7250159f62781a163ee107dd2a4fa20743b76bbf52b97e627e11e895c8d5ef73aede37d6a89e326eb +DIST github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod 64 BLAKE2B 475c51201a379df2cc4ff8c5681b6a7a1524f60d0b8fd0853fef569dea754efabf3425cd4b84e8427db8a6cf3e9b1141d5050d48d5d429cc1ce82162aa70050c SHA512 11d2502a7d241a0edf4e67bcb651a890a12f49d00f8b944cc9eb8f6e9cf5fbb2b2827e696021649bc795ffa275e95ee700e4a1706e03e88fa9ae079f5b9f48ce +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-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-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-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.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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%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%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%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%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-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%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 +DIST github.com%2Fmgutz%2Fansi%2F@v%2Fv0.0.0-20170206155736-9520e82c474b.zip 7444 BLAKE2B aa8d4a83365fb9de2c184015be855c1bb9a82772fc154390a13cf95bf5a755beb3544111e90e02121e5251729bbf0fe072de7b6f8f8ca6eccb2585430e88a839 SHA512 fcd99a4e9294362485d8f1f66283416c53b3079bbfdf3e9d1849fc1a9ebb61970563a9fe479f84fc9037f1fa7b820291026cf4072a3c81df2555876d02d99eb7 +DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.12.mod 28 BLAKE2B 7846fb7a9c146e4b4cd0db250d3a84bca13c7c3b8292ba71215a041006c8ea39a36b88dac7749a9bba96dc463b499633591f6f19d43369067b0f4f46594b8ddc SHA512 4ce4d3df63fbdbfe3505816e81dc7e806554d79cfe0254ce8e0228bc16eafc014c98475c24f4a6e0c6efb6fa16e891e2e47c43c9ea10ce20a95dc69f686f6361 +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.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.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%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%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.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%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-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-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-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-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-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-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.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-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%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%2Foklog%2Fulid%2F@v%2Fv1.3.1.mod 29 BLAKE2B f74d75a495f683f4e9047201721611229ecddc37ed01b5d4b5d81a06220a6385f06d0f99e514bf19cc2030fbdba6de3a08fd38b750e6651a822b10bf69c45327 SHA512 b426d975637bd2b4dddc10d7c88b70f8b946201f311859f22520d53ae0a2d9911ab358460c089771f7900d7a8740bbc0c6d3814ab8f955108fc31b7b602ab5cf +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.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%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%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 +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%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_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%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%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%2Ftsdb%2F@v%2Fv0.7.1.mod 1346 BLAKE2B a46e52b7acf7ff0783cc3c18a1320f66e02ab9c6879434dccc9fe182b4c7fe4594a0be504c45ee5958e1a42c781870ae754648f5bb5ef4cd45c42d78ba189ca7 SHA512 7463ee6ed6735cf101502b6c0128c75960c55d6f9e42f37531e65afc02fb35b62d882a72f95c2fd76f3d0e253e9e70a9a2df2ddf782f53c4138135b370b69d0a +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%2Frussross%2Fblackfriday%2F@v%2Fv1.5.2.mod 39 BLAKE2B 6d577028361a97eeb7070517fb59bc801499e5b93cb97da563e41b91ab1443583510a259283bd01777ebd435934f27212c15ed32cb5422d6d711697a7c714579 SHA512 d9e6796c9e0a1b870a32c313e22555a090e85919007d50ed4dcbcd3ccbfb90a3ab98e9f3e2d41bd32196e3d5fd57c62e6d47aa65e79efd3d05b7d73ae9bfda7a +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%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%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%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%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 +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod 35 BLAKE2B 0357260904c9ba41892132c7e07d2add9b10ce4a09e8db4966219d1f515f917581e2afa0987094c90759634bc2aeb66e758074e023ff331a8337f5090c0102f6 SHA512 5b7ce867497852e4918b8cde5f75ecf2f24b9c95ad112478ac132322e904243f1cea3d16f5731646efb669256dbefc129ac70a499c8b1d25403a14c7e4fad10b +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod 154 BLAKE2B 60cd7801e7cd33746305cd636b048b25a86270ec3b29a21c3c078c7e95b769bce7e80c2c7c5474113786bd788c7f88f3719e34f02141038e0d161b36e32f39b9 SHA512 bb808fad059f5abd0171e4bdc724411eff2c7e8d303a4ffb3608a00e21bb3cfafe9e83b4b4e9bccd42c9a4331f67ddc6043e3dd5eaa9a122c86626eed43a8383 +DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.zip 83537 BLAKE2B 6d6de57cc5e393aaef1cdc7e2140143eb7fa324bb2ea3b9f63bfe1e8652c02d24eb441fc3b435c6b287f165c5540a008a7c21ab4070d8bc77c77e6fb608f7e46 SHA512 c5cd06f825bbfdcf2ae58ea21edbeea03c110de3fc20fcf69db07aae26c9ae67a8ac57a9ffedec9b3b4f1f3b016089935049d75d92a9a03e45ce6345b4c9c611 +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%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.mod 49 BLAKE2B 6414991cd5e3f6aba6690dcd897c3956e8862e455e3daa295b2a7d95e6ca669b11b2976e9e30b718bd7edf0d9def37017c6d71135824a5c49aa0ddb5739254cd SHA512 a4fec2010563245ba213a0888226e65b1ef2c916b8f423d3b5e0c3fb1c148c0238f1d946f718062cb9e180873b0b38da940d3db9f6ea3e254f9fed0e9b9888dd +DIST github.com%2Ftexttheater%2Fgolang-levenshtein%2F@v%2Fv0.0.0-20180516184445-d188e65d659e.zip 5805 BLAKE2B 582f3ef751432b3b601251887bad9961154b0bf32670e8c096287629a6d6b99310655e8e475033aba82fcc44b4160b10dbaae2752ac42184f050eb950d5ba74e SHA512 505f8b938f0bbe663950a11046eef233f1056014638ee25332042f6444275083157735136508b5fbae529d0e400fc6a83b2748626b33995e449ccb5343daf1f8 +DIST github.com%2Fugorji%2Fgo%2Fcodec%2F@v%2Fv0.0.0-20181204163529-d75b2dcb6bc8.mod 35 BLAKE2B 159fcdee33f554db7f7bfc834a6478865e93a6258876dbb3ae755eb474786149f109ad8823484f1d72a8fe4012f24041c994e4d19ce7e684a84f85025803ffc1 SHA512 633ff61cb8fc7260fc5bd11d9bf59e9a758a3db457a9780701686b9b942b6aaabf102c7342f97d2beeeed247507f383253bc396b26581f7726538149ea4203c0 +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%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%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 +DIST github.com%2Fwhyrusleeping%2Fgo-keyspace%2F@v%2Fv0.0.0-20160322163242-5b898ac5add1.zip 5629 BLAKE2B 3b52409bba3b81c2c98b832ce6dc7f23a50f65997811bc665a40b6eaa7c9b43c5bc7b8ef255a5a17b614d7847933d2fcb00ec4a93782695223ef0a483e556f41 SHA512 684614fd38e2733f1e4456e04d9abdceefef35aeef089fc4538d56c96354dc917e7f713a7032328ba01b48a50627163299c543c6e0e4aa30f8f9696d1571a085 +DIST github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.mod 43 BLAKE2B 3a73fa0aed38077bd4bd50c2930364c1245597a7c2444b39eb7f0549fd3bcc6e019b5cdd6c38f38ea42c5933190ac04d505d62e9747e78a046e0a660f2d6ee39 SHA512 d8d023451e8f883a0865c17337e858e2be292096ff0a379a08fed1b773d2a22d2733f54fe72a32cc95765198925a95f81241800451e70bc2521cd4a47e8d4b49 +DIST github.com%2Fwhyrusleeping%2Fgo-logging%2F@v%2Fv0.0.0-20170515211332-0457bb6b88fc.zip 43473 BLAKE2B d33be9e17f592696f66bddcceb08e412d83cce0fcc49646a1459cae6966f01aa093c30c03fe90da3e2727f8320d840c9f6569be788366e3bc47fc81c8c3908d7 SHA512 a913dae339fd87b413bd8eecb38d4aff02a0714ea0685400bcbedae8a71759db55f8b1a8d23cef765fa3f36fb1092360b89c44b6f869a09de3075c1c4e19ed6c +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%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.mod 49 BLAKE2B 2182f1e71111a9903588e6ead7b525b24628b73fab93e272db86f5a2040d66351202380dbff144a54d593f60e8f96edad9e81ffcc167638960ff86b8e2097d78 SHA512 c857a20a88d06d2695bf15467e27aca89d1df76b1d6521139d0506fe77f306e1fddf21f47cf3daf461ab9af3459bd0d17f8cce495ea3e69dc846848f81c8953b +DIST github.com%2Fwhyrusleeping%2Fmultiaddr-filter%2F@v%2Fv0.0.0-20160516205228-e903e4adabd7.zip 4435 BLAKE2B f83f665de6150eaa23ce363d815453468b6711eca401c9bf66cee6d819b18b7de31520a4cb2d6ff44e9c2617045c95a91aeadb2a0293bfdc33a2547160485e69 SHA512 28145b76f87719f8321c0c0df6562f8b59bab8dddd7e9c1a201320a0a543bafd92ea1bb24b8cf97ea4ec56202ac6d132ce2a62b59e4805ebee11eb3aed03a584 +DIST github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.mod 42 BLAKE2B b4c783cd4ddeb16679d0f1644f8968e4ddd2893cd2aa4044f491e186365add120076354f691a19729a2aae84a36aeaf43e132c12bee709733ac6106627d8d13c SHA512 7027e33b034a39b42c9732d5dc1003d160436d10b2b33a9237d8052d5ac4eaef812b5af5b78c6dc19f1b5bdfc5dc478af3e1d0a408e0480814fb4bf5321d490f +DIST github.com%2Fwhyrusleeping%2Ftar-utils%2F@v%2Fv0.0.0-20180509141711-8c6c8ba81d5c.zip 5906 BLAKE2B da39078e2765f37826342308f77ad3a109bf80d2b82ceb1d87af58b2636b5d485c79c6832bcabde9e88e45ca228d2fa19dcd45dc180720cee058259a37ab446a SHA512 9afa60d0733bd6164e85161efec818950e540a3a7b81028b74b0d8088dc95e9d5ba84ffcf13a8709c2eb350ef5bb4e7f15705ef810942812cdd04e5bab54ab8a +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%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.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.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%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%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%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%2Fmultierr%2F@v%2Fv1.1.0.mod 28 BLAKE2B 4f0c4b42b00093024ef494b1b0a07896ec41eb140fb953affc085921181eab44bab0baa38ab559b9e36e022acf5cb9ebad5ddcc7303f33982d9012e9e150cb03 SHA512 7939dfe977dd42ac3ca8b91824a73046222ac9bed4f9cbcf0f2d332727b92a094540a56dfb19d095df6d5917b30cec86a6e9e1b082581049fb05bb7bb10106a4 +DIST go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.zip 14488 BLAKE2B 3bb8df1a459b2cf1dd63ab200f06a9f41f968f828b815b70bff899972a4c913656dbd3856dc6f4626836175d32b63c439e32a5aeb6a034f4733e2d09ef53f7f9 SHA512 d5fff733045694509ef1100fb8701526002b0841a11b5e1acbdea7e186c80738f651bd973c5eba2db5d2b8fff1b3057ea5d7d0e46645268b2f3619656238fdf4 +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 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 +DIST golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20181203042331-505ab145d0a9.mod 27 BLAKE2B f91145aab2cee00c3567772e97f6162b9681d6cbcbe67a1b5b2f59b8f912572f705a0d1280fdced086d92efd10c50ecede26d1cfa3d5419217e5eef95097b4b1 SHA512 a88da5b983ff482a4e8b512761eeee466a8b0664b42da54ec9772c2eb3cb1bc5b7545045e283bac82552336802d8bc8efe137ba16f3530228b529366744a33e6 +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-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-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-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-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%2Fexp%2F@v%2Fv0.0.0-20190121172915-509febef88a4.mod 24 BLAKE2B 9615629f1bf7d58419f5b73842e19f6be3a8c8cefb217364917f1aaf68aec00de41d96700378b048d6cc385e154ed6d3db59256b4a00e9165bac7951cd0bcbab SHA512 9131017b8ab0c2362b74e0c010daeb849689025aa31cb464dc379b0e34d0fcdb66749329b111041127997440bac052249dab522ab27239858405c056e3ac5dbf +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%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 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181011144130-49bb7cea24b1.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod 24 BLAKE2B dad51d0aff48ef669f448f7b41bcdb153dbdc48863761ba1cac6aa3e3eaeec838e22733e6c61796b22bcc95d9e0a274085676bf191a8072717a398a067fe9e62 SHA512 d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181201002055-351d144fa1fc.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-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-20190404232315-eb5bcb51f2a3.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-20190620200207-3b0461eec859.mod 181 BLAKE2B 95ef87cbad118eb6bfc963893e37a555067b7fcf70e52cf4261de029eb46b739b12f50530a46fb91ec9119febcf5033176324a55064f589c17b240a23a15bb4a SHA512 2794c616072f01ca3324107aad2ed97e05f6e6c1e9811a1749073376a89c9ce57a910cfdc8dd6bdc2583d133bb53605c7a68917eaa221ec5c1c8319e5dfbb236 +DIST golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.zip 1421786 BLAKE2B 15782d84b4fd3576df5ae0c6540880b3a87f5ed47d66527ad88bbdd5e96cd1b0fb321b896b686de67d4518d3c6eecd008f1e49f48fa29df962a4d01f6e08653f SHA512 e79353b8f6b6866a14236eed278aae32ccb02eed040a557dda219cd96eecdc0174a8ac29a5509a33f6f0f9e5aa16f7d1c6861167d9798a5cb1eb01aabcee56f2 +DIST golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod 27 BLAKE2B 078fc99b981406f4ee3f8da94c83954e80619e76ea63cf6323f27614bbcb870bb650eb5ffaac865a374f3ed0ef0619d97e11f05924c92e395e72cb73f28630e6 SHA512 53431e560b5d6a9b50f44997ef6755f71741ccca155767dd954da41f11f53a3e8d01d7e01a2bb9de1fdd551dd2e734cb65e5641cf5de5c9a8a6a25a4894336f5 +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%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-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 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190219092855-153ac476189d.mod 24 BLAKE2B 64a70c4594f5d3c37d962c1ed07630fba8abeaf534242f8f1509af271684499252af9a2320d5bac8e44064dba344b807535e4e9dd085fc0fb47bd9304120601a SHA512 ffe50fccf7f1d200f2ebc805b190e3f10c5a3184458a38f4590e520d7ce115e1520fbabe56651bbdc2e08da4a8db5ac86d0e88728efde3ab26c64ab4e0cd604c +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-20190412213103-97732733099d.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-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%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.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%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-20180917221912-90fa682c2a6e.mod 26 BLAKE2B 2a44c2cc034af3473d9a1d4e1c23b0f4542333853bfc0ecbfcf9eacacbb3593b449fcfc94d23f49ccc16e5a844bc72a3462a3e08a5c26194106a64d1f2732e0a SHA512 3c166b18c0ce47a47e95da9eeede63879a92b0205bd4589d554f7bae89699be0efa83e1f5bba8e50f47714ea23e759b07f4543fe06301995d39373da2db16fc0 +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%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%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.mod 37 BLAKE2B 7449be81e1998a6439070de1a0ddf5bfd1e4971c90c2e358590a9c1c41128bfc1daa42a9bbc3709506df2442ec8420e6354343a095c837be46335c180083f28a SHA512 659d18a7a3a1be45ff6dc9e7475276b82ee7f11c47d39b0c237d7f872836a1dbdfff0902f21d6cd8093663997865da92e3e5a4acf1ad6129f972dc5e667b4f05 +DIST golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191204190536-9bdfabe68543.zip 22282 BLAKE2B 68df6b35d9043f23df13432b80074544f46833467294955ae5706713055d0cc9ababda892853c14e99c80a3571fd4a807a019a098fdd2ca695ba90c577ead5c4 SHA512 c72b8b73f89624889a2874c1b2445cb82f0e545fccf6a7761a278f3f659eb19f5f1c8585641b8f89f2bcfc3817ad2c0e267751cfeeab949e287e43af5df57e28 +DIST google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod 35 BLAKE2B 24fb6ba95138448c45da7f1ecc4c87391485006b54b8e7ff96ec582c2659f9ea77574b4d5fef2442eff9e5564f3c3263ed8e6963c5d21cde8772a7143d82f3ed SHA512 6644c398d639794470e49cad4402d17765422934915b5a13e13e1f84d8890cc8fad9e6ea8c580d114aefea70d894242e05ce3a432ee596f772b98b6b73069fe2 +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%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-20190307195333-5fe7a883aa19.mod 450 BLAKE2B bf0efd5f0ff915b9f59fa81611892e70644a4b14fefd15190d0ff68043f7809f51d53766dc50fc0eb9372df3e6590d3fbcf51aec5e9b0c18027e156ce53b8df1 SHA512 37a99611220df08ac5f15ed6f718f37a35523f5cef392b7b7da86b0eaf05e4fa5e52aceb42a6b6ddf6924b1f7cc151876d2e532c83dd2edbcca7c41b9191c427 +DIST google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod 833 BLAKE2B 71052eaeaf40883bff624eecce8fd6f5669fdea9355e6ae0db9c86c841a62f7176d5ab58838d1645f59b9cb4ad4b636048aa3e9f1d7db521104b8f09dc535bc7 SHA512 38c4f75a0121cecd31b2628da3c3d77aeeb9b2c1974eef2d2d2bb7a3eb507d330debb7f14a724c8910174439b38ab54458096aaf665ea4af87a83f866ca0452e +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 +DIST gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.mod 31 BLAKE2B 1a4baffd98c62173795d54bc25845b710fe8391726fc5d67cd6025131f783a3d94cd474299d72f5f077dc529203dcdf7a069268dc30fa39d9b3f7fab566df45b SHA512 b8685a6e649de49671d079375ba2132a467bb015a29a7182744caa9464f5e7ac72a952b10faf04e5b6d745ec955b565dc03cbc4ca9849d23ebd5303a12f18401 +DIST gopkg.in%2Fcheggaaa%2Fpb.v1%2F@v%2Fv1.0.28.zip 18118 BLAKE2B 554da95a16c0993b4cf83b7cfa01a09f8a74c5d6ab80b3732bc066e82fa73abb8fc49f92f6d73acbf7296346f335f202de0d10604ed3e42b4d32d8b4169a0718 SHA512 6575eb0dea6524b8e5072a7eeb8d57f57ea2d6c6354d137b28befe9a85cc13bddf061fbe6f0da7d418bcb4ad293b38a3664424096930eadf5e16c4554cdd450f +DIST gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod 28 BLAKE2B ee2514c386f6cb3ff4a9b829d903e57372ce765aeab91fb2f29e95358e3472e0612a00f2982f53790159738e416819e368afa03e44bf8f6b43511347bc6d6995 SHA512 7cf7d1933039974dd4fa16febc52cc118bcd0e35c329d4c563c7f411b8000d9e17be5bca9a60d94f5309cbef97b3d176110704ebfbc3c114572cbadf63a55a34 +DIST gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.zip 40894 BLAKE2B 5edf237401ae1a48c425ffec6fc67146850d7137c7026260e894656f6c832066321d930151bdd7624489e1f768fc04b47b0fd3dac3b2171bd092dff344de16a7 SHA512 f99afc545324e49ef1de05fd4c8dde0dae37094e2fb1b81de8d8c9b8ba9b28f39f9b5ab715c728e4a0375544a48d49c2dbd719fc178d222e0b914a425d9aeb63 +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 honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce diff --git a/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild b/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild index 4b2936e8a480..1ccf88d5368c 100644 --- a/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild +++ b/net-p2p/go-ipfs/go-ipfs-0.4.23.ebuild @@ -2,14 +2,813 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 - -inherit bash-completion-r1 go-module golang-build systemd +inherit bash-completion-r1 go-module systemd DESCRIPTION="Main implementation of IPFS" HOMEPAGE="https://ipfs.io/" -SRC_URI="https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs-source.tar.gz -> ${P}.tar.gz - https://raw.githubusercontent.com/ipfs/go-ipfs/v${PV}/misc/completion/ipfs-completion.bash -> ${P}.bash" -EGO_PN="github.com/ipfs/go-ipfs" + +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" @@ -22,30 +821,27 @@ RDEPEND=" sys-fs/fuse:0 " -S="${WORKDIR}" - DOCS=(CHANGELOG.md CONTRIBUTING.md README.md docs/) +S="${WORKDIR}" + src_compile() { - local mygoargs=( - -v - -work - -x + local mygoargs + mygoargs=( -tags release ) - - go build "${mygoargs[@]}" -o ipfs ${EGO_PN}/cmd/ipfs || die - go build "${mygoargs[@]}" -o ipfswatch ${EGO_PN}/cmd/ipfswatch || die + go build "${mygoargs[@]}" -o ipfs ./cmd/ipfs || die + go build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch || die } src_test() { - go test ${EGO_PN}/cmd/ipfs/... ${EGO_PN}/cmd/ipfswatch/... || die + 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" @@ -54,11 +850,7 @@ src_install() { newinitd "${FILESDIR}/ipfs.init" ipfs newconfd "${FILESDIR}/ipfs.confd" ipfs - newbashcomp "${DISTDIR}/${P}.bash" "ipfs" keepdir /var/log/ipfs -} - -pkg_preinst() { fowners -R ipfs:ipfs /var/log/ipfs } diff --git a/net-print/Manifest.gz b/net-print/Manifest.gz index 538c1f39300d..2401c4feed61 100644 Binary files a/net-print/Manifest.gz and b/net-print/Manifest.gz differ diff --git a/net-print/cups-filters/Manifest b/net-print/cups-filters/Manifest index 7f30a960d0ab..589863db56fe 100644 --- a/net-print/cups-filters/Manifest +++ b/net-print/cups-filters/Manifest @@ -2,3 +2,4 @@ DIST cups-filters-1.25.11.tar.xz 1482792 BLAKE2B 67801904dbe025933d1209817e23ff7 DIST cups-filters-1.25.13.tar.xz 1485860 BLAKE2B 03fbbbefdd36e8f619fabf17e6e13d051f48f68f87260747a181f6976ff88728d7d01b646227cd5f054e0321f6fe0e64e4c6b1bdba631d9d703304ad98a625eb SHA512 4b5ef647870235436276db68f3ef1879b578807338a025100a1d43115a7330a8f506be631df9c43edb2f1ec15f9a42f15f7cdc725bb5d39612b37bae04631611 DIST cups-filters-1.26.2.tar.xz 1490192 BLAKE2B 6bc5033c648e42a4590a941fd089c3bf3a901a36e26f12b3cdc892ea41943071903b2df2ef5730b7948270f4f59419083c9423af9482e032958360144fb04e9b SHA512 59a5eaba00e0f384f2b1498e58ea3d7272e42923a69eaa0c107ac103dc539c9bf14a94b7a91a73e7185d8a347b4ac7f4a7a655b1ffc373983da807c582e10264 DIST cups-filters-1.27.1.tar.xz 1492256 BLAKE2B 30e4915bfc9a4f308defdcf13acc246330499008648edbce4df3efcf29fc960ac2c9a868ebe7cafcffb16b07763a2235ddd3d29a849ea18892b8da1d0f167775 SHA512 3fde635735138fa5ef511466b07f396f96860efcc51d9a01f5b95e86fc71ef48b9d17ba1bbe2eeb29585c3afc8bf26370b8f07df76a3adea2335be90e3fdb91b +DIST cups-filters-1.27.2.tar.xz 1493220 BLAKE2B 4c767d114e59bc94a976056cbb5456464464a4226072b4448bc0de63cfb06b28023f4ef3857f6eee32bb2c1b13f9abc2b576557c6bb6328191af781ba3d680a6 SHA512 c0e1456dd3f512ae2215e566f853e47b66de46d0d1301fc5a6f3674ac7d1ddb03c3bb236b0419b20168742076381c58581cc3e582cf7abf76139367d549a6c46 diff --git a/net-print/cups-filters/cups-filters-1.27.2.ebuild b/net-print/cups-filters/cups-filters-1.27.2.ebuild new file mode 100644 index 000000000000..6cb600e6a3ad --- /dev/null +++ b/net-print/cups-filters/cups-filters-1.27.2.ebuild @@ -0,0 +1,138 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +GENTOO_DEPEND_ON_PERL=no + +inherit perl-module systemd flag-o-matic + +if [[ "${PV}" == "9999" ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/OpenPrinting/cups-filters.git" +else + SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~m68k-mint" +fi +DESCRIPTION="Cups filters" +HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters" + +LICENSE="MIT GPL-2" +SLOT="0" +IUSE="dbus +foomatic jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf" + +RESTRICT="!test? ( test )" + +RDEPEND=" + >=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils] + >=app-text/qpdf-8.3.0:= + dev-libs/glib:2 + media-libs/fontconfig + media-libs/freetype:2 + media-libs/lcms:2 + >=net-print/cups-1.7.3 + !<=net-print/cups-1.5.9999 + sys-devel/bc + sys-libs/zlib + dbus? ( sys-apps/dbus ) + foomatic? ( !net-print/foomatic-filters ) + jpeg? ( virtual/jpeg:0 ) + ldap? ( net-nds/openldap ) + pdf? ( app-text/mupdf ) + perl? ( dev-lang/perl:= ) + png? ( media-libs/libpng:0= ) + postscript? ( >=app-text/ghostscript-gpl-9.09[cups] ) + tiff? ( media-libs/tiff:0 ) + zeroconf? ( net-dns/avahi[dbus] ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/gdbus-codegen + >=sys-devel/gettext-0.18.3 + virtual/pkgconfig + test? ( media-fonts/dejavu ) +" + +src_prepare() { + default + [[ "${PV}" == "9999" ]] && eautoreconf + + # Bug #626800 + append-cxxflags -std=c++11 +} + +src_configure() { + local myeconfargs=( + --enable-imagefilters + --localstatedir="${EPREFIX}"/var + --with-browseremoteprotocols=DNSSD,CUPS + --with-cups-rundir="${EPREFIX}"/run/cups + --with-fontdir="fonts/conf.avail" + --with-pdftops=pdftops + --with-rcdir=no + --without-php + $(use_enable dbus) + $(use_enable foomatic) + $(use_enable ldap) + $(use_enable pclm) + $(use_enable pdf mutool) + $(use_enable postscript ghostscript) + $(use_enable static-libs static) + $(use_enable zeroconf avahi) + $(use_with jpeg) + $(use_with png) + $(use_with tiff) + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + default + + if use perl; then + pushd "${S}/scripting/perl" > /dev/null + perl-module_src_configure + perl-module_src_compile + popd > /dev/null + fi +} + +src_install() { + default + + if use perl; then + pushd "${S}/scripting/perl" > /dev/null + perl-module_src_install + perl_delete_localpod + popd > /dev/null + fi + + if use postscript; then + # workaround: some printer drivers still require pstoraster and pstopxl, bug #383831 + dosym gstoraster /usr/libexec/cups/filter/pstoraster + dosym gstopxl /usr/libexec/cups/filter/pstopxl + fi + + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die + + cp "${FILESDIR}"/cups-browsed.init.d-r1 "${T}"/cups-browsed || die + + if ! use zeroconf ; then + sed -i -e 's:need cupsd avahi-daemon:need cupsd:g' "${T}"/cups-browsed || die + sed -i -e 's:cups\.service avahi-daemon\.service:cups.service:g' "${S}"/utils/cups-browsed.service || die + fi + + doinitd "${T}"/cups-browsed + systemd_dounit "${S}/utils/cups-browsed.service" +} + +src_test() { + emake check +} + +pkg_postinst() { + if ! use foomatic ; then + ewarn "You are disabling the foomatic code in cups-filters. Please do that ONLY if absolutely." + ewarn "necessary. net-print/foomatic-filters as replacement is deprecated and unmaintained." + fi +} diff --git a/net-print/cups-filters/cups-filters-9999.ebuild b/net-print/cups-filters/cups-filters-9999.ebuild index cc938610ec4f..6cb600e6a3ad 100644 --- a/net-print/cups-filters/cups-filters-9999.ebuild +++ b/net-print/cups-filters/cups-filters-9999.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=7 @@ -19,7 +19,7 @@ HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters" LICENSE="MIT GPL-2" SLOT="0" -IUSE="dbus +foomatic ipp_autosetup jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf" +IUSE="dbus +foomatic jpeg ldap pclm pdf perl png +postscript static-libs test tiff zeroconf" RESTRICT="!test? ( test )" @@ -73,7 +73,6 @@ src_configure() { --without-php $(use_enable dbus) $(use_enable foomatic) - $(use_enable ipp_autosetup auto-setup-driverless) $(use_enable ldap) $(use_enable pclm) $(use_enable pdf mutool) diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index 2dd55ceadf31..7a0f21715b1b 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest index f2ee0406e9d3..bc68f1b85f93 100644 --- a/net-vpn/tor/Manifest +++ b/net-vpn/tor/Manifest @@ -1,5 +1,8 @@ DIST tor-0.4.1.7.tar.gz 7512661 BLAKE2B 34c1c8e40c6a2a2aeb19e1161b3b32d1683da246c5839c9fc4375471d8e7c46bb1277bcf8fc700898580a6b15d8f401ee61f422ecd7a88c783cffb1157150fc5 SHA512 f6ead1412d23516a16f31e1157b4538071752ae09a421d9dceaa7cf76599c01490f9bfcb8e26f1a75e888359adf6adcd029ca64cf48e3b45b07e2d62482c9541 DIST tor-0.4.1.8.tar.gz 7513612 BLAKE2B bd9e126d04111aa1232107b3de3f59a258754454deba8bbbb7f34f7245b915e336f999dce4544f6e211b29702d28898938f2816a6ae9550884348f6628304461 SHA512 0118012ec723379316d5ee684eb4fdd98f64f538abf6db95071015eb5e0079d155a93cc5c4a9dbeaa7a3f56cfbcc8741fcd0c94c5101aa44fb11000ec27715c1 +DIST tor-0.4.1.9.tar.gz 7516581 BLAKE2B 163d5dbcffd4c86cf64c8b03fac2b3c018908f2409733143592914e8e51ce7228f0f05267602a4815342a7a553201ac9ab0b767a85f7cf165f9d530513914167 SHA512 368b132ea8e064582d174bd6f420b55d8b7e4f29fa026fb4336956d651420c456e4e8dfbcd1e426603d4dce1919a686f459c5cf2571d7e67d6269da8f5a623d6 DIST tor-0.4.2.5.tar.gz 7596836 BLAKE2B 0c7fa5d427f9d0683846c1023a4539ae4042c0d26f1c5afff20037f0681f6ea0dfb735e9c0e9d14bd7dddbfd5a0023064dc6e6cf6e6629402a6a13248129e6c5 SHA512 e63157713caa3590324f652f17c5c5634bab015dcde5c7832eb725351c3a91c1051dd8a95650502703e9c3dd5daefc2867ff3d20530dfec17310bb3dd4bb5b7d DIST tor-0.4.2.6.tar.gz 7600081 BLAKE2B c0ae5972a096e7f442b39d9dcfc5d5f13146243690a10cf6bf96ffed698c0b8bc8b4fe39d13ce40714e8aacf98ca30be6c6e8e75dc38d7799642247122a46152 SHA512 0e757cd6f48ca3ed5737978e8f63f1f267d2223479bfc7a431b71a6912040a4a9bc63cc97a73356ff998e03123b0a6a4519486c41359d1ef1f0fe30aa1fa168f +DIST tor-0.4.2.7.tar.gz 7604875 BLAKE2B d24f9bd5a3467c909cf95e7e06873817df1a11a86f002450058df7d2aa637b25441128ec57951e22681fdd9b0ef95808306d76b6485e060365f4fbf10e263ac8 SHA512 a23c7eec8f399372227433c62c97278563a63e4cf03e475307915d395fb0b7efc461b4c8a077149e7b6df955ec26d52cd833dfe37fb650d23b3fcb1a4163d64d DIST tor-0.4.3.2-alpha.tar.gz 7725094 BLAKE2B f9b5e73d6be7d79c9115f76d341943f55055ac33cdb8820246dce3ed0ec4df215063ec8b6a9ca8b023a9b6fbf221765e1ea6ff2a3e728716910ca3e5fb9fce6a SHA512 42107e9ad9661fb6a9a20bce1acd7dc40c08b7b71bd48a47fbd0b3bd34cc5f5493b9f59241f09df2a651619fcc8aa73e4e184e8e2989f213d7e1d35e9879b39f +DIST tor-0.4.3.3-alpha.tar.gz 7731305 BLAKE2B da3fb8186a5450b81d8eaa5d991319453d05c8ba829b94abadbd75420b098a77cb173f086bf650751af8e8054f1baa30ebb934ba7a5f8086a4c24cf138ece44a SHA512 77e84397578b6473c3608a6dbf3a76f1f638e7d432c505145bc7c64c9a21a4ab9e8f545133296bb6341a8088cdcd53f031a0ea0cba2c6f30ad248cdf075aaa5b diff --git a/net-vpn/tor/tor-0.4.1.9.ebuild b/net-vpn/tor/tor-0.4.1.9.ebuild new file mode 100644 index 000000000000..e9583457ab79 --- /dev/null +++ b/net-vpn/tor/tor-0.4.1.9.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic readme.gentoo-r1 systemd + +MY_PV="$(ver_rs 4 -)" +MY_PF="${PN}-${MY_PV}" +DESCRIPTION="Anonymizing overlay network for TCP" +HOMEPAGE="http://www.torproject.org/" +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz" +S="${WORKDIR}/${MY_PF}" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +IUSE="caps doc libressl lzma +man scrypt seccomp selinux systemd tor-hardening test zstd" + +DEPEND=" + dev-libs/libevent:=[ssl] + sys-libs/zlib + caps? ( sys-libs/libcap ) + man? ( app-text/asciidoc ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + lzma? ( app-arch/xz-utils ) + scrypt? ( app-crypt/libscrypt ) + seccomp? ( >=sys-libs/libseccomp-2.4.1 ) + systemd? ( sys-apps/systemd ) + zstd? ( app-arch/zstd )" +RDEPEND=" + acct-user/tor + acct-group/tor + ${DEPEND} + selinux? ( sec-policy/selinux-tor )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch + "${FILESDIR}"/${PN}-0.3.3.2-alpha-tor.service.in.patch +) + +DOCS=() + +RESTRICT="!test? ( test )" + +src_configure() { + use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) + export ac_cv_lib_cap_cap_init=$(usex caps) + econf \ + --localstatedir="${EPREFIX}/var" \ + --enable-system-torrc \ + --disable-android \ + --disable-libfuzzer \ + --disable-module-dirauth \ + --enable-pic \ + --disable-rust \ + --disable-restart-debugging \ + --disable-zstd-advanced-apis \ + $(use_enable man asciidoc) \ + $(use_enable lzma) \ + $(use_enable scrypt libscrypt) \ + $(use_enable seccomp) \ + $(use_enable systemd) \ + $(use_enable tor-hardening gcc-hardening) \ + $(use_enable tor-hardening linker-hardening) \ + $(use_enable test unittests) \ + $(use_enable test coverage) \ + $(use_enable zstd) +} + +src_install() { + default + readme.gentoo_create_doc + + newconfd "${FILESDIR}"/tor.confd tor + newinitd "${FILESDIR}"/tor.initd-r9 tor + systemd_dounit contrib/dist/tor.service + + keepdir /var/lib/tor + + fperms 750 /var/lib/tor + fowners tor:tor /var/lib/tor + + insinto /etc/tor/ + newins "${FILESDIR}"/torrc-r2 torrc +} diff --git a/net-vpn/tor/tor-0.4.2.7.ebuild b/net-vpn/tor/tor-0.4.2.7.ebuild new file mode 100644 index 000000000000..fe5c2841080f --- /dev/null +++ b/net-vpn/tor/tor-0.4.2.7.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic readme.gentoo-r1 systemd + +MY_PV="$(ver_rs 4 -)" +MY_PF="${PN}-${MY_PV}" +DESCRIPTION="Anonymizing overlay network for TCP" +HOMEPAGE="http://www.torproject.org/" +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz" +S="${WORKDIR}/${MY_PF}" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +IUSE="caps doc libressl lzma +man scrypt seccomp selinux systemd tor-hardening test zstd" + +DEPEND=" + dev-libs/libevent:=[ssl] + sys-libs/zlib + caps? ( sys-libs/libcap ) + man? ( app-text/asciidoc ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + lzma? ( app-arch/xz-utils ) + scrypt? ( app-crypt/libscrypt ) + seccomp? ( >=sys-libs/libseccomp-2.4.1 ) + systemd? ( sys-apps/systemd ) + zstd? ( app-arch/zstd )" +RDEPEND=" + acct-user/tor + acct-group/tor + ${DEPEND} + selinux? ( sec-policy/selinux-tor )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch + "${FILESDIR}"/${PN}-0.3.3.2-alpha-tor.service.in.patch +) + +DOCS=() + +RESTRICT="!test? ( test )" + +src_configure() { + use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) + export ac_cv_lib_cap_cap_init=$(usex caps) + econf \ + --localstatedir="${EPREFIX}/var" \ + --enable-system-torrc \ + --disable-android \ + --disable-html-manual \ + --disable-libfuzzer \ + --disable-module-dirauth \ + --enable-pic \ + --disable-rust \ + --disable-restart-debugging \ + --disable-zstd-advanced-apis \ + $(use_enable man asciidoc) \ + $(use_enable man manpage) \ + $(use_enable lzma) \ + $(use_enable scrypt libscrypt) \ + $(use_enable seccomp) \ + $(use_enable systemd) \ + $(use_enable tor-hardening gcc-hardening) \ + $(use_enable tor-hardening linker-hardening) \ + $(use_enable test unittests) \ + $(use_enable test coverage) \ + $(use_enable zstd) +} + +src_install() { + default + readme.gentoo_create_doc + + newconfd "${FILESDIR}"/tor.confd tor + newinitd "${FILESDIR}"/tor.initd-r9 tor + systemd_dounit contrib/dist/tor.service + + keepdir /var/lib/tor + + fperms 750 /var/lib/tor + fowners tor:tor /var/lib/tor + + insinto /etc/tor/ + newins "${FILESDIR}"/torrc-r2 torrc +} diff --git a/net-vpn/tor/tor-0.4.3.3_alpha.ebuild b/net-vpn/tor/tor-0.4.3.3_alpha.ebuild new file mode 100644 index 000000000000..36757c1c3d73 --- /dev/null +++ b/net-vpn/tor/tor-0.4.3.3_alpha.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit flag-o-matic readme.gentoo-r1 systemd + +MY_PV="$(ver_rs 4 -)" +MY_PF="${PN}-${MY_PV}" +DESCRIPTION="Anonymizing overlay network for TCP" +HOMEPAGE="http://www.torproject.org/" +SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz + https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz" +S="${WORKDIR}/${MY_PF}" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +IUSE="caps doc libressl lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" + +DEPEND=" + dev-libs/libevent:=[ssl] + sys-libs/zlib + caps? ( sys-libs/libcap ) + man? ( app-text/asciidoc ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + lzma? ( app-arch/xz-utils ) + scrypt? ( app-crypt/libscrypt ) + seccomp? ( >=sys-libs/libseccomp-2.4.1 ) + systemd? ( sys-apps/systemd ) + zstd? ( app-arch/zstd )" +RDEPEND=" + acct-user/tor + acct-group/tor + ${DEPEND} + selinux? ( sec-policy/selinux-tor )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch + "${FILESDIR}"/${PN}-0.3.3.2-alpha-tor.service.in.patch +) + +DOCS=() + +RESTRICT="!test? ( test )" + +src_configure() { + use doc && DOCS+=( README ChangeLog ReleaseNotes doc/HACKING ) + export ac_cv_lib_cap_cap_init=$(usex caps) + econf \ + --localstatedir="${EPREFIX}/var" \ + --enable-system-torrc \ + --disable-android \ + --disable-html-manual \ + --disable-libfuzzer \ + --enable-missing-doc-warnings \ + --disable-module-dirauth \ + --enable-pic \ + --disable-rust \ + --disable-restart-debugging \ + --disable-zstd-advanced-apis \ + $(use_enable man asciidoc) \ + $(use_enable man manpage) \ + $(use_enable lzma) \ + $(use_enable scrypt libscrypt) \ + $(use_enable seccomp) \ + $(use_enable server module-relay) \ + $(use_enable systemd) \ + $(use_enable tor-hardening gcc-hardening) \ + $(use_enable tor-hardening linker-hardening) \ + $(use_enable test unittests) \ + $(use_enable test coverage) \ + $(use_enable zstd) +} + +src_install() { + default + readme.gentoo_create_doc + + newconfd "${FILESDIR}"/tor.confd tor + newinitd "${FILESDIR}"/tor.initd-r9 tor + systemd_dounit contrib/dist/tor.service + + keepdir /var/lib/tor + + fperms 750 /var/lib/tor + fowners tor:tor /var/lib/tor + + insinto /etc/tor/ + newins "${FILESDIR}"/torrc-r2 torrc +} diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index 8c6bf0bf1fdc..1331c47ef76c 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/crda/crda-4.14.ebuild b/net-wireless/crda/crda-4.14.ebuild index f5a34d3b6444..91d2b68c82e1 100644 --- a/net-wireless/crda/crda-4.14.ebuild +++ b/net-wireless/crda/crda-4.14.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/crda.git/snapsho LICENSE="ISC" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~arm64 ia64 ~mips ~ppc ppc64 ~sparc x86" IUSE="gcrypt libressl" RDEPEND="!gcrypt? ( diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 17d4058576bd..f4a1ea550985 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/alpha/package.use.mask b/profiles/arch/alpha/package.use.mask index cac1076ee038..7a3f8e84ac98 100644 --- a/profiles/arch/alpha/package.use.mask +++ b/profiles/arch/alpha/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Matt Turner (2020-03-17) +# Requires an insane (and always growing) number of ruby deps +sys-block/thin-provisioning-tools test + # Thomas Deutschmann (2020-03-15) # Mask USE=dav1d, media-libs/dav1d is not keyworded # Mask USE=libaribb24, media-libs/aribb24 is not keyworded diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 5e3fed2e433c..81668c6e5413 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1897,6 +1897,7 @@ dev-lang/gnat-gpl:vtv - Build support for virtual table verification (a C++ hard dev-lang/go:gccgo - Bootstrap using sys-devel/gcc[go] dev-lang/go:system-bootstrap - Bootstrap using previously installed dev-lang/go dev-lang/icon:iplsrc - install the icon programming library source +dev-lang/janet:static-libs - install janet static library archive, you must enable this flag for using `jpm build` dev-lang/jsonnet:custom-optimization - Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS (unsupported) dev-lang/lazarus:minimal - Don't build extra packages from the bigide component dev-lang/logtalk:fop - Support for generating pdf documentation using fop diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index 41a086931133..c07f1af2b18e 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild b/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild index 63f13d8b8643..2fcde8616055 100644 --- a/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild +++ b/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild @@ -6,7 +6,7 @@ EAPI=6 inherit autotools gnome2 DESCRIPTION="A GTK+ widget for displaying OpenStreetMap tiles" -HOMEPAGE="http://nzjrs.github.io/osm-gps-map/" +HOMEPAGE="https://nzjrs.github.io/osm-gps-map/" SRC_URI="https://github.com/nzjrs/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="GPL-2+" diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index dd7adb9b9491..fe2f05663c70 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/less/Manifest b/sys-apps/less/Manifest index 285a80711f1c..99befdc9d936 100644 --- a/sys-apps/less/Manifest +++ b/sys-apps/less/Manifest @@ -1,5 +1,5 @@ DIST less-530.tar.gz 339723 BLAKE2B 9321548b06330c0b1b5b5a36147f5b9348619ff15d907808744b89581edeb4d8c2118ba455d024a23850902cac4d2c34d1e7b9897e02769584315c0e67ef667e SHA512 8d83a18b5648c4fe85921a563aa2c40bcf495aeb611098c83cd167b1e2f706649846cdf457c8506ae2683ab362ad970a0b261747349673020894bccdb9acbc10 DIST less-531.tar.gz 340466 BLAKE2B 6ac75b623fce478114d18cff429659499fedf4ef1a7bb067465ace91c28a7968efb224a4994a1e376a8cf40b110492f10ecda634628029107b38187044a0cd1e SHA512 180b665f194d7cc40d4bbb37bd64b10be463c0705e81795bef84b20dbba1c61825bb3e3da8bcd79f9176bb3af7b1f4e4c3dfe0829a5a2195a11f5b42294daca1 -DIST less-550.tar.gz 347026 BLAKE2B b033cb09d1bb9624c56db14084c73e5154e36cebd3f757dd2cb1b012b8797e7647d152bb67ce4ea9c2d188b1252fd7ddfd8a113656af5ec9a1e688145d4d9265 SHA512 a3d2769d90589a8e6afbfc9ac10cd1b544e0b0bbe28884e5ad980a71c541a37545c11d3450984b346b516fe082dfc0cf89d246c5a2d6002a7a2b4a4296a15494 DIST less-551.tar.gz 347007 BLAKE2B 033a043340f888616c8342703597b9232ae1c8e62775d3ee0187599c3d9d9824fdbc7543ca90cdc535b2077a8bcbefe322887ad29289620191d8cf6ff86ddd04 SHA512 ef5296b9ebd72f83c05cad8a0f7a5eec2290e9b358ee725e09e8541bd95f94c0e14ea22aa04b287a0654079338eaeae813f2235b8e9f819fbbc9040dd65a9585 DIST less-554.tar.gz 334708 BLAKE2B 3d7bd6376eb21060f16f52848b3ba96cdec4d5229c390ef24871eac91e4f35634e159e58c8c6db06072b5e943456deff49a25e99264e9283643966daef687bf8 SHA512 c37c645d1fa59d64414ebcded1b7faccd339a4d67654b14ec5862b2fe795dbd052ba9b65aaafd06f83a5c276d11e9cef5be4fb49329d14955bf2533dfcffd540 +DIST less-556.tar.gz 335019 BLAKE2B 7e0152c96751451626b3ff614b40f3c4d4e8ecd4b01e4a47ae443c3e7d83a1fc3fae8c21946626eda596631b0c6ca965113272fbea40389f20109e3125fa93e3 SHA512 a7235fae97414c7acb287b334dd071232d682e01627eb9a25f6a7ea72c58914f141657e067944f9672aa9f614012848e134e8d02dfb34892d20384f5e596bd21 diff --git a/sys-apps/less/less-550.ebuild b/sys-apps/less/less-556.ebuild similarity index 96% rename from sys-apps/less/less-550.ebuild rename to sys-apps/less/less-556.ebuild index 27d9b6e09838..826f236b361b 100644 --- a/sys-apps/less/less-550.ebuild +++ b/sys-apps/less/less-556.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="Excellent text file viewer" HOMEPAGE="http://www.greenwoodsoftware.com/less/" diff --git a/sys-apps/shadow/shadow-4.8-r4.ebuild b/sys-apps/shadow/shadow-4.8-r4.ebuild index d34bdd4a61db..d57ad90778dc 100644 --- a/sys-apps/shadow/shadow-4.8-r4.ebuild +++ b/sys-apps/shadow/shadow-4.8-r4.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/shadow-maint/shadow/releases/download/${PV}/${P}.tar LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86" IUSE="acl audit bcrypt +cracklib nls pam selinux skey split-usr +su xattr" # Taken from the man/Makefile.am file. LANGS=( cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr zh_CN zh_TW ) diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index 7e6cd0236c95..c8f409687dd5 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/neutron/Manifest b/sys-cluster/neutron/Manifest index c78cb59da301..0ada820805e8 100644 --- a/sys-cluster/neutron/Manifest +++ b/sys-cluster/neutron/Manifest @@ -1,8 +1,5 @@ -DIST neutron-15.0.1.tar.gz 10516525 BLAKE2B a74d96c09cc387ca65654e7b6e338ea5c2407e3af051b4ba442c5658b9a5578b13f9d2419afb75816c6b8f006b5f27d611525246afb592931dd86e179a7d2df8 SHA512 f724f8f830e2b6b04914b0e00851acb0c43c671a32d6b751cc0a3cdd8f7fc03a35c61baa6ce839f85044a56870f58054d6775ad9770d59de447263165de58e9c DIST neutron-15.0.2.tar.gz 10523237 BLAKE2B d900a95286549ede403a988b206315cee911c0dfde198101c2961a39f3059ed2121352ca0d232eac2a8deacb55344de3073b821312d40156331064b8aa00add8 SHA512 36a2adcbecf7b168a4a8141bae29453bc8122e3400bff9987d2cfe40728896a0a55040c2fd7d98ecade27162e49bbd0918be712940a0c2b7b31984d0677d1dbe -DIST neutron-configs-15.0.1.tar.gz 23546 BLAKE2B df706681e63e4f36b54be33a6619da15d642803f40afe737bd31426f9b3643a6a032cb8bfcb95899d1e67b759155fd14bb45f41460cefdc7d9f91d3377a90d5d SHA512 ef4555be50dfb81a0558ed28eb917a1d0634d913a2b0b58deeae3132a0e3c61521074b21d195e51e348a08b55c21919b537ac3c7122f4d5524ead824642292fe DIST neutron-configs-15.0.2.tar.gz 23546 BLAKE2B df706681e63e4f36b54be33a6619da15d642803f40afe737bd31426f9b3643a6a032cb8bfcb95899d1e67b759155fd14bb45f41460cefdc7d9f91d3377a90d5d SHA512 ef4555be50dfb81a0558ed28eb917a1d0634d913a2b0b58deeae3132a0e3c61521074b21d195e51e348a08b55c21919b537ac3c7122f4d5524ead824642292fe DIST neutron-configs-2019.2.9999.tar.gz 23546 BLAKE2B df706681e63e4f36b54be33a6619da15d642803f40afe737bd31426f9b3643a6a032cb8bfcb95899d1e67b759155fd14bb45f41460cefdc7d9f91d3377a90d5d SHA512 ef4555be50dfb81a0558ed28eb917a1d0634d913a2b0b58deeae3132a0e3c61521074b21d195e51e348a08b55c21919b537ac3c7122f4d5524ead824642292fe -DIST neutron-ml2-plugins-15.0.1.tar.gz 8669 BLAKE2B 3c34a857c0e7dd4e5313f5f9a1bb22384aeae6d1e43e719c50eab8dc3e842e98f202eb12cbb788127603931292deeed802f0592bad232e6a05121939e3b26fe0 SHA512 0e6858425ee3d3e2233c8ebf19aa8e62b5ff849532a2fdceb953f384f3b33432137537afbb2878f23ec5eb57e185eda36a6d6ff71d8be5f32b43abcb5c186082 DIST neutron-ml2-plugins-15.0.2.tar.gz 8669 BLAKE2B 3c34a857c0e7dd4e5313f5f9a1bb22384aeae6d1e43e719c50eab8dc3e842e98f202eb12cbb788127603931292deeed802f0592bad232e6a05121939e3b26fe0 SHA512 0e6858425ee3d3e2233c8ebf19aa8e62b5ff849532a2fdceb953f384f3b33432137537afbb2878f23ec5eb57e185eda36a6d6ff71d8be5f32b43abcb5c186082 DIST neutron-ml2-plugins-2019.2.9999.tar.gz 8669 BLAKE2B 3c34a857c0e7dd4e5313f5f9a1bb22384aeae6d1e43e719c50eab8dc3e842e98f202eb12cbb788127603931292deeed802f0592bad232e6a05121939e3b26fe0 SHA512 0e6858425ee3d3e2233c8ebf19aa8e62b5ff849532a2fdceb953f384f3b33432137537afbb2878f23ec5eb57e185eda36a6d6ff71d8be5f32b43abcb5c186082 diff --git a/sys-cluster/neutron/neutron-15.0.1.ebuild b/sys-cluster/neutron/neutron-15.0.1.ebuild deleted file mode 100644 index 5deaec79742b..000000000000 --- a/sys-cluster/neutron/neutron-15.0.1.ebuild +++ /dev/null @@ -1,229 +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} ) -# still no 34 :( https://bugs.launchpad.net/neutron/+bug/1630439 - -inherit distutils-r1 linux-info - -DESCRIPTION="A virtual network service for Openstack" -HOMEPAGE="https://launchpad.net/neutron" -if [[ ${PV} == *9999 ]];then - inherit git-r3 - SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/configs.tar.gz -> neutron-configs-${PV}.tar.gz - https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/ml2_plugins.tar.gz -> neutron-ml2-plugins-${PV}.tar.gz" - EGIT_REPO_URI="https://github.com/openstack/neutron.git" - EGIT_BRANCH="stable/train" -else - SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/configs.tar.gz -> neutron-configs-${PV}.tar.gz - https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/ml2_plugins.tar.gz -> neutron-ml2-plugins-${PV}.tar.gz - https://tarballs.openstack.org/${PN}/${P}.tar.gz" - KEYWORDS="amd64 ~arm64 x86" -fi - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="compute-only dhcp haproxy ipv6 l3 metadata openvswitch linuxbridge server sqlite +mysql postgres" -REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) ) - compute-only? ( !mysql !postgres !sqlite !dhcp !l3 !metadata !server - || ( openvswitch linuxbridge ) )" - -CDEPEND=">=dev-python/pbr-4.0.0[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${CDEPEND} - app-admin/sudo" - -RDEPEND=" - ${CDEPEND} - >=dev-python/paste-2.0.2[${PYTHON_USEDEP}] - >=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}] - >=dev-python/routes-2.3.1[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] - >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}] - >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}] - !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}] - >=dev-python/pecan-1.3.2[${PYTHON_USEDEP}] - >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}] - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] - >=dev-python/jinja-2.10[${PYTHON_USEDEP}] - >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] - >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}] - >=dev-python/neutron-lib-1.29.1[${PYTHON_USEDEP}] - >=dev-python/python-neutronclient-6.3.0[${PYTHON_USEDEP}] - >=dev-python/tenacity-3.2.1[${PYTHON_USEDEP}] - compute-only? ( - >=dev-python/sqlalchemy-1.2.0[${PYTHON_USEDEP}] - ) - sqlite? ( - >=dev-python/sqlalchemy-1.2.0[sqlite,${PYTHON_USEDEP}] - ) - mysql? ( - >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}] - !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}] - >=dev-python/sqlalchemy-1.2.0[${PYTHON_USEDEP}] - ) - postgres? ( - >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}] - >=dev-python/sqlalchemy-1.2.0[${PYTHON_USEDEP}] - ) - >=dev-python/webob-1.8.2[${PYTHON_USEDEP}] - >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] - >=dev-python/alembic-0.8.10[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.1[${PYTHON_USEDEP}] - >=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}] - >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}] - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/oslo-context-2.19.2[${PYTHON_USEDEP}] - >=dev-python/oslo-db-4.37.0[${PYTHON_USEDEP}] - >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] - >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] - >=dev-python/oslo-messaging-5.29.0[${PYTHON_USEDEP}] - >=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}] - >=dev-python/oslo-policy-1.30.0[${PYTHON_USEDEP}] - >=dev-python/oslo-privsep-1.32.0[${PYTHON_USEDEP}] - >=dev-python/oslo-reports-1.18.0[${PYTHON_USEDEP}] - >=dev-python/oslo-rootwrap-5.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-service-1.24.0[${PYTHON_USEDEP}] - !~dev-python/oslo-service-1.28.1[${PYTHON_USEDEP}] - >=dev-python/oslo-upgradecheck-0.1.0[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/oslo-versionedobjects-1.35.1[${PYTHON_USEDEP}] - >=dev-python/osprofiler-2.3.0[${PYTHON_USEDEP}] - >=dev-python/os-ken-0.3.0[${PYTHON_USEDEP}] - >=dev-python/ovs-2.8.0[${PYTHON_USEDEP}] - >=dev-python/ovsdbapp-0.9.1[${PYTHON_USEDEP}] - >=dev-python/psutil-3.2.2[${PYTHON_USEDEP}] - >=dev-python/pyroute2-0.5.3[${PYTHON_USEDEP}] - >=dev-python/python-novaclient-9.1.0[${PYTHON_USEDEP}] - >=dev-python/openstacksdk-0.31.2[${PYTHON_USEDEP}] - >=dev-python/python-designateclient-2.7.0[${PYTHON_USEDEP}] - >=dev-python/os-xenapi-0.3.1[${PYTHON_USEDEP}] - >=dev-python/os-vif-1.15.1[${PYTHON_USEDEP}] - dev-python/pyudev[${PYTHON_USEDEP}] - sys-apps/iproute2 - net-misc/iputils[arping] - net-misc/bridge-utils - net-firewall/ipset - net-firewall/iptables - net-firewall/ebtables - net-firewall/conntrack-tools - haproxy? ( net-proxy/haproxy ) - openvswitch? ( net-misc/openvswitch ) - ipv6? ( - net-misc/radvd - >=net-misc/dibbler-1.0.1 - ) - dhcp? ( net-dns/dnsmasq[dhcp-tools] ) - acct-group/neutron - acct-user/neutron" - -#PATCHES=( -#) - -pkg_pretend() { - linux-info_pkg_setup - CONFIG_CHECK_MODULES="VLAN_8021Q IP6_NF_FILTER IP6_NF_IPTABLES IP_NF_TARGET_REJECT \ - IP_NF_MANGLE IP_NF_TARGET_MASQUERADE NF_NAT_IPV4 NF_CONNTRACK_IPV4 NF_DEFRAG_IPV4 \ - NF_NAT_IPV4 NF_NAT NF_CONNTRACK IP_NF_FILTER IP_NF_IPTABLES NETFILTER_XTABLES" - if linux_config_exists; then - for module in ${CONFIG_CHECK_MODULES}; do - linux_chkconfig_present ${module} || ewarn "${module} needs to be enabled in kernel" - done - fi -} - -pkg_config() { - fperms 0700 /var/log/neutron - fowners neutron:neutron /var/log neutron -} - -src_prepare() { - sed -i '/^hacking/d' test-requirements.txt || die - # it's /bin/ip not /sbin/ip - sed -i 's/sbin\/ip\,/bin\/ip\,/g' etc/neutron/rootwrap.d/* || die - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - if use server; then - newinitd "${FILESDIR}/neutron.initd" "neutron-server" - newconfd "${FILESDIR}/neutron-server.confd" "neutron-server" - dosym ../../plugin.ini /etc/neutron/plugins/ml2/ml2_conf.ini - fi - if use dhcp; then - newinitd "${FILESDIR}/neutron.initd" "neutron-dhcp-agent" - newconfd "${FILESDIR}/neutron-dhcp-agent.confd" "neutron-dhcp-agent" - fi - if use l3; then - newinitd "${FILESDIR}/neutron.initd" "neutron-l3-agent" - newconfd "${FILESDIR}/neutron-l3-agent.confd" "neutron-l3-agent" - fi - if use metadata; then - newinitd "${FILESDIR}/neutron.initd" "neutron-metadata-agent" - newconfd "${FILESDIR}/neutron-metadata-agent.confd" "neutron-metadata-agent" - fi - if use openvswitch; then - newinitd "${FILESDIR}/neutron.initd" "neutron-openvswitch-agent" - newconfd "${FILESDIR}/neutron-openvswitch-agent.confd" "neutron-openvswitch-agent" - newinitd "${FILESDIR}/neutron.initd" "neutron-ovs-cleanup" - newconfd "${FILESDIR}/neutron-openvswitch-agent.confd" "neutron-ovs-cleanup" - fi - if use linuxbridge; then - newinitd "${FILESDIR}/neutron.initd" "neutron-linuxbridge-agent" - newconfd "${FILESDIR}/neutron-linuxbridge-agent.confd" "neutron-linuxbridge-agent" - fi - diropts -m 755 -o neutron -g neutron - dodir /var/log/neutron /var/lib/neutron - keepdir /etc/neutron - insinto /etc/neutron - insopts -m 0640 -o neutron -g neutron - - doins etc/* - # stupid renames - insinto /etc/neutron - doins -r "etc/neutron/plugins" - insopts -m 0640 -o root -g root - doins "etc/rootwrap.conf" - doins -r "etc/neutron/rootwrap.d" - - #add sudoers definitions for user neutron - insinto /etc/sudoers.d/ - insopts -m 0440 -o root -g root - newins "${FILESDIR}/neutron.sudoersd" neutron - - # add generated configs - cd "${D}/etc/neutron" || die - unpack "neutron-configs-${PV}.tar.gz" - cd "${D}/etc/neutron/plugins/ml2" || die - unpack "neutron-ml2-plugins-${PV}.tar.gz" - - # correcting perms - fowners neutron:neutron -R "/etc/neutron" - fperms o-rwx -R "/etc/neutron/" - - #remove superfluous stuff - rm -R "${D}/usr/etc/" -} - -python_install() { - distutils-r1_python_install - # copy migration conf file (not coppied on install via setup.py script) - python_moduleinto neutron/db/migration/alembic_migrations - python_domodule "neutron/db/migration/alembic_migrations/versions" -} - -pkg_postinst() { - elog - elog "neutron-server's conf.d file may need updating to include additional ini files" - elog "We currently assume the ml2 plugin will be used but do not make assumptions" - elog "on if you will use openvswitch or linuxbridge (or something else)" - elog - elog "Other conf.d files may need updating too, but should be good for the default use case" - elog -} diff --git a/sys-cluster/neutron/neutron-15.0.2.ebuild b/sys-cluster/neutron/neutron-15.0.2.ebuild index 518d9465fd1a..5deaec79742b 100644 --- a/sys-cluster/neutron/neutron-15.0.2.ebuild +++ b/sys-cluster/neutron/neutron-15.0.2.ebuild @@ -19,7 +19,7 @@ else SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/configs.tar.gz -> neutron-configs-${PV}.tar.gz https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/train/ml2_plugins.tar.gz -> neutron-ml2-plugins-${PV}.tar.gz https://tarballs.openstack.org/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 x86" fi LICENSE="Apache-2.0" diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 52c0e5cbe2e3..fad3c0dc3e03 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 0255d837b487..4a1056a8f8c7 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -28,6 +28,9 @@ DIST genpatches-4.19-108.extras.tar.xz 17488 BLAKE2B 4a5d2cf9c20a3c8ee9178713ad1 DIST genpatches-4.19-109.base.tar.xz 3246220 BLAKE2B 2fa4cbe0651cf3c2759d42a1c4e2415bfa73e69cb268bc47f7ba6f82971a938bcce98c682b8cda62909c2470fe8acfa4b7c5b54353899da117765005e461da71 SHA512 7db6d5c859804d0ea4139e5dd2c0d152d7e3381d3ea9e4515c893634fcbc4743a5da3e14e5a256db374fe8975d05d4165650b66e0e6b6b39a71a77c48440f356 DIST genpatches-4.19-109.experimental.tar.xz 6432 BLAKE2B 7753648b69c9487cea4c7386f1a54041f94c6ee6ac0205addc84a40a05d51af1beb780f63dce1f5549d87f5320a8435c8f39b8440d2e9b132813cbc6554e3a8a SHA512 151413c91233382984068a27d0e95d2d61ee3702be355e3f5fafe573c44237a0a1561d0fbb410961ced9e71373f065a421c7ac6c2ee21ce4017b5332529db485 DIST genpatches-4.19-109.extras.tar.xz 17496 BLAKE2B 1f6f8a59c0562ef2c346cbfe7fc31f90bf0ea724c217c24c311b27340b14c34d212c4c6650ee3a9d98cd614a670a6e7fc1e9e9963f13fdf9b5b594487b180f2d SHA512 9b944176be8a755d2fc02702c018b84c8c5e3d7748a08cbddd71dd926ba274980acffb03e403699de096633bcc281ddbbe4036281ec869447b91f51b82721dc2 +DIST genpatches-4.19-110.base.tar.xz 3262204 BLAKE2B 835215c4e9b808bdbc04bde3dc79512869f91a2652d360a6e11799fd1ecd6b02fcc7a2fba6e8bcaa90c05417136bb3673915fc2468c48b378df4a6a16c985dca SHA512 044cd58f95d679dc7eef3d81672bfe25d0a751b9cdf734122e83d44ae2324bf3bba89fe377a757967c90fc96072f62ad70e20ce29b67cdf45cc7eab7616cf926 +DIST genpatches-4.19-110.experimental.tar.xz 6424 BLAKE2B 98891f67276d818771311012f2369c5884f1b0696f9b531a876a50827e30903f179c8b2307009defce1557821227ba91be5728162f5250c9788d5a64360bafeb SHA512 5a6e96e5ec8b4232919ce99f669452e28fbc136dd1239c078d3129062c6b34c8ba31faad917011b4a9843891de3bc028268816e741a588c4487bb5c696e691b5 +DIST genpatches-4.19-110.extras.tar.xz 17500 BLAKE2B 5773fb4a74fa75333cf3add0ce89c0b22b49ac706f1e0ba5a8ea0526c8e8be31991fac43165a8a06bc612528702e7e9fd4aa71b6ff77e49baaefeda9b9dd0345 SHA512 e3ac65ad6127810f8dfa3d2ce29cd5e09b8e90f333d6385ece952811ae8321213641554d08cd366c35ae8bc4947150dff33f0f75b4dd1a2def3248d6c07c1c07 DIST genpatches-4.19-85.base.tar.xz 2403008 BLAKE2B ed31488bc37aff8e5a7e0491f9b4ac2d70689c9d47c219f001d6900b0c79792cc0dd82e5e368924193be93d747e8a17931aa462cd263e6c517ed8ae1fc070ddb SHA512 6218d1fb01617544f3218b451fbf0ff2b166c861621bb782d00dd01a28a51c97685b44d19f1a2e8da0b8d4178eb38adfc8047a98a2931558f1ff4f26288b8323 DIST genpatches-4.19-85.experimental.tar.xz 6428 BLAKE2B e1f94a7fbb0b72c9d43d0785f212a4d739e086eb6338e7fdf3979c9055c69908a388e9c2f5669eaae6ac8a9adce14dad11d450878b0dbeffa8b5316513f92b16 SHA512 ca204d8ca75278e72648b8e79609b533de9de7635e3602476773f7040ae493c6e356de08a60588defe9491960b4ac046aee5813a25dfcb3eae9779b720a341d0 DIST genpatches-4.19-85.extras.tar.xz 17500 BLAKE2B 869534152df10ea77feb65211729acb49d98a6cf28cdbfe8f4faf0c6a14f788ba1f7fcd868da5571195a8aeeee083c7257e9dcea628708cb8dd370cb9af6165f SHA512 9931dc1de3062ab85a14bcbe20007d5bc1b15cf1a77570076637df0311615adc763ca91e5d13052f812237f489d7e4c9a376395c547a926be770f787740d9581 @@ -82,12 +85,18 @@ DIST genpatches-5.4-24.extras.tar.xz 1740 BLAKE2B 959877a73da6fc757631407722e086 DIST genpatches-5.4-25.base.tar.xz 1052564 BLAKE2B b41dcbbeefe779bf86209d676bc5155e1a6db0b8e91fc101da87bb66cd51f5ac26d41798fabe7b4e9377c696a729b649e16036bf677bfb468b8300d32617e995 SHA512 f1badde5398ff780bea19c91c294fbd391d142f0912645a2adf4c5ff63b049697d83bd5377069828b43abe5e448abe3649313d16cc6ee07c6eaa90f0c57f0ca5 DIST genpatches-5.4-25.experimental.tar.xz 6140 BLAKE2B 44a3ca437b6d166694853a540aa94c56af93e3965a63ef7098e0431814181735aa171a0473c2babfc3e966898860cad375342407dfd3a5797f90e99a3a9f6e6e SHA512 b879b90f76028ccf5c11b584163f9209f10c3391d17e06a6027c7345013ac22ae29601ef37bd2ccac9ab8aa237e02d3d18af353b74e77f415ec5ce4ce4375a1b DIST genpatches-5.4-25.extras.tar.xz 1744 BLAKE2B 7ca0570133350ec60e8872f9035dfd2d46355a16642755d8f4bdbed7a9622a1a18f0529fb55eff00dd15520396c269c7849210b461f0c8f5ed8c6512071eaeb5 SHA512 1894e699b09a9cf5732b9b9c8aad91c0ab85ef08fbc03afd4d0feb3cabf8dd04b2f6cd47ee8f1d09a07490617d5f16997cfcf037449f1d4f3af84c4f8541de43 +DIST genpatches-5.4-26.base.tar.xz 1079948 BLAKE2B 4ed837fb6df27ce7e8b2b608800a5d754c02c8b34c88b3f528d65813de50a88e05a87a5079d7d67ba6ccc552e9f5b3ea775660e2f76a0badea30c6ab4eb472e5 SHA512 961edf9d05c84daaab9a8a5b499acd8215d1b54ecf4bb9b4670e9300fc917673fc35005d4695c24a02c116745425fe3b6d44066887c4f4b618925d826d5ea0ec +DIST genpatches-5.4-26.experimental.tar.xz 6140 BLAKE2B 6a6330b709dcc0127004c3eff34b1248fce24a99fffa765f3c0ee2b1d8b6c3f1b7bdf71d40ef9fa1658c61750793d7b840ed1d0b5a9f282f6a1f56cfb91f1c9c SHA512 7b5917147631723579c9f57ce8ada26f6fd8b12a7127d730230b11bbcd5d6a5570f986c5877ad6ac4404d083d8b1e820555f3752c93ed0d9fffb3b4c07f0879e +DIST genpatches-5.4-26.extras.tar.xz 1740 BLAKE2B 4bae843721cdeea0dd205239cf9ad58d25ac4b4fc43e92e0cb74faac46e759a9e0f9b6c1f4f88b56c8d56fee091000fd663c2e4e7099a64fefb71df1f4bc881b SHA512 f379b5ede9cca71b334638953209a2598dbf091ad08c322d2265cbbdb27d8f0ea7b1594db33be24cff96f062e3ee62008832ac74713454de9fc19fc20eff6da7 DIST genpatches-5.5-10.base.tar.xz 456696 BLAKE2B d26c970cad7ffc6950f92fdd906a85f4e0e6242c6450b7ac0211a2cab8ade3c03112f3220943babbf26f115d35d3ba3dec18ff00c7a5608efadcaf7d417431e3 SHA512 bbd56eac912dac056d8273a9f3c21710fc614619b1bb6b52c48bf5972518a17ae20ad8601fb294a446415d0ecda57501681a4bbf13fe4a493a48a0d2d324e396 DIST genpatches-5.5-10.experimental.tar.xz 5596 BLAKE2B 7f4253811033204ded79c9c7b4d103cdefaf2ce459739fc32da9a0802ad61b5d118628ae9a70103ee460c9b7c4a79b6d48190d105b7a4d5e7b06061cd1969647 SHA512 8d655fe247c860096ee15140c58df8da172524c51433ad60426e1ea528f69d4e5ecb24d2ff39c3400dfe18206039ddbe046ec7aff6304dcdbfa05d03b71ae992 DIST genpatches-5.5-10.extras.tar.xz 1740 BLAKE2B 43ef46fdd52322a5b1f370690e7e39d8a6b835726b4166b5f35f079446042b60c9f59e159a88ac82ffa384ff7dce619140783a7e202d3374e272e140744a6459 SHA512 57affa6ae287b621407d8c8b8d12dcc7a45bb3d68bbd0418737c95df6ef7bdd76ea8a90caec3322b2e3a75ccb159c42fb132e38cf8c62e21d7abd22e98d309c9 DIST genpatches-5.5-11.base.tar.xz 504352 BLAKE2B e7e24b605897a5c9aa454c9b8591458b9ff6276574513c58e2c16b99f8f045081ff57a419f5f31c78625d3c807abf1483ec718d3e4d80f8cbc45455d1d5e2d95 SHA512 db442b6df1b841c59c888dad631a7353daa9f500322a2f4b0449ee61833cd89c7f6f1bad1b799009a90de6c17b7bab7592fdcc4d7d2ba26321ec91302343a204 DIST genpatches-5.5-11.experimental.tar.xz 5600 BLAKE2B bd7006c638322fa4aef7f7a45316940cee2c39449e85b57b2374fcb9ff11e6d3c1988045d6af1b80e8e21f180651459c371f462730c0941e07ebd407db78fceb SHA512 57d689e062b71f38283937615bcd3b132e174cb875bdee373a36fc13d525c935e7b70bf5f7ab338bfcc2b80c68e05c9875f1bffec5f953f4847fa0fdb0246d4a DIST genpatches-5.5-11.extras.tar.xz 1744 BLAKE2B f84aa0a4059f15a6e8e08f957259ceb519e144905467562abfe5637702e089141c4a6def7c61d91af299d2a850115a01852435d448e04fa8bb6a84644bd57bbd SHA512 e0241b4cb10e6257fbb5d12e41a7ef32eb9a501e9a81c0e638ec619629f9a421ae6022c8cb041789b764948f6b71cf810f49be7d8773b2d8c7c25935de846648 +DIST genpatches-5.5-12.base.tar.xz 541732 BLAKE2B fac0a28374f38f3949fd13433da71680cb72c90477b5778343950fc4857095c9298b83c7ff34965030329179864fee287ede693ba4614b9b7f765b76f26ff362 SHA512 bd0855ca4a1b453dfcac8fac034e634a2080fdc7cdf1d9ed633d36cdd75d6145737df09606211ec38012c7dc5d9a7956911c47b4256acfcd746df31d529cfe2f +DIST genpatches-5.5-12.experimental.tar.xz 5596 BLAKE2B b8f2341550c7b6e64d6da49813079fdad59fd5b80e77bae120ba50676a05d96233f8fdfda8a145c1060c06fbedcd40dc57c38d127e02621c183fb3692e0a8801 SHA512 3ca8743bec878a56505a6ca18a780b21f8d75b8a18e2ab903499cf12f7c76d2ab5dc8bd8887edfbbfe010bc6522c912bca16fe12c7aa477c208c27b099825ebd +DIST genpatches-5.5-12.extras.tar.xz 1740 BLAKE2B b9787c1a5ff46dd4cbbd6a1914b9851e42072bcec880e15ef82a8d878da079ba991c690eda9752ec0f9d7e15a7e9032e5e2a8fa98623a1b45937cc2dcfe30688 SHA512 94b4e044c2e67a303cc3e08941e097c8f24e38cbc2b39816b0d6b49ef4c1bb00341389432ba2258195b1abe2b3ee7ea92a06a56e756f22591625838731d41bf8 DIST genpatches-5.5-9.base.tar.xz 399476 BLAKE2B a4582c276854d99a15766b0f9ae28326c3ba89d46e513e7265b839788966057fdfc46912695d74dc560cf22db087d20869dbfd69c59250d0b2e59cf56a506d81 SHA512 cb566c2394bf1c98a32343b5be1bc9ecc1a48587443cac39a2e999b09adedb3319726b1321a6d38ae6e6eb39e106dd1e251ed15f127ffb730f6597949df512de DIST genpatches-5.5-9.experimental.tar.xz 5596 BLAKE2B 432841bbb57e3506c4759425c7646e8742bfbd184520eb2d1a66665a6727da5284face9bff4fb0fce50570349f45cf0763e26b3e2478d261dab521587c372a0c SHA512 413092a1f5686592a43203814d4759154112c43529a6d8733abb0450f8fab549721cc915ee76335ee0e5ec20952366212615c4cbeba86819c2b2f2b6946ee4e8 DIST genpatches-5.5-9.extras.tar.xz 1744 BLAKE2B c8f761afd767cef3ea6c1d79a3eb6e7dbef2d292dfcecd314189d92c020b3016ae8e3f5cfad3a532f34d9c47f01421ba38e3305b381791dc07375d217f3ac9a0 SHA512 5f48330ef699b9704baabb2c8171c80d445790c7876a92b0c7ea49bc29ee8347d87e441b9a51e2eedd069a78fc7011053e6282e54c216852cc9ba080064169d6 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.111.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.111.ebuild new file mode 100644 index 000000000000..a79ec91035e7 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.111.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="110" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.26.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.26.ebuild new file mode 100644 index 000000000000..09b413d70dc2 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.26.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="26" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.5.10.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.5.10.ebuild new file mode 100644 index 000000000000..8a8c2d53df7c --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.5.10.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="12" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index 9784629f8847..3548855ba41b 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -1,10 +1,6 @@ -DIST linux-firmware-20190603.tar.gz 186855626 BLAKE2B 66e3bf709ae9a3df1ac9b7b9bd4e1fa556b07696896e7db086c7b60887a8e8854638d86ecead091d32b3d9a83adc1ab88e8b2fde730f8f97a3225492c2229512 SHA512 9027ae7f649b7e1ff15177c1edb23def93d8fe90a63a90e72e7ab98414d557c9f4545ced30363c68eb1715cd74d19c0dd9e395e82320427b4aab2432a173e62b DIST linux-firmware-20190815.tar.gz 195268794 BLAKE2B bc67b4501e1d0c4375000bbcbae754b072a3769703eb214f85468d910f29becbe79f6989d3bf223ffa259326c964cbf153326b64d7756882165d29b576e13703 SHA512 99bcc1372ed51be1692cbc3c7b7c34940ee2f9b89f611afa5266b2b0825ed602cde27ff383edb776c1239eaf37002cd19be7cbb7cdf81e0721c3167d38018e9a -DIST linux-firmware-20190904.tar.gz 196829538 BLAKE2B b45b03b26908fab0602ad7e6ff8b5a2028b56a2d4d200de6fda332e9f589e6fa898cfc5eb7a28b585b1eadefb3bc7a06e5e5685928f2a087ddba39b792ff9ca2 SHA512 5469754181b3ddbe7233958d517d845c1220890758769995f90605e2f70cd34ed29d1904e8b0388293515191795deef8be1f457f9cb196c9cf01a65707534aff DIST linux-firmware-20190923.tar.gz 198130120 BLAKE2B 21f337e8ef693513b5569ab67bf3ae2323f2c9109ce3fc7d6d0d071974dc8c53301eb21e0b1c279753e867873e4bb04274c0b2b5bfb1160aeaff2f2c92d7f26c SHA512 1421f283602fe889b6fba5d84eab1199c63c597a4fb487583bee188cfa01c7d41bde4ac53eee992a6aa1bb95a77126eee786f96fb682cd7992c5ec581601db54 -DIST linux-firmware-20191008.tar.gz 198940781 BLAKE2B 35d7bca55473264c4f713bc97d26367ceee4013e57c3f310038674290dd1fc0a0a1a1cf8aa26dcb06c6dc0d7df7b927e47455d2b94f7aaf331650f4b4e3335b8 SHA512 a47be88327f59b6ee9964370ebd0e813de3d22d780971815c5696dacbaad402996ad0f312fffa110beb1f588a450618e24b12181a984bb4383f011f4ae53c875 DIST linux-firmware-20191022.tar.gz 198935619 BLAKE2B 94d90a8e85af7104f08c398d3df20a88dc4d6f86d638565ab6e45e7fc5dff53e4e56a62a859585438812a1438ea7f7c4e4e47ce4adb22b0adf69439feb5803b4 SHA512 2cc99664c8d0275b670373581d7c6e29699f8b84cd6403949182cc1970c3241e5d9c388c34643630a237d87962b7c8e891445969ca9817ac92a4bbbe74e0dc0d -DIST linux-firmware-20191108.tar.gz 203746264 BLAKE2B cd756ac1b1bde9706cd8321133da2e4e620a3236614427ae9836fc5e98fbc62e79060e6cf50717b41391fba9d56e16140f722ffcc5764e4b81ad2e798d1b41ec SHA512 75eb78ef642cc48dc3d8d2cdd7e5312b82ee3c9ebd6ead40a02fdc1d4329c5a9226237fa0ec8e617fc358cc12144dacf4ef6c1441fe444974c1506ef21ea70a0 DIST linux-firmware-20191215.tar.gz 203746264 BLAKE2B cd756ac1b1bde9706cd8321133da2e4e620a3236614427ae9836fc5e98fbc62e79060e6cf50717b41391fba9d56e16140f722ffcc5764e4b81ad2e798d1b41ec SHA512 75eb78ef642cc48dc3d8d2cdd7e5312b82ee3c9ebd6ead40a02fdc1d4329c5a9226237fa0ec8e617fc358cc12144dacf4ef6c1441fe444974c1506ef21ea70a0 DIST linux-firmware-20200122.tar.gz 219807963 BLAKE2B 976cf7f8da61213a1210348cffdda8cae1b3f3a2d46aac05fe331fdff37e954620c2768f8941e0d4b6fff8c7b69d68b86516c9df9b9cf96538a4463b0957d1a2 SHA512 23500cc99d31597fe691341404cbe9375f7995783b4bf055a53a67ace380bdf9db1c247f12ae7e63ac02e4078e5089aa33e5cc6c2622b26dfaab4a65bfab1db3 -DIST linux-firmware-20200302.tar.gz 221566178 BLAKE2B a6fd243dcf4b9e1f0d91136046f1f9df0059c4916debb4108e620f0e587982d61bc9433ca6880dc4451fc60510eff2489ecd1c4979ac2344a0eacb6041da2dd7 SHA512 c694d268c0be20a34dbf4f823458d1ed378ae41dfebd2b4d064207f44b0532fe3b02af58ff4ab58e3d2777ad82cb87c1d11e7906b0f423043007b3b75648b458 +DIST linux-firmware-20200316.tar.gz 221745284 BLAKE2B 6ab4944927420dd8c50d3a97beb32aff22917ab13b283c3358de9f5331479c2a4353dde68a221ac221e9ff5202e46cdaaab9b65cd0431a3984877ab44e2bd0ab SHA512 2fb16fcc474753902ab0236cbb116cdd5de10080d5ad5fc19a015ad3881a203c42beeccf5745e18346fc028a5c743d3d6439f0a04b86b2e0abf9f32aa5f55bad diff --git a/sys-kernel/linux-firmware/linux-firmware-20190603.ebuild b/sys-kernel/linux-firmware/linux-firmware-20190603.ebuild deleted file mode 100644 index 875b922e60ba..000000000000 --- a/sys-kernel/linux-firmware/linux-firmware-20190603.ebuild +++ /dev/null @@ -1,299 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit savedconfig - -if [[ ${PV} == 99999999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" -else - GIT_COMMIT="1884732e01bec25affbd5d3366b187b757b095db" - SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -fi - -DESCRIPTION="Linux firmware files" -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git" - -LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) - redistributable? ( - linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) - unknown-license? ( all-rights-reserved )" -SLOT="0" -IUSE="+redistributable savedconfig unknown-license" -RESTRICT="binchecks strip - unknown-license? ( bindist )" - -RDEPEND="!savedconfig? ( - redistributable? ( - !sys-firmware/alsa-firmware[alsa_cards_ca0132] - !media-tv/cx18-firmware - ! ${PN}.conf - find * ! -type d ! -name ${PN}.conf >> ${PN}.conf - - if use savedconfig; then - restore_config ${PN}.conf - - ebegin "Removing all files not listed in config" - find ! -type d ! -name ${PN}.conf -printf "%P\n" \ - | grep -Fvx -f <(grep -v '^#' ${PN}.conf \ - || die "grep failed, empty config file?") \ - | xargs -d '\n' --no-run-if-empty rm - eend $? || die - fi - - # remove empty directories, bug #396073 - find -type d -empty -delete || die -} - -src_install() { - save_config ${PN}.conf - rm ${PN}.conf || die - - if ! ( shopt -s failglob; : * ) 2>/dev/null; then - eerror "No files to install. Check your USE flag settings" - eerror "and the list of files in your saved configuration." - die "Refusing to install an empty package" - fi - - insinto /lib/firmware/ - doins -r * -} - -pkg_preinst() { - if use savedconfig; then - ewarn "USE=savedconfig is active. You must handle file collisions manually." - fi -} - -pkg_postinst() { - elog "If you are only interested in particular firmware files, edit the saved" - elog "configfile and remove those that you do not want." - - local ver - for ver in ${REPLACING_VERSIONS}; do - if ver_test ${ver} -lt 20190514; then - elog - elog 'Starting with version 20190514, installation of many firmware' - elog 'files is controlled by USE flags. Please review your USE flag' - elog 'and package.license settings if you are missing some files.' - break - fi - done -} diff --git a/sys-kernel/linux-firmware/linux-firmware-20190904.ebuild b/sys-kernel/linux-firmware/linux-firmware-20190904.ebuild deleted file mode 100644 index 6a83e8d27e42..000000000000 --- a/sys-kernel/linux-firmware/linux-firmware-20190904.ebuild +++ /dev/null @@ -1,354 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit mount-boot savedconfig - -if [[ ${PV} == 99999999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" -else - GIT_COMMIT="6ddb9d9704e2171d91439c9c42c5965bf3863de8" - SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -fi - -DESCRIPTION="Linux firmware files" -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git" - -LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) - redistributable? ( - linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) - unknown-license? ( all-rights-reserved )" -SLOT="0" -IUSE="initramfs +redistributable savedconfig unknown-license" -RESTRICT="binchecks strip - unknown-license? ( bindist )" - -REQUIRED_USE="initramfs? ( redistributable )" - -BDEPEND="initramfs? ( app-arch/cpio )" - -#add anything else that collides to this -RDEPEND="!savedconfig? ( - redistributable? ( - !sys-firmware/alsa-firmware[alsa_cards_ca0132] - !media-tv/cx18-firmware - ! "${UCODETMP}/early_cpio" - - local amd_ucode_file="${UCODEDIR}/AuthenticAMD.bin" - cat "${S}"/amd-ucode/*.bin > "${amd_ucode_file}" || die "Failed to concat amd cpu ucode" - - if [[ ! -s "${amd_ucode_file}" ]]; then - die "Sanity check failed: '${amd_ucode_file}' is empty!" - fi - - pushd "${UCODETMP}" &>/dev/null || die - find . -print0 | cpio --quiet --null -o -H newc -R 0:0 > "${S}"/amd-uc.img - popd &>/dev/null || die - if [[ ! -s "${S}/amd-uc.img" ]]; then - die "Failed to create '${S}/amd-uc.img'!" - fi - else - # If this will ever happen something has changed which - # must be reviewed - die "'${S}/amd-ucode' not found!" - fi - fi - - echo "# Remove files that shall not be installed from this list." > ${PN}.conf - find * ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) >> ${PN}.conf - - if use savedconfig; then - restore_config ${PN}.conf - - ebegin "Removing all files not listed in config" - find ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) -printf "%P\n" \ - | grep -Fvx -f <(grep -v '^#' ${PN}.conf \ - || die "grep failed, empty config file?") \ - | xargs -d '\n' --no-run-if-empty rm - eend $? || die - fi - - # remove empty directories, bug #396073 - find -type d -empty -delete || die -} - -src_install() { - save_config ${PN}.conf - rm ${PN}.conf || die - - if use initramfs ; then - mkdir "${ED}/boot" || die - mv "${S}"/amd-uc.img "${ED}/boot" || die - fi - - if ! ( shopt -s failglob; : * ) 2>/dev/null; then - eerror "No files to install. Check your USE flag settings" - eerror "and the list of files in your saved configuration." - die "Refusing to install an empty package" - fi - - insinto /lib/firmware/ - doins -r * -} - -pkg_preinst() { - if use savedconfig; then - ewarn "USE=savedconfig is active. You must handle file collisions manually." - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst -} - -pkg_postinst() { - elog "If you are only interested in particular firmware files, edit the saved" - elog "configfile and remove those that you do not want." - - local ver - for ver in ${REPLACING_VERSIONS}; do - if ver_test ${ver} -lt 20190514; then - elog - elog 'Starting with version 20190514, installation of many firmware' - elog 'files is controlled by USE flags. Please review your USE flag' - elog 'and package.license settings if you are missing some files.' - break - fi - done - - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/amd-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 -} diff --git a/sys-kernel/linux-firmware/linux-firmware-20191108.ebuild b/sys-kernel/linux-firmware/linux-firmware-20191108.ebuild deleted file mode 100644 index e3c4d975db32..000000000000 --- a/sys-kernel/linux-firmware/linux-firmware-20191108.ebuild +++ /dev/null @@ -1,354 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit mount-boot savedconfig - -if [[ ${PV} == 99999999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" -else - GIT_COMMIT="f1100ddf581f49aa79a54b56fe6ef0815a7ae57e" - SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -fi - -DESCRIPTION="Linux firmware files" -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git" - -LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) - redistributable? ( - linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) - unknown-license? ( all-rights-reserved )" -SLOT="0" -IUSE="initramfs +redistributable savedconfig unknown-license" -RESTRICT="binchecks strip - unknown-license? ( bindist )" - -REQUIRED_USE="initramfs? ( redistributable )" - -BDEPEND="initramfs? ( app-arch/cpio )" - -#add anything else that collides to this -RDEPEND="!savedconfig? ( - redistributable? ( - !sys-firmware/alsa-firmware[alsa_cards_ca0132] - !media-tv/cx18-firmware - ! "${UCODETMP}/early_cpio" - - local amd_ucode_file="${UCODEDIR}/AuthenticAMD.bin" - cat "${S}"/amd-ucode/*.bin > "${amd_ucode_file}" || die "Failed to concat amd cpu ucode" - - if [[ ! -s "${amd_ucode_file}" ]]; then - die "Sanity check failed: '${amd_ucode_file}' is empty!" - fi - - pushd "${UCODETMP}" &>/dev/null || die - find . -print0 | cpio --quiet --null -o -H newc -R 0:0 > "${S}"/amd-uc.img - popd &>/dev/null || die - if [[ ! -s "${S}/amd-uc.img" ]]; then - die "Failed to create '${S}/amd-uc.img'!" - fi - else - # If this will ever happen something has changed which - # must be reviewed - die "'${S}/amd-ucode' not found!" - fi - fi - - echo "# Remove files that shall not be installed from this list." > ${PN}.conf - find * ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) >> ${PN}.conf - - if use savedconfig; then - restore_config ${PN}.conf - - ebegin "Removing all files not listed in config" - find ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) -printf "%P\n" \ - | grep -Fvx -f <(grep -v '^#' ${PN}.conf \ - || die "grep failed, empty config file?") \ - | xargs -d '\n' --no-run-if-empty rm - eend $? || die - fi - - # remove empty directories, bug #396073 - find -type d -empty -delete || die -} - -src_install() { - save_config ${PN}.conf - rm ${PN}.conf || die - - if use initramfs ; then - mkdir "${ED}/boot" || die - mv "${S}"/amd-uc.img "${ED}/boot" || die - fi - - if ! ( shopt -s failglob; : * ) 2>/dev/null; then - eerror "No files to install. Check your USE flag settings" - eerror "and the list of files in your saved configuration." - die "Refusing to install an empty package" - fi - - insinto /lib/firmware/ - doins -r * -} - -pkg_preinst() { - if use savedconfig; then - ewarn "USE=savedconfig is active. You must handle file collisions manually." - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst -} - -pkg_postinst() { - elog "If you are only interested in particular firmware files, edit the saved" - elog "configfile and remove those that you do not want." - - local ver - for ver in ${REPLACING_VERSIONS}; do - if ver_test ${ver} -lt 20190514; then - elog - elog 'Starting with version 20190514, installation of many firmware' - elog 'files is controlled by USE flags. Please review your USE flag' - elog 'and package.license settings if you are missing some files.' - break - fi - done - - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/amd-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 -} diff --git a/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild b/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild deleted file mode 100644 index c8c50ee8030d..000000000000 --- a/sys-kernel/linux-firmware/linux-firmware-20200302.ebuild +++ /dev/null @@ -1,354 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit mount-boot savedconfig - -if [[ ${PV} == 99999999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" -else - GIT_COMMIT="0148cfefcbf98898ca65bb26d9d7d638b30e211d" - SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -fi - -DESCRIPTION="Linux firmware files" -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git" - -LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) - redistributable? ( - linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) - unknown-license? ( all-rights-reserved )" -SLOT="0" -IUSE="initramfs +redistributable savedconfig unknown-license" -RESTRICT="binchecks strip - unknown-license? ( bindist )" - -REQUIRED_USE="initramfs? ( redistributable )" - -BDEPEND="initramfs? ( app-arch/cpio )" - -#add anything else that collides to this -RDEPEND="!savedconfig? ( - redistributable? ( - !sys-firmware/alsa-firmware[alsa_cards_ca0132] - !media-tv/cx18-firmware - ! "${UCODETMP}/early_cpio" - - local amd_ucode_file="${UCODEDIR}/AuthenticAMD.bin" - cat "${S}"/amd-ucode/*.bin > "${amd_ucode_file}" || die "Failed to concat amd cpu ucode" - - if [[ ! -s "${amd_ucode_file}" ]]; then - die "Sanity check failed: '${amd_ucode_file}' is empty!" - fi - - pushd "${UCODETMP}" &>/dev/null || die - find . -print0 | cpio --quiet --null -o -H newc -R 0:0 > "${S}"/amd-uc.img - popd &>/dev/null || die - if [[ ! -s "${S}/amd-uc.img" ]]; then - die "Failed to create '${S}/amd-uc.img'!" - fi - else - # If this will ever happen something has changed which - # must be reviewed - die "'${S}/amd-ucode' not found!" - fi - fi - - echo "# Remove files that shall not be installed from this list." > ${PN}.conf - find * ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) >> ${PN}.conf - - if use savedconfig; then - restore_config ${PN}.conf - - ebegin "Removing all files not listed in config" - find ! -type d ! \( -name ${PN}.conf -o -name amd-uc.img \) -printf "%P\n" \ - | grep -Fvx -f <(grep -v '^#' ${PN}.conf \ - || die "grep failed, empty config file?") \ - | xargs -d '\n' --no-run-if-empty rm - eend $? || die - fi - - # remove empty directories, bug #396073 - find -type d -empty -delete || die -} - -src_install() { - save_config ${PN}.conf - rm ${PN}.conf || die - - if use initramfs ; then - mkdir "${ED}/boot" || die - mv "${S}"/amd-uc.img "${ED}/boot" || die - fi - - if ! ( shopt -s failglob; : * ) 2>/dev/null; then - eerror "No files to install. Check your USE flag settings" - eerror "and the list of files in your saved configuration." - die "Refusing to install an empty package" - fi - - insinto /lib/firmware/ - doins -r * -} - -pkg_preinst() { - if use savedconfig; then - ewarn "USE=savedconfig is active. You must handle file collisions manually." - fi - - # Make sure /boot is available if needed. - use initramfs && mount-boot_pkg_preinst -} - -pkg_postinst() { - elog "If you are only interested in particular firmware files, edit the saved" - elog "configfile and remove those that you do not want." - - local ver - for ver in ${REPLACING_VERSIONS}; do - if ver_test ${ver} -lt 20190514; then - elog - elog 'Starting with version 20190514, installation of many firmware' - elog 'files is controlled by USE flags. Please review your USE flag' - elog 'and package.license settings if you are missing some files.' - break - fi - done - - # Don't forget to umount /boot if it was previously mounted by us. - use initramfs && mount-boot_pkg_postinst -} - -pkg_prerm() { - # Make sure /boot is mounted so that we can remove /boot/amd-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 -} diff --git a/sys-kernel/linux-firmware/linux-firmware-20191008.ebuild b/sys-kernel/linux-firmware/linux-firmware-20200316.ebuild similarity index 99% rename from sys-kernel/linux-firmware/linux-firmware-20191008.ebuild rename to sys-kernel/linux-firmware/linux-firmware-20200316.ebuild index 8f6faf530c22..e42b02d3761d 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20191008.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20200316.ebuild @@ -8,7 +8,7 @@ if [[ ${PV} == 99999999* ]]; then inherit git-r3 EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" else - GIT_COMMIT="aa95e90b2c638f1ca6647d12b2d1b18284428f9c" + GIT_COMMIT="20200316" SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" fi diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 809f09a445b6..d4e79feebb2f 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -7,8 +7,8 @@ DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6 DIST linux-5.5.tar.xz 110713660 BLAKE2B 36b990d3650c409652206c319c93c0cf68885334050bc286b479c8b844bc47354547e19eebb58caafb026b96d134f39f0c7ce38b4eebe9da7ea6d1610a1e2af2 SHA512 fa74fdabb5e63384a39e54da05b86a9ae9ea16179524b041fbbdffc7177e80b53600ae98d76be127ba216148f9dc55fe07ab20637e22c6d6030cb4aa09eb2f86 DIST patch-3.16.82.xz 2631700 BLAKE2B f65a8f204e7a5089445ec3d717238b4b19fe6b606dfc3e132d1263383c4989befb5f5eaa1ff10902e3e09d95a3650b8f1605978eee64155be968731cc1e08da1 SHA512 41fc30e763ac73d596a7dc8c72e7d4f9c3c7f0c86ff1a75238112ba8c8b73e8223887be6a76d4b840f6c6ee911d38e6503795a50480cfc3f8886e7a53ee8b167 DIST patch-4.14.173.xz 3523396 BLAKE2B 45804f5af5f44201c13b1c99bbe546a81b2d8c34e1636d39466271e657591454bbaf580e7810a960c23bc13f6e6d3c48e09de0a9ab609a1cd6423b94ab0a6ef6 SHA512 85a03c1dd78823db395a6e13d52ade7084f1471c290a6ab4d9ef8b6058e1aa71775d033086e0765491b63495cecd0e0976f18d8b2ffa1a619ee016b3bb637ed7 -DIST patch-4.19.110.xz 2892016 BLAKE2B 31420716b3d546cbd49702b05aaff46a44e9b19e8e37c5359b210822a23a8cd926525fcaa3f0bf2a8b5c257737af44f4adaa5d02805239c5b494e53fe14d8210 SHA512 f44b03be5735840095d2a373baab952b299a84c19568ddf4eb1aa4a591cdc91ed9825332aa16767de0b3df9106d73b21386ec636cccbeacb672a4d4fa73fb3f7 +DIST patch-4.19.111.xz 2904888 BLAKE2B 2ab049c5a4acf650f88baa624955a64af9dc090bd2272960c50f0d197879ffb229566ccc5f266c4697ecc0d9ff83b5789b3eba9da6d874a67c2166de0cea7c8a SHA512 e6571ced6fe4a0414e956ff1afbbcb738b9a0571a97a1986202e043d58a3eaf81394f7f412339bc8b7c3e02a9a0c0a7cf65feefeee1fdedacf7762994aa55cf3 DIST patch-4.4.216.xz 3040032 BLAKE2B cd1a3613b1c965680e38375bf4af2d353bc7818adaedc956c52858867a0228b9ca9d7cccdcf837afc50cf1bdd3317c785759473991e38e37530d5da5537ce244 SHA512 fc56cc99704a59d29320142053ee1228db46ff271e5ea77e45eba2e4a61a0d495345535746981971fcda6363c73add01847fcbbac6e2717f2a7dff3f4b6cdd6c DIST patch-4.9.216.xz 3382928 BLAKE2B bf53291ebbfdd4bd871d738926f769247349a25b9894cd2ef25d11542164a6e0698a9000c912c13dd43767085565a0fc8d27a8c923af001bc720bb50a68e4ba6 SHA512 d0385467457908d753e5ff846b89c247edb13456538a088049b2fc2a913226de475a9280993baf63a026708ef3144c9df730634f014272506165fed216075cc1 -DIST patch-5.4.25.xz 1005776 BLAKE2B cb9ed154fc9fd88ee50437a9c595a53010f5a1bfc5f5766234e6bbcd5cd9bbbac32509ac4a473446b2d8257a02ebea8dbbf2280b88b969cfd98426ce5ffeefab SHA512 ba887634350a2fde67283241356c5f6fee1fd076b58051aa4df88da8bc60645e40b8b73dba3401415770a80f58d59546fc96b8b816b61da70177a3ef92c1bafa -DIST patch-5.5.9.xz 491120 BLAKE2B 0bba19e3d579b8f78b4e99de168719fbca40f6ef3977f36d180025ee4bcbf16f0978eac1f8378d9c230ff0faee9730db5a9e4b9b3a2dc25ad59c773784c99b01 SHA512 44f26e7bce86c149fb4ddae20306ae58dead5a4797c268409f12284c695de80bde4a1b8bb1492f51db0f36210543d4a277024481e43acda10c3bb03470bf5270 +DIST patch-5.4.26.xz 1031292 BLAKE2B d50160901429562e22e4ea6e07176cabd0edfbb1bea688279f7e56b142b48087fa6cc3f67957ec917a65300a73ddd2b80ce90fca0f89ad8a545e3e80ad9d76ba SHA512 8344566b41ba7836739095a07452209caf16ebcbdb614814530295649d99358d51907166d35f68480547e5a769fe68fabbf316623e3e63f2930d6bf6ad3f749c +DIST patch-5.5.10.xz 527360 BLAKE2B 5ba8613f3ef99373033da6c27093c9cc11eba661a8931b91a6ae05a322f3b85b2e5348ecf41f01325fa8732b83366ba39a3326616a4e14e2c07891526d231686 SHA512 7b83ce898dfab2fe67c8c931890470615b181b2b64b686103c0776a95f302cbca5f4b4e576dbde28af1408692ec6e7c18fb23dbec8f6255e935a137fc0b055d8 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.110.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.19.111.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.19.110.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.19.111.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.4.25.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.4.26.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.4.25.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.4.26.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.5.9.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.5.10.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.5.9.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.5.10.ebuild diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index df4b82d58d70..b88be2c0976a 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest index e1398f240816..558b7c137054 100644 --- a/www-servers/tomcat/Manifest +++ b/www-servers/tomcat/Manifest @@ -1,5 +1,7 @@ DIST apache-tomcat-7.0.100-src.tar.gz 5265444 BLAKE2B 9c706e6a50e13cd8f542669e2d80f8940816976cfb84f62c3e17bbe6f0cc6d76d6fcdd18ec69e706ce27552aa66041833f6ae7bba8e671e187de3246e90a25c5 SHA512 53ef64c64263d0f25d72ed179bd7b7beed3f73cd63010988ba740ff7328b00a5ec09fe1d4575188ecacf258c891e022a0f1ae07d2957d9830a56881170bb1a57 DIST apache-tomcat-8.5.51-src.tar.gz 5661227 BLAKE2B 711de5678903941a5261693972906f2d0fca2c9d3219e62d3186e5d71a2e3cb4da0a5028e62790a26dad2d244246c2f41c74f18e17d52ec0af070f0d5842ca3f SHA512 8529d2e7d83a863fe88ed4ee8ec29b673e5df4bea53231412c0d89e2384d3939b9d1f29350a4ca46966ab5d4a0d3178ed5d2caa50aa766092a3ab8f28dd27592 +DIST apache-tomcat-8.5.53-src.tar.gz 5676477 BLAKE2B 284ddc3b3d491a57aac31fc59a9c7d80bdb11efb410ab53eea5d3a0a754507203de287eff0a621d02bfea581b45b860598c8ab95d529ad18790fe381f5518cca SHA512 d78613042a9e4caa5b5eeebd2589383ef10312698e535e2c8f82e40c7b3d793ea6cac50f346316a84f4b47ad330f82c7a4f0e4a3d2f0d449f1d4dad9c6d5e267 DIST apache-tomcat-9.0.31-src.tar.gz 5812430 BLAKE2B 7ef0f989860b046b4ddbacde50013284a623eb9d81e2c3465b0e04ec9c934a5319293677919ab758243a352fc60cb6691b51f946d8c5a36360b9108dafc5dfe3 SHA512 a0ba9e46a3d2a4cf708e6e29b4647c041495e45865ce5c679c9dcfee77181373a2d3034222701d0f15d5c7e71e6aa3cc7db236c66ba069b3e3660a948b44342f +DIST apache-tomcat-9.0.33-src.tar.gz 5831264 BLAKE2B 7ef5b28dfc4f24003075012cfe6403060dfc908386577ea3dbab3d7a4eca1d22cdcaab3f821079a90d9407030bedf657f5abd9829d643f699ba875b7b702f0a3 SHA512 73ffb36dc7331bf9e455b599b128c51da8f90222bd3cb296e211d266c18964bf66004524725acd6d3e29099d2fdc3180892c228b2a00b06544455240bf05c9b0 DIST biz.aQute.bnd-4.1.0.jar 9263260 BLAKE2B e251a9d8b653f3e815e6c2f7774d64f1d594f3ce4b2f77956c806698df4d873310067cece68663324b11fcef8d90796b087abb289dbe2a13164a9038da4a6260 SHA512 f5d230358840f4909e35de40343fb7ee50a2d4d4691691f5ea896cfe212a086ad4859e0ee6ed4c315211223663b2fb2c07af7ea88786cedbcd4f891e5a4589ef DIST biz.aQute.bndlib-4.1.0.jar 2897463 BLAKE2B c29a55e07cc103919dca1e938722bf94b107e2989a4a8ae887998152a93b641a659a5209129b992432bcb2673dd4b56ec9a929627530a631db10666f2177c0e4 SHA512 2acccbb323f3d740506e89a74c5affab85e628f9062ee0d799ccd09efe0b55436d8887a46d7d94ad636a2c793632635974f1bbb045e4789391937222c8d00d30 diff --git a/www-servers/tomcat/tomcat-8.5.53.ebuild b/www-servers/tomcat/tomcat-8.5.53.ebuild new file mode 100644 index 000000000000..4bdde891a689 --- /dev/null +++ b/www-servers/tomcat/tomcat-8.5.53.ebuild @@ -0,0 +1,158 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JAVA_PKG_IUSE="doc source test" + +inherit eutils java-pkg-2 java-ant-2 prefix user + +MY_P="apache-${P}-src" + +DESCRIPTION="Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container" +HOMEPAGE="https://tomcat.apache.org/" +SRC_URI="mirror://apache/${PN}/tomcat-8/v${PV}/src/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="8.5" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="extra-webapps" + +RESTRICT="test" # can we run them on a production system? + +ECJ_SLOT="4.5" +SAPI_SLOT="3.1" + +COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT} + ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT}" +RDEPEND="${COMMON_DEP} + virtual/jre" +DEPEND="${COMMON_DEP} + app-admin/pwgen + >=dev-java/ant-core-1.9.13 + virtual/jdk:1.8 + test? ( + >=dev-java/ant-junit-1.9:0 + dev-java/easymock:3.2 + )" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + java-pkg-2_pkg_setup + enewgroup tomcat 265 + enewuser tomcat 265 -1 /dev/null tomcat +} + +src_prepare() { + default + + find -name '*.jar' -type f -delete -print || die + + # Remove bundled servlet-api + rm -rv java/javax/{el,servlet} || die + + eapply "${FILESDIR}/${PN}-8.5.47-build.xml.patch" + + # For use of catalina.sh in netbeans + sed -i -e "/^# ----- Execute The Requested Command/ a\ + CLASSPATH=\`java-config --classpath ${PN}-${SLOT}\`" \ + bin/catalina.sh || die + + java-pkg-2_src_prepare +} + +JAVA_ANT_REWRITE_CLASSPATH="true" + +EANT_BUILD_TARGET="deploy" +EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},tomcat-servlet-api-${SAPI_SLOT}" +EANT_TEST_GENTOO_CLASSPATH="easymock-3.2" +EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes" +EANT_NEEDS_TOOLS="true" +EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} -Dcompile.debug=false -Dexecute.validate=false" + +# revisions of the scripts +IM_REV="-r2" +INIT_REV="-r1" + +src_compile() { + EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core ant.jar)" + java-pkg-2_src_compile +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + local dest="/usr/share/${PN}-${SLOT}" + + java-pkg_jarinto "${dest}"/bin + java-pkg_dojar output/build/bin/*.jar + exeinto "${dest}"/bin + doexe output/build/bin/*.sh + + java-pkg_jarinto "${dest}"/lib + java-pkg_dojar output/build/lib/*.jar + + dodoc RELEASE-NOTES RUNNING.txt + use doc && java-pkg_dojavadoc output/dist/webapps/docs/api + use source && java-pkg_dosrc java/* + + ### Webapps ### + + # add missing docBase + local apps="host-manager manager" + for app in ${apps}; do + sed -i -e "s|=\"true\" >|=\"true\" docBase=\"\$\{catalina.home\}/webapps/${app}\" >|" \ + output/build/webapps/${app}/META-INF/context.xml || die + done + + insinto "${dest}"/webapps + doins -r output/build/webapps/{host-manager,manager,ROOT} + use extra-webapps && doins -r output/build/webapps/{docs,examples} + + ### Config ### + + # create "logs" directory in $CATALINA_BASE + # and set correct perms, see #458890 + dodir "${dest}"/logs + fperms 0750 "${dest}"/logs + + # replace the default pw with a random one, see #92281 + local randpw="$(pwgen -s -B 15 1)" + sed -i -e "s|SHUTDOWN|${randpw}|" output/build/conf/server.xml || die + + # prepend gentoo.classpath to common.loader, see #453212 + sed -i -e 's/^common\.loader=/\0${gentoo.classpath},/' output/build/conf/catalina.properties || die + + insinto "${dest}" + doins -r output/build/conf + + ### rc ### + + cp "${FILESDIR}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} "${T}" || die + eprefixify "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} + sed -i -e "s|@SLOT@|${SLOT}|g" "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} || die + + insinto "${dest}"/gentoo + doins "${T}"/tomcat.conf + exeinto "${dest}"/gentoo + newexe "${T}"/tomcat${INIT_REV}.init tomcat.init + newexe "${T}"/tomcat-instance-manager${IM_REV}.bash tomcat-instance-manager.bash +} + +pkg_postinst() { + elog "New ebuilds of Tomcat support running multiple instances. If you used prior version" + elog "of Tomcat (<7.0.32), you have to migrate your existing instance to work with new Tomcat." + elog "You can find more information at https://wiki.gentoo.org/wiki/Apache_Tomcat" + + elog "To manage Tomcat instances, run:" + elog " ${EPREFIX}/usr/share/${PN}-${SLOT}/gentoo/tomcat-instance-manager.bash --help" + + ewarn "tomcat-dbcp.jar is not built at this time. Please fetch jar" + ewarn "from upstream binary if you need it. Gentoo Bug # 144276" + + einfo "Please read https://wiki.gentoo.org/wiki/Apache_Tomcat and" + einfo "https://wiki.gentoo.org/wiki/Project:Java/Tomcat_6_Guide for more information." +} diff --git a/www-servers/tomcat/tomcat-9.0.33.ebuild b/www-servers/tomcat/tomcat-9.0.33.ebuild new file mode 100644 index 000000000000..b0c29cb19e68 --- /dev/null +++ b/www-servers/tomcat/tomcat-9.0.33.ebuild @@ -0,0 +1,181 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JAVA_PKG_IUSE="doc source test" + +inherit eutils java-pkg-2 java-ant-2 prefix user + +MY_P="apache-${PN}-${PV}-src" + +# Currently we bundle binary versions of bnd.jar and bndlib.jar +# See bugs #203080 and #676116 +BND_VERSION="4.1.0" +BND="biz.aQute.bnd-${BND_VERSION}.jar" +BNDLIB="biz.aQute.bndlib-${BND_VERSION}.jar" + +DESCRIPTION="Tomcat Servlet-4.0/JSP-2.4?/EL-3.1?/WebSocket-1.2?/JASPIC-1.1 Container" +HOMEPAGE="https://tomcat.apache.org/" +SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz + https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/${BND_VERSION}/${BND} + https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/${BND_VERSION}/${BNDLIB}" + +LICENSE="Apache-2.0" +SLOT="9" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="extra-webapps" + +RESTRICT="test" # can we run them on a production system? + +ECJ_SLOT="4.13" +SAPI_SLOT="4.0" + +COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT} + dev-java/glassfish-xmlrpc-api:0 + ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT} + dev-java/wsdl4j:0" +RDEPEND="${COMMON_DEP} + virtual/jre" +DEPEND="${COMMON_DEP} + app-admin/pwgen + >=dev-java/ant-core-1.9.13 + virtual/jdk:1.8 + test? ( + >=dev-java/ant-junit-1.9:0 + dev-java/easymock:3.2 + )" + +S=${WORKDIR}/${MY_P} + +BND_HOME="${S}/tomcat-build-libs/bnd" +BNDLIB_HOME="${S}/tomcat-build-libs/bndlib" +BND_JAR="${BND_HOME}/${BND}" +BNDLIB_JAR="${BNDLIB_HOME}/${BND_LIB}" + +src_unpack() { + unpack ${MY_P}.tar.gz + + mkdir -p "${BND_HOME}" "${BNDLIB_HOME}" || die "Failed to create dir" + ln -s "${DISTDIR}/${BND}" "${BND_HOME}/" || die "Failed to symlink bnd-*.jar" + ln -s "${DISTDIR}/${BND}" "${BNDLIB_HOME}/" || die "Failed to symlink bndlib-*.jar" +} + +pkg_setup() { + java-pkg-2_pkg_setup + enewgroup tomcat 265 + enewuser tomcat 265 -1 /dev/null tomcat +} + +src_prepare() { + default + + find -name '*.jar' -type f -delete -print || die + + # Remove bundled servlet-api + rm -rv java/javax/{el,servlet} || die + + eapply "${FILESDIR}/${PN}-9.0.27-build.xml.patch" + + # For use of catalina.sh in netbeans + sed -i -e "/^# ----- Execute The Requested Command/ a\ + CLASSPATH=\`java-config --classpath ${PN}-${SLOT}\`" \ + bin/catalina.sh || die + + java-pkg-2_src_prepare +} + +JAVA_ANT_REWRITE_CLASSPATH="true" + +EANT_BUILD_TARGET="deploy" +EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},tomcat-servlet-api-${SAPI_SLOT},glassfish-xmlrpc-api,wsdl4j" +EANT_TEST_GENTOO_CLASSPATH="easymock-3.2" +EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes" +EANT_NEEDS_TOOLS="true" +EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} -Dcompile.debug=false -Dbnd.jar=${BND_JAR} -Dbndlib.jar=${BNDLIB_JAR}" + +# revisions of the scripts +IM_REV="-r2" +INIT_REV="-r1" + +src_compile() { + EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core ant.jar)" + java-pkg-2_src_compile +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + local dest="/usr/share/${PN}-${SLOT}" + + java-pkg_jarinto "${dest}"/bin + java-pkg_dojar output/build/bin/*.jar + exeinto "${dest}"/bin + doexe output/build/bin/*.sh + + java-pkg_jarinto "${dest}"/lib + java-pkg_dojar output/build/lib/*.jar + + dodoc RELEASE-NOTES RUNNING.txt + use doc && java-pkg_dojavadoc output/dist/webapps/docs/api + use source && java-pkg_dosrc java/* + + ### Webapps ### + + # add missing docBase + local apps="host-manager manager" + for app in ${apps}; do + sed -i -e "s|=\"true\" >|=\"true\" docBase=\"\$\{catalina.home\}/webapps/${app}\" >|" \ + output/build/webapps/${app}/META-INF/context.xml || die + done + + insinto "${dest}"/webapps + doins -r output/build/webapps/{host-manager,manager,ROOT} + use extra-webapps && doins -r output/build/webapps/{docs,examples} + + ### Config ### + + # create "logs" directory in $CATALINA_BASE + # and set correct perms, see #458890 + dodir "${dest}"/logs + fperms 0750 "${dest}"/logs + + # replace the default pw with a random one, see #92281 + local randpw="$(pwgen -s -B 15 1)" + sed -i -e "s|SHUTDOWN|${randpw}|" output/build/conf/server.xml || die + + # prepend gentoo.classpath to common.loader, see #453212 + sed -i -e 's/^common\.loader=/\0${gentoo.classpath},/' output/build/conf/catalina.properties || die + + insinto "${dest}" + doins -r output/build/conf + + ### rc ### + + cp "${FILESDIR}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} "${T}" || die + eprefixify "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} + sed -i -e "s|@SLOT@|${SLOT}|g" "${T}"/tomcat{.conf,${INIT_REV}.init,-instance-manager${IM_REV}.bash} || die + + insinto "${dest}"/gentoo + doins "${T}"/tomcat.conf + exeinto "${dest}"/gentoo + newexe "${T}"/tomcat${INIT_REV}.init tomcat.init + newexe "${T}"/tomcat-instance-manager${IM_REV}.bash tomcat-instance-manager.bash +} + +pkg_postinst() { + elog "New ebuilds of Tomcat support running multiple instances. If you used prior version" + elog "of Tomcat (<7.0.32), you have to migrate your existing instance to work with new Tomcat." + elog "You can find more information at https://wiki.gentoo.org/wiki/Apache_Tomcat" + + elog "To manage Tomcat instances, run:" + elog " ${EPREFIX}/usr/share/${PN}-${SLOT}/gentoo/tomcat-instance-manager.bash --help" + + ewarn "tomcat-dbcp.jar is not built at this time. Please fetch jar" + ewarn "from upstream binary if you need it. Gentoo Bug # 144276" + + einfo "Please read https://wiki.gentoo.org/wiki/Apache_Tomcat and" + einfo "https://wiki.gentoo.org/wiki/Project:Java/Tomcat_6_Guide for more information." +} diff --git a/www-servers/tornado/tornado-4.5.3.ebuild b/www-servers/tornado/tornado-4.5.3.ebuild index 2daf907e25da..9de109a2f008 100644 --- a/www-servers/tornado/tornado-4.5.3.ebuild +++ b/www-servers/tornado/tornado-4.5.3.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 ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples test" +IUSE="examples test" RESTRICT="!test? ( test )" CDEPEND=" @@ -36,10 +36,6 @@ CDEPEND=" " DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) test? ( ${CDEPEND} dev-python/mock[${PYTHON_USEDEP}] @@ -47,21 +43,19 @@ DEPEND=" " RDEPEND="${CDEPEND}" +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme + # doc without intersphinx does not build (asyncio error) #PATCHES=( # "${FILESDIR}"/4.5.1-drop-intersphinx.patch #) -python_compile_all() { - use doc && emake -C docs sphinx -} - python_test() { "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" } python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) if use examples; then insinto /usr/share/doc/${PF}/examples doins -r demos/. diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild b/www-servers/tornado/tornado-5.1-r1.ebuild index 11bf422e43d5..d2edc90b3331 100644 --- a/www-servers/tornado/tornado-5.1-r1.ebuild +++ b/www-servers/tornado/tornado-5.1-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 ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples test" +IUSE="examples test" RESTRICT="!test? ( test )" CDEPEND=" @@ -30,10 +30,6 @@ CDEPEND=" " DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) test? ( ${CDEPEND} dev-python/mock[${PYTHON_USEDEP}] @@ -41,21 +37,19 @@ DEPEND=" " RDEPEND="${CDEPEND}" +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme + # doc without intersphinx does not build (asyncio error) #PATCHES=( # "${FILESDIR}"/4.5.1-drop-intersphinx.patch #) -python_compile_all() { - use doc && emake -C docs sphinx -} - python_test() { "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" } python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) if use examples; then insinto /usr/share/doc/${PF}/examples doins -r demos/. diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild b/www-servers/tornado/tornado-6.0.3-r1.ebuild new file mode 100644 index 000000000000..b9f80356d573 --- /dev/null +++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild @@ -0,0 +1,54 @@ +# 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(+)" + +inherit distutils-r1 + +DESCRIPTION="Python web framework and asynchronous networking library" +HOMEPAGE="https://www.tornadoweb.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="examples test" +RESTRICT="!test? ( test )" + +CDEPEND=" + >=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}] + >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${CDEPEND} + dev-python/mock[${PYTHON_USEDEP}] + ) +" +RDEPEND="${CDEPEND}" + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme \ + dev-python/sphinxcontrib-asyncio + +# doc without intersphinx does not build (asyncio error) +#PATCHES=( +# "${FILESDIR}"/4.5.1-drop-intersphinx.patch +#) + +python_test() { + "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" +} + +python_install_all() { + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r demos/. + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all +} diff --git a/www-servers/tornado/tornado-6.0.3.ebuild b/www-servers/tornado/tornado-6.0.3.ebuild index 6f6d43e67095..154b14a5124f 100644 --- a/www-servers/tornado/tornado-6.0.3.ebuild +++ b/www-servers/tornado/tornado-6.0.3.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 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples test" +IUSE="examples test" RESTRICT="!test? ( test )" CDEPEND=" @@ -24,10 +24,6 @@ CDEPEND=" " DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] - ) test? ( ${CDEPEND} dev-python/mock[${PYTHON_USEDEP}] @@ -35,21 +31,19 @@ DEPEND=" " RDEPEND="${CDEPEND}" +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme + # doc without intersphinx does not build (asyncio error) #PATCHES=( # "${FILESDIR}"/4.5.1-drop-intersphinx.patch #) -python_compile_all() { - use doc && emake -C docs sphinx -} - python_test() { "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" } python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) if use examples; then insinto /usr/share/doc/${PF}/examples doins -r demos/. diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index 5b501689902e..aac4e0f1685d 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/pcmanfm/Manifest b/x11-misc/pcmanfm/Manifest index cfa29c589d62..fb8f8b08509a 100644 --- a/x11-misc/pcmanfm/Manifest +++ b/x11-misc/pcmanfm/Manifest @@ -1,3 +1 @@ -DIST pcmanfm-1.2.3.tar.xz 406756 BLAKE2B e8f4c166559266b4628f5fda4b7595ea8a28e37aa71cc3ec957ff04af8c919a248da5b189eb52040f2d049f633313cf9386c77b331b8e491ed4b3a69615c5010 SHA512 b350566c3aee0fe857ed1f0df2ae7d2ce51caf1547b951b380145078ba60f2fe6e0490c4d4c19465c5b1e0a9966205db6f8fe4dafb7cb3e987b9157551df2b28 -DIST pcmanfm-1.2.5.tar.xz 417808 BLAKE2B 1bc4ff7879baa1b62c5acf0b48977f5a81b5bac2d449064ed3ae74740f8e6981ae129cdfe123b63e57e2a22769273348df1a48def61eeb6a72a5918fdad2847c SHA512 ce53315483f58361c5a7797bdca355dbbedc2cf3907d319c7c65be844ea74ed297497dc3183c903e06b8294f6301d19347f6b9871e34bf773c04ff4fb8ab32f3 DIST pcmanfm-1.3.1.tar.xz 423380 BLAKE2B c117f789d88b8c776f09dd598256bc889bf1d1ea2854a646da30e57e8e3b4a1410cf8411841e1b3c303f7f0cf4ec3d4046c0e05ad9c453efd1589592415119f3 SHA512 68fbc55b3ffd9da17c861d2cc41590a455ec2c0eb590ba4862f8a0ae01caac34a58645d847d318553ff588df20d355bbcbf1138a792cb45922eb04b047f681c4 diff --git a/x11-misc/pcmanfm/files/pcmanfm-1.2.5-CVE-2017-8934.patch b/x11-misc/pcmanfm/files/pcmanfm-1.2.5-CVE-2017-8934.patch deleted file mode 100644 index 2acd91bffe24..000000000000 --- a/x11-misc/pcmanfm/files/pcmanfm-1.2.5-CVE-2017-8934.patch +++ /dev/null @@ -1,40 +0,0 @@ -# index 8c2049a..876f7f3 100644 (file) -# --- a/NEWS -# +++ b/NEWS -# @@ -1,3 +1,7 @@ -# +* Fixed potential access violation, use runtime user dir instead of tmp dir -# + for single instance socket. -# + -# + -# Changes on 1.2.5 since 1.2.4: - - * Removed options to Cut, Remove and Rename from context menu on mounted -diff --git a/src/single-inst.c b/src/single-inst.c -index 62c37b3..aaf84ab 100644 (file) ---- a/src/single-inst.c -+++ b/src/single-inst.c -@@ -2,7 +2,7 @@ - * single-inst.c: simple IPC mechanism for single instance app - * - * Copyright 2010 Hong Jen Yee (PCMan) -- * Copyright 2012 Andriy Grytsenko (LStranger) -+ * Copyright 2012-2017 Andriy Grytsenko (LStranger) - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by -@@ -404,11 +404,16 @@ static void get_socket_name(SingleInstData* data, char* buf, int len) - } - else - dpynum = 0; -+#if GLIB_CHECK_VERSION(2, 28, 0) -+ g_snprintf(buf, len, "%s/%s-socket-%s-%d", g_get_user_runtime_dir(), -+ data->prog_name, host ? host : "", dpynum); -+#else - g_snprintf(buf, len, "%s/.%s-socket-%s-%d-%s", - g_get_tmp_dir(), - data->prog_name, - host ? host : "", - dpynum, - g_get_user_name()); -+#endif - } diff --git a/x11-misc/pcmanfm/pcmanfm-1.2.3.ebuild b/x11-misc/pcmanfm/pcmanfm-1.2.3.ebuild deleted file mode 100644 index 968a5439acb5..000000000000 --- a/x11-misc/pcmanfm/pcmanfm-1.2.3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PLOCALES="ar be bg bn ca cs da de el en_GB es et eu fa fi fo fr gl he hr hu id -is it ja kk km ko lg lt lv ms nl pa pl pt pt_BR ro ru si sk sl sr sr@latin sv -te th tr tt_RU ug uk vi zh_CN zh_TW" -PLOCALE_BACKUP="en_GB" - -inherit eutils xdg-utils l10n readme.gentoo - -MY_PV="${PV/_/}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Fast lightweight tabbed filemanager" -HOMEPAGE="https://wiki.lxde.org/en/PCManFM" -SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${MY_P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~mips ppc x86" -IUSE="debug" - -RDEPEND=">=dev-libs/glib-2.18:2 - >=x11-libs/gtk+-2.16:2 - >=lxde-base/menu-cache-0.3.2 - x11-misc/shared-mime-info - >=x11-libs/libfm-${PV}:=[gtk(+)] - virtual/eject - virtual/freedesktop-icon-theme" -DEPEND="${RDEPEND} - app-arch/xz-utils - >=dev-util/intltool-0.40 - virtual/pkgconfig - sys-devel/gettext" - -S="${WORKDIR}"/${MY_P} - -DOCS=( AUTHORS ) - -DOC_CONTENTS="PCmanFM can optionally support the menu://applications/ - location. You should install lxde-base/lxmenu-data for that functionality." - -src_prepare() { - export LINGUAS="${LINGUAS:-${PLOCALE_BACKUP}}" - l10n_get_locales > "${S}"/po/LINGUAS - epatch_user -} - -src_configure() { - econf --sysconfdir=/etc $(use_enable debug) -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update - readme.gentoo_print_elog -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/x11-misc/pcmanfm/pcmanfm-1.2.5.ebuild b/x11-misc/pcmanfm/pcmanfm-1.2.5.ebuild deleted file mode 100644 index 79c9d379f078..000000000000 --- a/x11-misc/pcmanfm/pcmanfm-1.2.5.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PLOCALES="ar be bg bn ca cs da de el en_GB es et eu fa fi fo fr gl he hr hu id -is it ja kk km ko lg lt lv ms nl pa pl pt pt_BR ro ru si sk sl sr sr@latin sv -te th tr tt_RU ug uk vi zh_CN zh_TW" -PLOCALE_BACKUP="en_GB" - -inherit eutils xdg-utils l10n readme.gentoo-r1 - -MY_PV="${PV/_/}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Fast lightweight tabbed filemanager" -HOMEPAGE="https://wiki.lxde.org/en/PCManFM" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~mips ppc x86" -IUSE="debug" - -RDEPEND=">=dev-libs/glib-2.18:2 - >=x11-libs/gtk+-2.16:2 - >=lxde-base/menu-cache-0.3.2 - x11-misc/shared-mime-info - >=x11-libs/libfm-${PV}:=[gtk(+)] - virtual/eject - virtual/freedesktop-icon-theme" -DEPEND="${RDEPEND} - app-arch/xz-utils - >=dev-util/intltool-0.40 - virtual/pkgconfig - sys-devel/gettext" - -S="${WORKDIR}"/${MY_P} - -PATCHES=( "${FILESDIR}"/${PN}-1.2.5-CVE-2017-8934.patch ) - -src_prepare() { - default - - export LINGUAS="${LINGUAS:-${PLOCALE_BACKUP}}" - l10n_get_locales > po/LINGUAS || die -} - -src_configure() { - econf \ - --sysconfdir="${EPREFIX}"/etc \ - $(use_enable debug) -} - -src_install() { - default - - local DOC_CONTENTS="PCmanFM can optionally support the menu://applications/ - location. You should install lxde-base/lxmenu-data for that functionality." - readme.gentoo_create_doc -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update - readme.gentoo_print_elog -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/x11-misc/shutter/Manifest b/x11-misc/shutter/Manifest index d7a0818090e9..3f3665f066d3 100644 --- a/x11-misc/shutter/Manifest +++ b/x11-misc/shutter/Manifest @@ -1,2 +1 @@ -DIST shutter-0.93.1.tar.gz 3432204 BLAKE2B 7c61942c1ddc288b912e8addd31111309b2b7305582f0d684f364552e4695ad45a54b2ef39b456f4410ee1434f20422c1abf0fffd7c15525e25810fd58a28008 SHA512 50a635fdf73454b15351a7e2c4507bf0f9fd816273affbed412f42b1032087304ecf1fb4a4b655bc056820f267b98214ff5104f4fcd9e843f78e70ac4a7a4a04 DIST shutter-0.94.3.tar.gz 3375447 BLAKE2B e996966722999ee11ed3c185fd17a77e8982688ec17253f3558f89ccfd2e3afefec34d9214acffb10009fc1a28f587a5b994e32d7bb3538cde5e4f398b8e7b95 SHA512 7f67ed6fbc94aee4b6caa73662ab20684e2d8bdfd7208dcd407bdce4e1b93f2aa1fa256ad6bce66b92c741500726b90e5701e7f31bc831709568e5c4c27bff3b diff --git a/x11-misc/shutter/files/shutter-0.90-webphoto.patch b/x11-misc/shutter/files/shutter-0.90-webphoto.patch deleted file mode 100644 index 647e53aa5e04..000000000000 --- a/x11-misc/shutter/files/shutter-0.90-webphoto.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: shutter-0.90/bin/shutter -=================================================================== ---- shutter-0.90.orig/bin/shutter -+++ shutter-0.90/bin/shutter -@@ -9396,11 +9396,7 @@ else { - die "ERROR: imagemagick is missing --> aborting!\n\n"; - } - -- #gnome-web-photo -- unless ( File::Which::which('gnome-web-photo') ) { -- warn "WARNING: gnome-web-photo is missing --> screenshots of websites will be disabled!\n\n"; -- $gnome_web_photo = FALSE; -- } -+ $gnome_web_photo = FALSE; - - #nautilus-sendto - unless ( File::Which::which('nautilus-sendto') ) { diff --git a/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch b/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch deleted file mode 100644 index e71a44f21c08..000000000000 --- a/x11-misc/shutter/files/shutter-0.93.1-insecure_use_of_system.patch +++ /dev/null @@ -1,19 +0,0 @@ -Description: Fix insecure use of system() -Author: Luke Faraone -Bug: https://bugs.launchpad.net/shutter/+bug/1495163 -Debian-Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798862 - -Index: shutter/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm -=================================================================== ---- shutter.orig/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm 2015-11-05 21:34:34.222313258 -0500 -+++ shutter/share/shutter/resources/modules/Shutter/App/HelperFunctions.pm 2015-11-05 21:35:37.299461116 -0500 -@@ -53,7 +53,8 @@ - - sub xdg_open { - my ( $self, $dialog, $link, $user_data ) = @_; -- system("xdg-open $link"); -+ my @args = ("xdg-open", $link); -+ system(@args); - if($?){ - my $response = $self->{_dialogs}->dlg_error_message( - sprintf( $self->{_d}->get("Error while executing %s."), "'xdg-open'"), diff --git a/x11-misc/shutter/shutter-0.93.1-r3.ebuild b/x11-misc/shutter/shutter-0.93.1-r3.ebuild deleted file mode 100644 index e16c4a878a4e..000000000000 --- a/x11-misc/shutter/shutter-0.93.1-r3.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils - -DESCRIPTION="Feature-rich screenshot program" -HOMEPAGE="http://shutter-project.org/" -SRC_URI="http://shutter-project.org/wp-content/uploads/releases/tars/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="drawing" - -RDEPEND="dev-lang/perl - drawing? ( dev-perl/Goo-Canvas ) - dev-perl/libxml-perl - dev-perl/gnome2-canvas - dev-perl/gnome2-perl - dev-perl/gnome2-wnck - dev-perl/Gtk2-Unique - dev-perl/Gtk2-ImageView - dev-perl/File-DesktopEntry - dev-perl/File-HomeDir - dev-perl/File-Which - dev-perl/JSON - dev-perl/File-Copy-Recursive - dev-perl/File-MimeInfo - dev-perl/Locale-gettext - dev-perl/Net-DBus - dev-perl/Proc-Simple - dev-perl/Proc-ProcessTable - dev-perl/Sort-Naturally - dev-perl/WWW-Mechanize - dev-perl/X11-Protocol - dev-perl/XML-Simple - dev-perl/libwww-perl - virtual/imagemagick-tools[perl]" - -src_prepare() { - default - - eapply "${FILESDIR}"/${PN}-0.90-webphoto.patch - use drawing || eapply "${FILESDIR}"/${PN}-0.90-goocanvas.patch - - # 560426 - eapply "${FILESDIR}"/${P}-insecure_use_of_system.patch - - #Fix tray icon because it doesn't pick the right icon using various themes - sed -i -e "/\$tray->set_from_icon_name/s:set_from_icon_name:set_from_file:" \ - -e "s:shutter-panel:/usr/share/icons/hicolor/scalable/apps/&.svg:" \ - bin/shutter || die "failed to fix trayicon" -} - -src_install() { - dobin bin/${PN} - insinto /usr/share/${PN} - doins -r share/${PN}/* - dodoc README - domenu share/applications/${PN}.desktop - # Man page is broken. Reconstruct it. - gunzip share/man/man1/${PN}.1.gz || die "gunzip failed" - doman share/man/man1/${PN}.1 - doicon share/pixmaps/${PN}.png - doins -r share/locale - insinto /usr/share/icons/hicolor - doins -r share/icons/hicolor/* - find "${D}"/usr/share/shutter/resources/system/plugins/ -type f ! -name '*.*' -exec chmod 755 {} \; \ - || die "failed to make plugins executables" - find "${D}"/usr/share/shutter/resources/system/upload_plugins/upload -type f \ - -name "*.pm" -exec chmod 755 {} \; || die "failed to make upload plugins executables" -} - -pkg_postinst() { - elog "" - elog "The following optional dependencies can be used to provide" - elog "additional functionality:" - elog "" - elog "- media-libs/exiftool : Writing Exif information" - elog "- dev-libs/libappindicator : Status icon support for Unity" - elog "- dev-perl/{Net-OAuth,Path-Class}: Dropbox support" - elog "- dev-perl/JSON-XS : vgy.me image hosting support" - elog"" -} diff --git a/x11-misc/xystray/xystray-1.0.ebuild b/x11-misc/xystray/xystray-1.0.ebuild index 52f7b474b722..d640d249dafd 100644 --- a/x11-misc/xystray/xystray-1.0.ebuild +++ b/x11-misc/xystray/xystray-1.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 DESCRIPTION="A simple implementation of freedesktop.org notification area for X" -HOMEPAGE="http://steelman.github.com/xystray/" +HOMEPAGE="https://steelman.github.com/xystray/" SRC_URI="https://github.com/steelman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz index 781f07a9ed9f..2b6b93462b8a 100644 Binary files a/x11-themes/Manifest.gz and b/x11-themes/Manifest.gz differ diff --git a/x11-themes/gnome-backgrounds/Manifest b/x11-themes/gnome-backgrounds/Manifest index 7325cb37f803..1fa890e861f5 100644 --- a/x11-themes/gnome-backgrounds/Manifest +++ b/x11-themes/gnome-backgrounds/Manifest @@ -1 +1,2 @@ DIST gnome-backgrounds-3.32.0.tar.xz 31797916 BLAKE2B 6df0bf94707ed44ef7cb0da4f51397d00a50428940549a09117e2b99b45f09709b53b4050df1778cb29f9a8d05ecb634fb4615ea8420886bc21623d05315b614 SHA512 7165f6102bc39b18253ea82f4039a1caca1b2ece6b5e98323c66a24221e6861b74e31d39e07782658ad76282e55d45136314dafb9ea0bcd3d4652aece2ba3797 +DIST gnome-backgrounds-3.34.0.tar.xz 31634888 BLAKE2B 5d14bf6cff16880c5c3d296d5d6587afda4ba0367922ffdf4aac6edca5bd7cb5efe8b45b60c6139d4542e752a88b36d1300d475a921bba9587f6284c3d149ba0 SHA512 bea6df85611a845c1013091dfccfd1d1fc697781a74348d936c15f8cec1ace765c37e6f57fed403cc2c6a91a18e522c8cc3db74b2c2327cd3ed71371075a9834 diff --git a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.34.0.ebuild b/x11-themes/gnome-backgrounds/gnome-backgrounds-3.34.0.ebuild new file mode 100644 index 000000000000..d7c4ad3f3690 --- /dev/null +++ b/x11-themes/gnome-backgrounds/gnome-backgrounds-3.34.0.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome.org meson + +DESCRIPTION="A set of backgrounds packaged with the GNOME desktop" +HOMEPAGE="https://git.gnome.org/browse/gnome-backgrounds" + +LICENSE="CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="!