diff --git a/Manifest b/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/app-accessibility/Manifest.gz b/app-accessibility/Manifest.gz new file mode 100644 index 000000000000..94cb756d91e8 Binary files /dev/null and b/app-accessibility/Manifest.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz new file mode 100644 index 000000000000..de5d63435bee Binary files /dev/null and b/app-admin/Manifest.gz differ diff --git a/app-antivirus/Manifest b/app-antivirus/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/app-antivirus/clamav/clamav-0.99.2-r1.ebuild b/app-antivirus/clamav/clamav-0.99.2-r1.ebuild index a44017407cfa..ec11c3e098f8 100644 --- a/app-antivirus/clamav/clamav-0.99.2-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.99.2-r1.ebuild @@ -24,7 +24,7 @@ CDEPEND="bzip2? ( app-arch/bzip2 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-devel/libtool - >dev-libs/libpcre-6 + || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) !! +Date: Wed, 13 Sep 2017 22:58:14 +0200 +Subject: [PATCH 1/4] XRef::parseEntry: Fix crash in broken file + +Bug #102687 +--- + poppler/XRef.cc | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/poppler/XRef.cc b/poppler/XRef.cc +index 6ea0fbb6..c74f2f60 100644 +--- a/poppler/XRef.cc ++++ b/poppler/XRef.cc +@@ -1603,6 +1603,9 @@ GBool XRef::parseEntry(Goffset offset, XRefEntry *entry) + { + GBool r; + ++ if (unlikely(entry == nullptr)) ++ return gFalse; ++ + Object obj; + obj.initNull(); + Parser parser = Parser(NULL, new Lexer(NULL, +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch new file mode 100644 index 000000000000..9e8f4bfe6246 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14518.patch @@ -0,0 +1,27 @@ +From 6ba3bba6447897260bf4117e191e09d89d91ff62 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Wed, 13 Sep 2017 23:09:45 +0200 +Subject: [PATCH 2/4] isImageInterpolationRequired: Fix divide by 0 on broken + documents + +Bug #102688 +--- + splash/Splash.cc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/splash/Splash.cc b/splash/Splash.cc +index 46b8ce29..39fc7d64 100644 +--- a/splash/Splash.cc ++++ b/splash/Splash.cc +@@ -4134,7 +4134,7 @@ SplashError Splash::arbitraryTransformImage(SplashImageSource src, SplashICCTran + static GBool isImageInterpolationRequired(int srcWidth, int srcHeight, + int scaledWidth, int scaledHeight, + GBool interpolate) { +- if (interpolate) ++ if (interpolate || srcWidth == 0 || srcHeight == 0) + return gTrue; + + /* When scale factor is >= 400% we don't interpolate. See bugs #25268, #9860 */ +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14519.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14519.patch new file mode 100644 index 000000000000..bd84e96fba3b --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14519.patch @@ -0,0 +1,100 @@ +From 778180c0c09002f6adfc272eba6b0d0e4401c4cc Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Wed, 13 Sep 2017 23:01:03 +0200 +Subject: [PATCH 3/4] Gfx::doShowText: Fix infinite recursion on broken files + +Bug #102701 +--- + poppler/Gfx.cc | 25 +++++++++++++++++++++++-- + poppler/Gfx.h | 1 + + poppler/GfxFont.cc | 9 +++++++++ + poppler/GfxFont.h | 1 + + 4 files changed, 34 insertions(+), 2 deletions(-) + +diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc +index 37220280..9feac54c 100644 +--- a/poppler/Gfx.cc ++++ b/poppler/Gfx.cc +@@ -4031,12 +4031,33 @@ void Gfx::doShowText(GooString *s) { + state->transformDelta(dx, dy, &ddx, &ddy); + if (!out->beginType3Char(state, curX + riseX, curY + riseY, ddx, ddy, + code, u, uLen)) { +- ((Gfx8BitFont *)font)->getCharProc(code, &charProc); ++ ((Gfx8BitFont *)font)->getCharProcNF(code, &charProc); ++ int refNum = -1; ++ if (charProc.isRef()) { ++ refNum = charProc.getRef().num; ++ charProc.fetch(((Gfx8BitFont *)font)->getCharProcs()->getXRef(), &charProc); ++ } + if ((resDict = ((Gfx8BitFont *)font)->getResources())) { + pushResources(resDict); + } + if (charProc.isStream()) { +- display(&charProc, gFalse); ++ std::set::iterator charProcDrawingIt; ++ bool displayCharProc = true; ++ if (refNum != -1) { ++ if (charProcDrawing.find(refNum) == charProcDrawing.end()) { ++ charProcDrawingIt = charProcDrawing.insert(refNum).first; ++ } else { ++ displayCharProc = false; ++ error(errSyntaxError, -1, "CharProc wants to draw a CharProc that is already beign drawn"); ++ } ++ } ++ if (displayCharProc) { ++ display(&charProc, gFalse); ++ ++ if (refNum != -1) { ++ charProcDrawing.erase(charProcDrawingIt); ++ } ++ } + } else { + error(errSyntaxError, getPos(), "Missing or bad Type3 CharProc entry"); + } +diff --git a/poppler/Gfx.h b/poppler/Gfx.h +index a82f9f4a..44adaed5 100644 +--- a/poppler/Gfx.h ++++ b/poppler/Gfx.h +@@ -228,6 +228,7 @@ private: + Parser *parser; // parser for page content stream(s) + + std::set formsDrawing; // the forms that are being drawn ++ std::set charProcDrawing; // the charProc that are being drawn + + GBool // callback to check for an abort + (*abortCheckCbk)(void *data); +diff --git a/poppler/GfxFont.cc b/poppler/GfxFont.cc +index b59ec06c..bb87c5a0 100644 +--- a/poppler/GfxFont.cc ++++ b/poppler/GfxFont.cc +@@ -1818,6 +1818,15 @@ Object *Gfx8BitFont::getCharProc(int code, Object *proc) { + return proc; + } + ++Object *Gfx8BitFont::getCharProcNF(int code, Object *proc) { ++ if (enc[code] && charProcs.isDict()) { ++ charProcs.dictLookupNF(enc[code], proc); ++ } else { ++ proc->initNull(); ++ } ++ return proc; ++} ++ + Dict *Gfx8BitFont::getResources() { + return resources.isDict() ? resources.getDict() : (Dict *)NULL; + } +diff --git a/poppler/GfxFont.h b/poppler/GfxFont.h +index de7a7464..89a0ca0d 100644 +--- a/poppler/GfxFont.h ++++ b/poppler/GfxFont.h +@@ -353,6 +353,7 @@ public: + + // Return the Type 3 CharProc for the character associated with . + Object *getCharProc(int code, Object *proc); ++ Object *getCharProcNF(int code, Object *proc); + + // Return the Type 3 Resources dictionary, or NULL if none. + Dict *getResources(); +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14520.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14520.patch new file mode 100644 index 000000000000..f71ff53f61ac --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14520.patch @@ -0,0 +1,24 @@ +From 504b3590182175390f474657a372e78fb1508262 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Thu, 14 Sep 2017 19:14:23 +0200 +Subject: Splash::scaleImage: Do not try to scale if srcHeight or srcWidth are + < 1 + +Bug #102719 + +diff --git a/splash/Splash.cc b/splash/Splash.cc +index 39fc7d6..aba7814 100644 +--- a/splash/Splash.cc ++++ b/splash/Splash.cc +@@ -4152,7 +4152,7 @@ SplashBitmap *Splash::scaleImage(SplashImageSource src, void *srcData, + SplashBitmap *dest; + + dest = new SplashBitmap(scaledWidth, scaledHeight, 1, srcMode, srcAlpha, gTrue, bitmap->getSeparationList()); +- if (dest->getDataPtr() != NULL) { ++ if (dest->getDataPtr() != NULL && srcHeight > 0 && srcWidth > 0) { + if (scaledHeight < srcHeight) { + if (scaledWidth < srcWidth) { + scaleImageYdXd(src, srcData, srcMode, nComps, srcAlpha, +-- +cgit v0.10.2 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14617.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14617.patch new file mode 100644 index 000000000000..279479536129 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14617.patch @@ -0,0 +1,31 @@ +From 939465c40902d72e0c05d4f3a27ee67e4a007ed7 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Tue, 19 Sep 2017 21:19:03 +0200 +Subject: [PATCH] Fix crash in broken files + +Bug #102854 +--- + poppler/Stream.cc | 5 ++--- + 1 file changed, 2 insertions(+), 3 deletions(-) + +diff --git a/poppler/Stream.cc b/poppler/Stream.cc +index f4eda85b..0ad602c7 100644 +--- a/poppler/Stream.cc ++++ b/poppler/Stream.cc +@@ -454,11 +454,10 @@ ImageStream::ImageStream(Stream *strA, int widthA, int nCompsA, int nBitsA) { + } else { + imgLineSize = nVals; + } +- if (width > INT_MAX / nComps) { +- // force a call to gmallocn(-1,...), which will throw an exception ++ if (nComps <= 0 || width > INT_MAX / nComps) { + imgLineSize = -1; + } +- imgLine = (Guchar *)gmallocn(imgLineSize, sizeof(Guchar)); ++ imgLine = (Guchar *)gmallocn_checkoverflow(imgLineSize, sizeof(Guchar)); + } + imgIdx = nVals; + } +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14926.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14926.patch new file mode 100644 index 000000000000..882cf0e2b8b5 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14926.patch @@ -0,0 +1,36 @@ +From 170fe21144d469d3f865eda6e298df440b784499 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Fri, 8 Sep 2017 18:28:15 +0200 +Subject: [PATCH 2/3] Annot: Fix crash on broken files + +Bug #102601 + +(cherry picked from commit 2532df6060092e9fab7f041ae9598aff9cdd94bb) +--- + poppler/Annot.cc | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/poppler/Annot.cc b/poppler/Annot.cc +index 27b698db..643ff12c 100644 +--- a/poppler/Annot.cc ++++ b/poppler/Annot.cc +@@ -6865,13 +6865,13 @@ AnnotRichMedia::Content::Content(Dict *dict) { + assets = (Asset **)gmallocn(nAssets, sizeof(Asset *)); + + int counter = 0; +- for (int i = 0; i < obj2.arrayGetLength(); i += 2) { ++ for (int i = 0; i < nAssets; ++i) { + Object objKey; + + assets[counter] = new AnnotRichMedia::Asset; + +- obj2.arrayGet(i, &objKey); +- obj2.arrayGet(i + 1, &assets[counter]->fileSpec); ++ obj2.arrayGet(i * 2, &objKey); ++ obj2.arrayGet(i * 2 + 1, &assets[counter]->fileSpec); + + assets[counter]->name = new GooString( objKey.getString() ); + ++counter; +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14927.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14927.patch new file mode 100644 index 000000000000..3595345800f0 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14927.patch @@ -0,0 +1,32 @@ +From 876e7f76159e2b12ee7d2d396f327dd2cc90bcb0 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Fri, 8 Sep 2017 18:26:05 +0200 +Subject: [PATCH 3/3] SplashOutputDev: Fix crash on broken files + +Bug #102604 + +(cherry picked from commit 6472d8493f7e82cc78b41da20a2bf19fcb4e0a7d) +--- + poppler/SplashOutputDev.cc | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/poppler/SplashOutputDev.cc b/poppler/SplashOutputDev.cc +index 5502be64..46b55a42 100644 +--- a/poppler/SplashOutputDev.cc ++++ b/poppler/SplashOutputDev.cc +@@ -2714,7 +2714,11 @@ void SplashOutputDev::endType3Char(GfxState *state) { + } + + void SplashOutputDev::type3D0(GfxState *state, double wx, double wy) { +- t3GlyphStack->haveDx = gTrue; ++ if (likely(t3GlyphStack != nullptr)) { ++ t3GlyphStack->haveDx = gTrue; ++ } else { ++ error(errSyntaxWarning, -1, "t3GlyphStack was null in SplashOutputDev::type3D0"); ++ } + } + + void SplashOutputDev::type3D1(GfxState *state, double wx, double wy, +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14928.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14928.patch new file mode 100644 index 000000000000..bd2af863423b --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14928.patch @@ -0,0 +1,69 @@ +From 6bf7212c44d0131c8f8227a4a4dadc52a3afebd9 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Fri, 8 Sep 2017 18:29:42 +0200 +Subject: [PATCH 1/3] Annot: Fix crash on broken files + +Bug #102607 + +(cherry picked from commit 1316c7a41f4dd7276f404f775ebb5fef2d24ab1c) +--- + poppler/Annot.cc | 42 +++++++++++++++++++++++------------------- + 1 file changed, 23 insertions(+), 19 deletions(-) + +diff --git a/poppler/Annot.cc b/poppler/Annot.cc +index 974b098b..27b698db 100644 +--- a/poppler/Annot.cc ++++ b/poppler/Annot.cc +@@ -6982,26 +6982,30 @@ AnnotRichMedia::Configuration::Configuration(Dict *dict) + } else if (!strcmp(name, "Video")) { + type = typeVideo; + } else { +- // determine from first instance ++ // determine from first non null instance ++ type = typeFlash; // default in case all instances are null + if (instances && nInstances > 0) { +- AnnotRichMedia::Instance *instance = instances[0]; +- switch (instance->getType()) { +- case AnnotRichMedia::Instance::type3D: +- type = type3D; +- break; +- case AnnotRichMedia::Instance::typeFlash: +- type = typeFlash; +- break; +- case AnnotRichMedia::Instance::typeSound: +- type = typeSound; +- break; +- case AnnotRichMedia::Instance::typeVideo: +- type = typeVideo; +- break; +- default: +- type = typeFlash; +- break; +- } ++ for (int i = 0; i < nInstances; ++i) { ++ AnnotRichMedia::Instance *instance = instances[i]; ++ if (instance) { ++ switch (instance->getType()) { ++ case AnnotRichMedia::Instance::type3D: ++ type = type3D; ++ break; ++ case AnnotRichMedia::Instance::typeFlash: ++ type = typeFlash; ++ break; ++ case AnnotRichMedia::Instance::typeSound: ++ type = typeSound; ++ break; ++ case AnnotRichMedia::Instance::typeVideo: ++ type = typeVideo; ++ break; ++ } ++ // break the loop since we found the first non null instance ++ break; ++ } ++ } + } + } + } +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-14929.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14929.patch new file mode 100644 index 000000000000..11745ca5436d --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-14929.patch @@ -0,0 +1,252 @@ +From accdc5be215c7ee3223e3ad21dee7708d910ef23 Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Mon, 25 Sep 2017 19:33:44 +0200 +Subject: [PATCH 4/4] Fix infinite recursion on broken files + +Bug #102969 +--- + poppler/Gfx.cc | 46 ++++++++++++++++++++++++++++++++++------------ + poppler/GfxState.cc | 33 ++++++++++++++++++--------------- + poppler/GfxState.h | 15 +++++++++------ + 3 files changed, 61 insertions(+), 33 deletions(-) + +diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc +index 9feac54c..66d0a24c 100644 +--- a/poppler/Gfx.cc ++++ b/poppler/Gfx.cc +@@ -468,8 +468,14 @@ GfxPattern *GfxResources::lookupPattern(char *name, OutputDev *out, GfxState *st + + for (resPtr = this; resPtr; resPtr = resPtr->next) { + if (resPtr->patternDict.isDict()) { +- if (!resPtr->patternDict.dictLookup(name, &obj)->isNull()) { +- pattern = GfxPattern::parse(resPtr, &obj, out, state); ++ if (!resPtr->patternDict.dictLookupNF(name, &obj)->isNull()) { ++ Ref patternRef = { -1, -1 }; ++ if (obj.isRef()) { ++ patternRef = obj.getRef(); ++ obj.fetch(resPtr->patternDict.getDict()->getXRef(), &obj); ++ } ++ ++ pattern = GfxPattern::parse(resPtr, &obj, out, state, patternRef.num); + obj.free(); + return pattern; + } +@@ -2298,18 +2304,34 @@ void Gfx::doTilingPatternFill(GfxTilingPattern *tPat, + xi0, yi0, xi1, yi1, xstep, ystep)) { + goto restore; + } else { +- out->updatePatternOpacity(state); +- for (yi = yi0; yi < yi1; ++yi) { +- for (xi = xi0; xi < xi1; ++xi) { +- x = xi * xstep; +- y = yi * ystep; +- m1[4] = x * m[0] + y * m[2] + m[4]; +- m1[5] = x * m[1] + y * m[3] + m[5]; +- drawForm(tPat->getContentStream(), tPat->getResDict(), +- m1, tPat->getBBox()); ++ bool shouldDrawForm = gTrue; ++ std::set::iterator patternRefIt; ++ const int patternRefNum = tPat->getPatternRefNum(); ++ if (patternRefNum != -1) { ++ if (formsDrawing.find(patternRefNum) == formsDrawing.end()) { ++ patternRefIt = formsDrawing.insert(patternRefNum).first; ++ } else { ++ shouldDrawForm = gFalse; ++ } ++ } ++ ++ if (shouldDrawForm) { ++ out->updatePatternOpacity(state); ++ for (yi = yi0; yi < yi1; ++yi) { ++ for (xi = xi0; xi < xi1; ++xi) { ++ x = xi * xstep; ++ y = yi * ystep; ++ m1[4] = x * m[0] + y * m[2] + m[4]; ++ m1[5] = x * m[1] + y * m[3] + m[5]; ++ drawForm(tPat->getContentStream(), tPat->getResDict(), ++ m1, tPat->getBBox()); ++ } ++ } ++ out->clearPatternOpacity(state); ++ if (patternRefNum != -1) { ++ formsDrawing.erase(patternRefIt); + } + } +- out->clearPatternOpacity(state); + } + + // restore graphics state +diff --git a/poppler/GfxState.cc b/poppler/GfxState.cc +index f61f8124..90030b10 100644 +--- a/poppler/GfxState.cc ++++ b/poppler/GfxState.cc +@@ -3446,14 +3446,17 @@ void GfxPatternColorSpace::getDefaultColor(GfxColor *color) { + // Pattern + //------------------------------------------------------------------------ + +-GfxPattern::GfxPattern(int typeA) { +- type = typeA; ++GfxPattern::GfxPattern(int typeA, int patternRefNumA) ++ : type(typeA) ++ , patternRefNum(patternRefNumA) ++{ ++ + } + + GfxPattern::~GfxPattern() { + } + +-GfxPattern *GfxPattern::parse(GfxResources *res, Object *obj, OutputDev *out, GfxState *state) { ++GfxPattern *GfxPattern::parse(GfxResources *res, Object *obj, OutputDev *out, GfxState *state, int patternRefNum) { + GfxPattern *pattern; + Object obj1; + +@@ -3466,9 +3469,9 @@ GfxPattern *GfxPattern::parse(GfxResources *res, Object *obj, OutputDev *out, Gf + } + pattern = NULL; + if (obj1.isInt() && obj1.getInt() == 1) { +- pattern = GfxTilingPattern::parse(obj); ++ pattern = GfxTilingPattern::parse(obj, patternRefNum); + } else if (obj1.isInt() && obj1.getInt() == 2) { +- pattern = GfxShadingPattern::parse(res, obj, out, state); ++ pattern = GfxShadingPattern::parse(res, obj, out, state, patternRefNum); + } + obj1.free(); + return pattern; +@@ -3478,7 +3481,7 @@ GfxPattern *GfxPattern::parse(GfxResources *res, Object *obj, OutputDev *out, Gf + // GfxTilingPattern + //------------------------------------------------------------------------ + +-GfxTilingPattern *GfxTilingPattern::parse(Object *patObj) { ++GfxTilingPattern *GfxTilingPattern::parse(Object *patObj, int patternRefNum) { + GfxTilingPattern *pat; + Dict *dict; + int paintTypeA, tilingTypeA; +@@ -3555,7 +3558,7 @@ GfxTilingPattern *GfxTilingPattern::parse(Object *patObj) { + obj1.free(); + + pat = new GfxTilingPattern(paintTypeA, tilingTypeA, bboxA, xStepA, yStepA, +- &resDictA, matrixA, patObj); ++ &resDictA, matrixA, patObj, patternRefNum); + resDictA.free(); + return pat; + } +@@ -3563,8 +3566,8 @@ GfxTilingPattern *GfxTilingPattern::parse(Object *patObj) { + GfxTilingPattern::GfxTilingPattern(int paintTypeA, int tilingTypeA, + double *bboxA, double xStepA, double yStepA, + Object *resDictA, double *matrixA, +- Object *contentStreamA): +- GfxPattern(1) ++ Object *contentStreamA, int patternRefNumA) : ++ GfxPattern(1, patternRefNumA) + { + int i; + +@@ -3589,14 +3592,14 @@ GfxTilingPattern::~GfxTilingPattern() { + + GfxPattern *GfxTilingPattern::copy() { + return new GfxTilingPattern(paintType, tilingType, bbox, xStep, yStep, +- &resDict, matrix, &contentStream); ++ &resDict, matrix, &contentStream, getPatternRefNum()); + } + + //------------------------------------------------------------------------ + // GfxShadingPattern + //------------------------------------------------------------------------ + +-GfxShadingPattern *GfxShadingPattern::parse(GfxResources *res, Object *patObj, OutputDev *out, GfxState *state) { ++GfxShadingPattern *GfxShadingPattern::parse(GfxResources *res, Object *patObj, OutputDev *out, GfxState *state, int patternRefNum) { + Dict *dict; + GfxShading *shadingA; + double matrixA[6]; +@@ -3629,11 +3632,11 @@ GfxShadingPattern *GfxShadingPattern::parse(GfxResources *res, Object *patObj, O + } + obj1.free(); + +- return new GfxShadingPattern(shadingA, matrixA); ++ return new GfxShadingPattern(shadingA, matrixA, patternRefNum); + } + +-GfxShadingPattern::GfxShadingPattern(GfxShading *shadingA, double *matrixA): +- GfxPattern(2) ++GfxShadingPattern::GfxShadingPattern(GfxShading *shadingA, double *matrixA, int patternRefNumA): ++ GfxPattern(2, patternRefNumA) + { + int i; + +@@ -3648,7 +3651,7 @@ GfxShadingPattern::~GfxShadingPattern() { + } + + GfxPattern *GfxShadingPattern::copy() { +- return new GfxShadingPattern(shading->copy(), matrix); ++ return new GfxShadingPattern(shading->copy(), matrix, getPatternRefNum()); + } + + //------------------------------------------------------------------------ +diff --git a/poppler/GfxState.h b/poppler/GfxState.h +index 7bcedf2a..4b13fb2a 100644 +--- a/poppler/GfxState.h ++++ b/poppler/GfxState.h +@@ -762,18 +762,21 @@ private: + class GfxPattern { + public: + +- GfxPattern(int typeA); ++ GfxPattern(int typeA, int patternRefNumA); + virtual ~GfxPattern(); + +- static GfxPattern *parse(GfxResources *res, Object *obj, OutputDev *out, GfxState *state); ++ static GfxPattern *parse(GfxResources *res, Object *obj, OutputDev *out, GfxState *state, int patternRefNum); + + virtual GfxPattern *copy() = 0; + + int getType() { return type; } + ++ int getPatternRefNum() const { return patternRefNum; } ++ + private: + + int type; ++ int patternRefNum; + }; + + //------------------------------------------------------------------------ +@@ -783,7 +786,7 @@ private: + class GfxTilingPattern: public GfxPattern { + public: + +- static GfxTilingPattern *parse(Object *patObj); ++ static GfxTilingPattern *parse(Object *patObj, int patternRefNum); + ~GfxTilingPattern(); + + GfxPattern *copy() override; +@@ -803,7 +806,7 @@ private: + GfxTilingPattern(int paintTypeA, int tilingTypeA, + double *bboxA, double xStepA, double yStepA, + Object *resDictA, double *matrixA, +- Object *contentStreamA); ++ Object *contentStreamA, int patternRefNumA); + + int paintType; + int tilingType; +@@ -821,7 +824,7 @@ private: + class GfxShadingPattern: public GfxPattern { + public: + +- static GfxShadingPattern *parse(GfxResources *res, Object *patObj, OutputDev *out, GfxState *state); ++ static GfxShadingPattern *parse(GfxResources *res, Object *patObj, OutputDev *out, GfxState *state, int patternRefNum); + ~GfxShadingPattern(); + + GfxPattern *copy() override; +@@ -831,7 +834,7 @@ public: + + private: + +- GfxShadingPattern(GfxShading *shadingA, double *matrixA); ++ GfxShadingPattern(GfxShading *shadingA, double *matrixA, int patternRefNumA); + + GfxShading *shading; + double matrix[6]; +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-CVE-2017-15565.patch b/app-text/poppler/files/poppler-0.57.0-CVE-2017-15565.patch new file mode 100644 index 000000000000..7e4db3f04452 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-CVE-2017-15565.patch @@ -0,0 +1,28 @@ +From 19ebd40547186a8ea6da08c8d8e2a6d6b7e84f5d Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +Date: Fri, 13 Oct 2017 00:55:49 +0200 +Subject: [PATCH] CairoOutputDev: Fix crash in broken files + +Bug #103016 +--- + poppler/CairoOutputDev.cc | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/poppler/CairoOutputDev.cc b/poppler/CairoOutputDev.cc +index ffd39ef7..80f7a99e 100644 +--- a/poppler/CairoOutputDev.cc ++++ b/poppler/CairoOutputDev.cc +@@ -2714,7 +2714,9 @@ void CairoOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stream *s + for (y = 0; y < maskHeight; y++) { + maskDest = (unsigned char *) (maskBuffer + y * row_stride); + pix = maskImgStr->getLine(); +- maskColorMap->getGrayLine (pix, maskDest, maskWidth); ++ if (likely(pix != nullptr)) { ++ maskColorMap->getGrayLine (pix, maskDest, maskWidth); ++ } + } + + maskImgStr->close(); +-- +2.14.1 + diff --git a/app-text/poppler/files/poppler-0.57.0-disable-internal-jpx.patch b/app-text/poppler/files/poppler-0.57.0-disable-internal-jpx.patch new file mode 100644 index 000000000000..faf632128ff7 --- /dev/null +++ b/app-text/poppler/files/poppler-0.57.0-disable-internal-jpx.patch @@ -0,0 +1,25 @@ +Fix security issue [internal unmaintained JPX decoder] that is caused +by building without system-jpeg libs. Fedora does not care because they +always build with system-jpeg, however in Gentoo we allow the user to +disable both options and poppler's buildsystem is making us believe +there would be no JPX decoder built in that case, when in reality +JPXStream.cc is built (even if it may not be used by the code). + + +--- a/CMakeLists.txt 2017-11-24 23:12:41.953450442 +0100 ++++ b/CMakeLists.txt 2017-11-24 23:16:09.441030669 +0100 +@@ -506,9 +508,11 @@ + add_definitions(-DUSE_OPENJPEG2) + set(poppler_LIBS ${poppler_LIBS} ${LIBOPENJPEG2_LIBRARIES}) + else () +- set(poppler_SRCS ${poppler_SRCS} +- poppler/JPXStream.cc +- ) ++ if(NOT WITH_OPENJPEG AND HAVE_JPX_DECODER) ++ set(poppler_SRCS ${poppler_SRCS} ++ poppler/JPXStream.cc ++ ) ++ endif() + endif() + if(USE_CMS) + if(LCMS_FOUND) diff --git a/app-text/poppler/poppler-0.57.0-r1.ebuild b/app-text/poppler/poppler-0.57.0-r1.ebuild new file mode 100644 index 000000000000..fafef568109a --- /dev/null +++ b/app-text/poppler/poppler-0.57.0-r1.ebuild @@ -0,0 +1,158 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils toolchain-funcs xdg-utils + +if [[ "${PV}" == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="git://git.freedesktop.org/git/${PN}/${PN}" + SLOT="0/9999" +else + SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + SLOT="0/68" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION +fi + +DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base" +HOMEPAGE="https://poppler.freedesktop.org/" + +LICENSE="GPL-2" +IUSE="cairo cjk curl cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt4 qt5 tiff +utils" + +# No test data provided +RESTRICT="test" + +COMMON_DEPEND=" + >=media-libs/fontconfig-2.6.0 + >=media-libs/freetype-2.3.9 + sys-libs/zlib + cairo? ( + dev-libs/glib:2 + >=x11-libs/cairo-1.10.0 + introspection? ( >=dev-libs/gobject-introspection-1.32.1:= ) + ) + curl? ( net-misc/curl ) + jpeg? ( virtual/jpeg:0 ) + jpeg2k? ( media-libs/openjpeg:2= ) + lcms? ( media-libs/lcms:2 ) + nss? ( >=dev-libs/nss-3.19:0 ) + png? ( media-libs/libpng:0= ) + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtxml:5 + ) + tiff? ( media-libs/tiff:0 ) +" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig +" +RDEPEND="${COMMON_DEPEND} + cjk? ( >=app-text/poppler-data-0.4.7 ) +" + +DOCS=(AUTHORS NEWS README README-XPDF TODO) + +PATCHES=( + "${FILESDIR}/${PN}-0.26.0-qt5-dependencies.patch" + "${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch" + "${FILESDIR}/${PN}-0.53.0-respect-cflags.patch" + "${FILESDIR}/${PN}-0.33.0-openjpeg2.patch" + "${FILESDIR}/${PN}-0.40-FindQt4.patch" + "${FILESDIR}/${P}-disable-internal-jpx.patch" + # Fedora backports from upstream + "${FILESDIR}/${P}-CVE-2017-14517.patch" + "${FILESDIR}/${P}-CVE-2017-14518.patch" + "${FILESDIR}/${P}-CVE-2017-14519.patch" + "${FILESDIR}/${P}-CVE-2017-14520.patch" + "${FILESDIR}/${P}-CVE-2017-14617.patch" + "${FILESDIR}/${P}-CVE-2017-14926.patch" + "${FILESDIR}/${P}-CVE-2017-14927.patch" + "${FILESDIR}/${P}-CVE-2017-14928.patch" + "${FILESDIR}/${P}-CVE-2017-14929.patch" + "${FILESDIR}/${P}-CVE-2017-15565.patch" +) + +src_prepare() { + cmake-utils_src_prepare + + # Clang doesn't grok this flag, the configure nicely tests that, but + # cmake just uses it, so remove it if we use clang + if [[ ${CC} == clang ]] ; then + sed -i -e 's/-fno-check-new//' cmake/modules/PopplerMacros.cmake || die + fi + + if ! grep -Fq 'cmake_policy(SET CMP0002 OLD)' CMakeLists.txt ; then + sed '/^cmake_minimum_required/acmake_policy(SET CMP0002 OLD)' \ + -i CMakeLists.txt || die + else + einfo "policy(SET CMP0002 OLD) - workaround can be removed" + fi + + if tc-is-clang && [[ ${CHOST} == *-darwin* ]] ; then + # we need to up the C++ version, bug #622526 + export CXX="$(tc-getCXX) -std=c++11" + fi +} + +src_configure() { + xdg_environment_reset + local mycmakeargs=( + -DBUILD_GTK_TESTS=OFF + -DBUILD_QT4_TESTS=OFF + -DBUILD_QT5_TESTS=OFF + -DBUILD_CPP_TESTS=OFF + -DENABLE_SPLASH=ON + -DENABLE_ZLIB=ON + -DENABLE_ZLIB_UNCOMPRESS=OFF + -DENABLE_XPDF_HEADERS=ON + -DENABLE_LIBCURL="$(usex curl)" + -DENABLE_CPP="$(usex cxx)" + -DENABLE_UTILS="$(usex utils)" + -DSPLASH_CMYK=OFF + -DUSE_FIXEDPOINT=OFF + -DUSE_FLOAT=OFF + -DWITH_Cairo="$(usex cairo)" + -DWITH_GObjectIntrospection="$(usex introspection)" + -DWITH_JPEG="$(usex jpeg)" + -DWITH_NSS3="$(usex nss)" + -DWITH_PNG="$(usex png)" + -DWITH_Qt4="$(usex qt4)" + $(cmake-utils_use_find_package qt5 Qt5Core) + -DWITH_TIFF="$(usex tiff)" + ) + if use jpeg; then + mycmakeargs+=(-DENABLE_DCTDECODER=libjpeg) + else + mycmakeargs+=(-DENABLE_DCTDECODER=none) + fi + if use jpeg2k; then + mycmakeargs+=(-DENABLE_LIBOPENJPEG=openjpeg2) + else + mycmakeargs+=(-DENABLE_LIBOPENJPEG=none) + fi + if use lcms; then + mycmakeargs+=(-DENABLE_CMS=lcms2) + else + mycmakeargs+=(-DENABLE_CMS=) + fi + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + # live version doesn't provide html documentation + if use cairo && use doc && [[ ${PV} != 9999 ]]; then + # For now install gtk-doc there + insinto /usr/share/gtk-doc/html/poppler + doins -r "${S}"/glib/reference/html/* + fi +} diff --git a/app-text/tesseract/Manifest b/app-text/tesseract/Manifest index c4932675531d..151e6da38599 100644 --- a/app-text/tesseract/Manifest +++ b/app-text/tesseract/Manifest @@ -30,7 +30,7 @@ DIST deu_frak.traineddata-3.04.00 1978593 SHA256 cbb200e394485c5b515de203963c2a7 DIST dzo.traineddata-4.00 8771208 SHA256 3fa23360be6e114296901c33c4c5dece0049b7ef0665a16cc8dd0cf94cb8e615 SHA512 b9801388c1e2e6355846be86ec61b8eb0bdec0c2907b787c5ee5cfd042a3889b8b4a9baea27775088a1e18597c024012263830ee238b4d8f7c58d31c607f47e6 WHIRLPOOL 6bc9c018465cdd3671cff9c9f3ff7db892509318dfe85c86a6233e69f156c115794cd59fbeef5dea84ea0068c3670648c2220a3d91921722f3778f39d7f162d5 DIST ell.traineddata-3.04.00 5422512 SHA256 bbe0ed0758c69043114b13fc8f00a42342c647f27be352c05b4978e265380e64 SHA512 b542f4cad465332b7d9742ce64951289a22f31c2196335b09037e047c9fe2966689426d9e973173147aa7c0ca73cddb337c9ec7b485b13b80eea3e44ad31bb48 WHIRLPOOL 16d89cb546883bf75a8b75e55c0eb88d915d07cad0f4c5b3e0640385f4b7cb2a6aeeedce13cf48538f5a78ec39776ccdecef9c3264cd749e1d224cdcff5e310a DIST ell.traineddata-4.00 12594922 SHA256 797c80b46587c18b020a0231006b4ff6463ba923969eaeb3ecbc4ffa2f7608b9 SHA512 ba49067c8eed46992615013a09f58c457bf333afa4f152f3b1f837e934c71d04564bf1e9a1a8d80cd4aeac95639c19124aa586f3043737c556d28e2bc478fbae WHIRLPOOL ee877b8ff4bdc6cb17934583b8b6cff424e375b2dafbddf07db7a0a9f99d45d488c31250f87168da9518d528232aea10cc7e31b61934d5c9b71345ee43ad911b -DIST eng.traineddata-3.04.00 21876550 SHA256 c0515c9f1e0c79e1069fcc05c2b2f6a6841fb5e1082d695db160333c1154f06d SHA512 e03d205900e3f6b866b2342eb8f32fb35dad28c7f58b7bdc3c0bec0de570f87578168d8d64b1f0bedac7bbcf462dd949b00701943a55ba3f42842ad1629e230a WHIRLPOOL e71cec7e7e8b9b8183f459741ce2eb1a33923e73802ab35dae81ab7939b980b028e4d4a3325205a52f67b8502323e9cd8dee6efd69ca40c0eb42b0961d5d8786 +DIST eng.traineddata-3.04.00 21876550 BLAKE2B 983f91e54b334ee533d5689ac8ce768922e348ef89a284c47d93ba91fcad6de8614998c8a5b17c2406c5c30c1228530077aad84929da6d8bc983c89c1d3a2234 SHA512 e03d205900e3f6b866b2342eb8f32fb35dad28c7f58b7bdc3c0bec0de570f87578168d8d64b1f0bedac7bbcf462dd949b00701943a55ba3f42842ad1629e230a DIST eng.traineddata-4.00 31873501 SHA256 1cb1468826191cc7d4158fe0a3014d3f5e3bbac618d754586afc86ddae8bcdae SHA512 dec017b60c7ee7c8dfe1c4cef562a02c8699c2856d6562641a7077c1a0b5493a26085fa81e7dfff97323054276f24eb51f64833bc2fe7bbe91b1955c6f719618 WHIRLPOOL f6e2b5b4dff3eed23ac807078af70e07e18989f3ed040c883a4556173c627556816783156e9134fedeebe1e62bcf60c97f3bec3fbad2ac2a6c50540ac5d29d03 DIST enm.traineddata-4.00 10479188 SHA256 4f91bd9ddb757508ac0d65f36afef37545fe4d2b557451c1ec91d58ed55aaf65 SHA512 fe78e53eaaedee66e688291d684c221673b787dd3f020736f60ecdf4dd1257f3d2ccfcc10408a6ef50c711b538a4a3933c84d1ebfded82c2adc1685e7a9712ed WHIRLPOOL 2d150f66ad8747d4d42a718b64196adb8238346ed20c3e312e16f49b0e545ec51693a8015b267f5e3f46d0f5aecb0942465b3dad7faf9ad4233faa799df23f12 DIST epo.traineddata-4.00 15408492 SHA256 7837df9717900031f54e28882f33e5d1676f062ed6aec6c38902dc6c0bd4931e SHA512 44230babdbe3ff366c0141f49ee524cc7eb1226be767e865b4ddd5afc1c1f99b67ccdc68ddc1ad0c8b3a368937508d9edbeeef099cb23815b506f1e08910427f WHIRLPOOL 7499e8fcba07c399ef1c864b2733996c359cf0dadca08412f1b265259e5fc55c6e4936bd223b94f9b0f97e54ce7db8c8912a3e3b9ec5be714eeb8ac5ee59bbf1 @@ -90,7 +90,7 @@ DIST nld.traineddata-4.00 33075399 SHA256 070817e07ab27c1f715fdf2cb49b8c748a75ec DIST nor.traineddata-3.04.00 8262167 SHA256 a990269f3d815ad206ea0f27b14d07e7a0be0c171335397bc0b46ea0cdcfdbfa SHA512 4e943a2e19b10b3c8c862e23e78c70f6a02d3c2ebcd01a90b7f25a677f92b19bde052a6fa48f640c0d8b7d74769fc7fc45ab1c412339cb0e9e108926be439ce2 WHIRLPOOL 3d609ed7c818f0c2329ee2521c5bf75165f9be317ad7d50d12aa77333f3e069f4ffdda904b3c632b01b921c3aa6778b08d8e955935e12e28815ed0f666adcc17 DIST nor.traineddata-4.00 17444731 SHA256 d3e94ea7e6f79e03a4f395e1db70fccdfb705d881e5c698ed8a37b5c09564d34 SHA512 9f439a99e7316796c9d1fe3a562ea056459897d1cb195fe20ede546fe09b46dff9ffcff497b6db1ba1d9e82a914724f7645ef33263fdf9d7a86e5102802ff1f4 WHIRLPOOL 3ce55885e9dac14031fc11b514b456af3c83eedefb5fe719fb0e4d8209917c69f7035438134788286529548f8d8d8577a794b558ae7142f8b902152a5dc67992 DIST ori.traineddata-4.00 14655225 SHA256 c788902125b7f02cc71a29dbbd4481422ecf2e80d218a8a3fabdf18a523a385c SHA512 532f3b0466675fb15f22888323bdb4bef983204169333b46387820add7f7d9e2d79bda3b65cb7a0825d20da13ca721c1233066592de0145555ccce2da7e0ec6a WHIRLPOOL 456664d5af44cbdf3a29c95147d14db884d84f3f0e5f1bd34a5a311d03af581cda0ed48ac7aa4d4281f8733c892cc4dbbb144549cc7c15c5da9ff750fdf687a6 -DIST osd.traineddata-3.04.00 10562727 SHA256 9cf5d576fcc47564f11265841e5ca839001e7e6f38ff7f7aacf46d15a96b00ff SHA512 c54f481903187bed19cf14c69b24c44044b540f50814de66dff8d35e6987eea71ef4464492a8fae9242fcb22cccbe59e009f3a4dab6c36ad63f78c52ebe9628f WHIRLPOOL 909efcb63ee6eebb9b5b28eb05548aed669e21081f708e51e705da42f06e8694a7fa5338a1e5af27269f8145cac7031ad730238472747234062b2f18ef2fc1be +DIST osd.traineddata-3.04.00 10562727 BLAKE2B ddf38d17e76104216495c798827c024c9d68375f60e2ecc264a495986eac502a9f0159b87adaff96b22b562d774036f0a832d520248842ca1a6550b7ec8c9b4d SHA512 c54f481903187bed19cf14c69b24c44044b540f50814de66dff8d35e6987eea71ef4464492a8fae9242fcb22cccbe59e009f3a4dab6c36ad63f78c52ebe9628f DIST osd.traineddata-4.00 10562727 SHA256 9cf5d576fcc47564f11265841e5ca839001e7e6f38ff7f7aacf46d15a96b00ff SHA512 c54f481903187bed19cf14c69b24c44044b540f50814de66dff8d35e6987eea71ef4464492a8fae9242fcb22cccbe59e009f3a4dab6c36ad63f78c52ebe9628f WHIRLPOOL 909efcb63ee6eebb9b5b28eb05548aed669e21081f708e51e705da42f06e8694a7fa5338a1e5af27269f8145cac7031ad730238472747234062b2f18ef2fc1be DIST pan.traineddata-4.00 20032828 SHA256 ae91e968970f8ca27ec3321399e499a7ecfe7fa03644c65b4b26b1a9f2e5bbe6 SHA512 c86547b2ae1dedd259237acd59417cc1a181dcb2960791974dea2dc7cfeaf1d7604988c892ae40b5d51b63573d3fcbfc24aa87e2e068f532ecca730cd3395872 WHIRLPOOL 282be74e324e51643712fd398298083a93706d9323205522856d825f1116fe2c3e1fb70617f09b9d122d147d10587a63732ace70746015cf204ea34628be84cf DIST pol.traineddata-3.04.00 13918058 SHA256 1d2292319d2e3c65e15f19f55b961c9b492651fc179f3bcd219affe7c141bf94 SHA512 e1730d8bdbb296d223000747aea0dfd9561401e17f37518f4f7ae6c1b13cf500f5f359df465013112e126fc426e3e940b5dc98f84bdfc6517a73a1f8e8fc4c10 WHIRLPOOL 2feae8c53b76358a4c51b4760e86015f313cef22fcfe137863ee7d0ba2baf802d1de929e763e22297d6c3b5328f2eac5bc42aa65b39f558bcc9ba8b51422fbb6 @@ -99,7 +99,7 @@ DIST por.traineddata-3.04.00 12914622 SHA256 089fb419cd7bd135236244dd9a4b8a42dfe DIST por.traineddata-4.00 21457953 SHA256 c63e1b06a52ff00ede0faee27a024cc37ed9c350cc671b827fb7a173d99f3293 SHA512 5bc95002bda1fd0cf15d3be6d417fcda952417c5a9e08c46f3bcce859e89be2359ec4bb15199bee0cc72b407251b7b4ee655d67d46f8738bf29bf2b12bf3b29d WHIRLPOOL 012a644fd177060043c7707b27b3b6e613e790b0115dce31bb16d3a895d4796d5720a8feb378f2f6fb20703341aec441ef6815f2e35be68855873986e8e276e6 DIST ron.traineddata-3.04.00 7957608 SHA256 f4f3614d4b009eeb0ab5815ebef080ebba7c470b3f80c9f97ed6da0d3f409986 SHA512 921aec7e0e91d7bcb3b85e2b0c5544b105cb01516c100eac21caedfcf27da678c392574c3dfedc81ff52571a8702c91ee76529ecea2b6bc3e155f6e2c56b951a WHIRLPOOL 3257cad73ef2f12b91518942669463728a31bfdfe9db4e604411ec02edba4933c047ba6df9eac65f46436e5f5242fd58ee3070d59b9b140f3b8c3fe19a74bd43 DIST ron.traineddata-4.00 16545516 SHA256 d174190ea050c537d69b988ae75d4e5d8eb718358b6ef0b55bf60b00ccb680ef SHA512 045eb12025bb4e85edd7f82407287e451432411303a17bfe2ae13327a99f568903fa6b105d3fdd6ab066161821106485dbd8d44931b2eb357cd6145adbcd3d65 WHIRLPOOL 854e7392ad61062e62b95f7802de321b2becc6f4ff69c707cd1bf16ac889621b04ba974d795808a3e0deb2a0921eb2fd427b96d64c070f0be6211193e726b237 -DIST rus.traineddata-3.04.00 16152507 SHA256 1800dcaf043e95007269f07168a12258cd8b87bf413769c2b5a3d5451e45cab4 SHA512 e5053d8b53a676d800f490276172f16f2754e009408164958ad2f61071906042c299b23fdd3dde4a10026e42b19d03f8a8ab7de2fc29d8b9843d30de5c36a335 WHIRLPOOL a2d14ba6ab87b681bb95d60527677268ec7ffeaac59fd6a240fdce023fc5e2f2377f3250a7a393c14221f43f8c3ea7e7a93dc83b9fec3e7bd37d1fcb0a53f658 +DIST rus.traineddata-3.04.00 16152507 BLAKE2B 329619a15cfb48c04d1d4e4bf902e090aac9ffaa1998a26a8861dc24ddb8d9727d473024dae44a43b7ff29f0079cb87dd60dc1a49d2e310249eb05999daea839 SHA512 e5053d8b53a676d800f490276172f16f2754e009408164958ad2f61071906042c299b23fdd3dde4a10026e42b19d03f8a8ab7de2fc29d8b9843d30de5c36a335 DIST rus.traineddata-4.00 28115168 SHA256 fdb9b7abbc417661b54ee7c4b5ee01a7a95e828aec3bd8bd912de4433fe18c40 SHA512 4a4524a4759b52e7936518c37aa3e60032537a5a2e11fc8ad5e48bf92a2f8efc54cab3962db5e980b9d894dcbf791ad796c55b875eb95b7f03444eb75c1cedee WHIRLPOOL ada91f2d6700b39f993a84751f10bf336bfb359c88897ea83d86481f4acd203ad21e9ffcd6bb2def86f94e8f08704cf0cd392fa563ebcbf046feacbb0050a037 DIST san.traineddata-4.00 44276691 SHA256 8d112844481d48ee3252cc053b959e81592670ffaa3333efb8b7ebda403845a5 SHA512 97c266b3dd7b557575004d432ed7ea09ee44cf168d8f00a0dc544ebcc4df736c175a88f9c0b45a600d99eb7b3616bd2ceb96ebd2eae67b43f9d38bc35736d006 WHIRLPOOL 7793fa1b6d3c856d37380daa2e9413f30f8d23da7bdf9be0a2dba1425f7126f9fa7764142d20ba441ec75066d11f329659c450239b177f730ea485af96ce69a4 DIST sin.traineddata-4.00 13528944 SHA256 a18aeec83bed7f88f4ef38cddef2220c946f217ce0ac6229b38387d997b05b2e SHA512 1dc149d2c9e1c394d2945a6c41a9885ba05a82b6b629f87157d8439932066fa54b5316aba0430c4f861703a8aabc3cacc1577992d68869a988b11d4b93c71140 WHIRLPOOL ce7a2a2b8e6a5ebfdbb3cf06f96d8b8ba955cc6231ffb575adf1cc98984ccfaefb7a112aa3613087a161df08894977262aeb9a220f17975c6e8ce7ac3d13a905 @@ -108,7 +108,7 @@ DIST slk.traineddata-4.00 19335882 SHA256 46536c109d17dd93839b77f0c0031e784956c9 DIST slk_frak.traineddata-3.04.00 845250 SHA256 1e7f1e59ead24a136dc0626e98019594a042e62087bfcf8f0fddb3e283b5d87f SHA512 89b794f06772982ec63e317e95ba1c6b611881b8363b645ebfbb4e7c29f914545162401d4766d1b3247ada6df1fa1d7cc02ea539a746fd6839c45124e9e68ae5 WHIRLPOOL bbd770dd93a15f016ab7ae1db3e82f50ef376705097a3b5c6b2dc09c0c2514b2c44eb550f41605c27f6a1b6a226d6e20f5eb1f3922c0a6f6bcb53ee3a5b6d278 DIST slv.traineddata-3.04.00 6824064 SHA256 305884e151a01421e847a4a30f05e9c899fcefd483a12d2ea8e0f205534d56ce SHA512 26634af8d9585f293d4af38c0bd6bd7c552edeaa59e3f2ab1e170431f40ba172ca455ede49df90a0b97b4da253b3a96394f4729f6a349361c3e954f2f59e2bbe WHIRLPOOL c765b5922c8d415f2281e9d6f6a5aee1e1717dbf779171ebd6f4dbeedbdf813361de80cf2531bc84f032c07b39b6d6098d9a5a37ec24bca8d86303955691fbab DIST slv.traineddata-4.00 15472904 SHA256 15fa29517d0e7696196a80c35001d20fbcef39e15100cf236ad4d2a0e6c0dc6a SHA512 975542196c706e98430e5e8fd9673d03ada91a829c0b0744bacb6fbbbe93d22f3fd36de4993766fdbb76f3902e4e7bdcf59a4b51a0c452130b3a368d0e645208 WHIRLPOOL 7fd9bce9559c74dfee93e0ed02cd91e01069e39b7c4ca87232f086923a93aa0f49e120c62ef30ca34b074e4c125168cf151f544f8503c9af3c1eee9d12b30a40 -DIST spa.traineddata-3.04.00 15953087 SHA256 f23985996bbcfe2b57864ccb082783c1c74c87429f04411a04a6ba4d3da2efda SHA512 e1356c0948c9245fecd335b1b7dd3c84c56b09210e84c5d211d9ddfb2bd3aa232c97f8e8d03f2a6639120c5196aa4222a8385da64528261c7cf137cd64b214a8 WHIRLPOOL 3be9607b1041aac3e744165e7767b32acd91e9746c7b35bb052dfb94f5a4391d19fa8da9122164c01d3f2d39224960a6ce83c431acfeb5e9c391ff1d4b816ba1 +DIST spa.traineddata-3.04.00 15953087 BLAKE2B 9eba61ca27a8697b4e671d8f0d1626500da4c18f046b51fdd692576e5b9068898a75663d2745cd21345a6f3df5108b358624b7b7a264e3c3d4baa34cf0631771 SHA512 e1356c0948c9245fecd335b1b7dd3c84c56b09210e84c5d211d9ddfb2bd3aa232c97f8e8d03f2a6639120c5196aa4222a8385da64528261c7cf137cd64b214a8 DIST spa.traineddata-4.00 25107848 SHA256 687793a658359a9fefa78b809dc9233caa4c5f941f3fb27dc07bb5c04aef86f7 SHA512 5d009401faa71d3a8e9c4ff32dd1efc5e38c02b8c4170653ebb33874e6c489f7556c67ce6ca7cee27500496f657cf4361314563576176ff5e545b8079722bb8f WHIRLPOOL 6c2efe99d1c221f98145ceab32368f037cd67dc60eeaafdb08ad9ccfa5f02062cfcea525afe82beaafc305e5c044ec2bf883b34b9cc3b5d113997c3ee0fbb5a5 DIST spa_old.traineddata-4.00 26019934 SHA256 6f574e9e4fe4746fefa54e058f1566fa24fbdcc7c933b4f7051b091473b25e9f SHA512 b50c9785e6962defd3c9373272581eefd476405e8b0f20d4f692a99137af01319ec92af0c51207d724d4f83852c789c2f5109cc6f47a1a79080d5024926ffc7c WHIRLPOOL 96f87b3a4e1318711d2101f2e9a2233ab6ef1925deae7ba1d97e9dcd7164d394e3ad8e79a4b0ef30d8b3eb33cfb2367d48c409a102045cf75a2b963b90bead53 DIST sqi.traineddata-4.00 14827880 SHA256 f3c48a78c94a1d6bd860be96dacded344719f118be5e301c13f55f15aa2be838 SHA512 56a2e2486f05498f6fd136f27406eafc218e2c9328274c60c4bacc5f51289d3b99810c305da76e5ab3ded05ac1c33bc822b367394bb030dc7f2f6bda3092a4fa WHIRLPOOL c5973031b484585e4c40554086ebdc85824d6f0af5de4a59abaa287835fa6bbca8a8b031e32f705f157c7d3c3143bc3cf76504d7416496fd98e83aec60c9f496 @@ -121,7 +121,7 @@ DIST swe.traineddata-4.00 19062525 SHA256 f292c86c4388c08a0ec862f81e5b08619164cc DIST syr.traineddata-4.00 8056121 SHA256 d7be312ddbf720ea29380d5dbaa0427ae027de507e178e671f7232cc7ae8a0bf SHA512 c79acc0bde79d7f38b5ddd34683615886d7c284040273849e4b31dd988c4c0ac1617c0f6ef9d246b47eaade5ad5fdfdc4bf99dbb29e2d33c3827927135ea6f06 WHIRLPOOL adc125d0323fc99a51be568eb75d77891a7e84b377091dabdec816642b1fc7a5c2e14f256a1ccb81994c633824adf3ee3a258a17747472f8ae30993e37e2ce65 DIST tam.traineddata-4.00 17333471 SHA256 ba8dc53bd987e4bdfacc37f46e6b0c8f7aea9c000d142ebda40f9f27c3aa2a48 SHA512 9ad90eb8c291712e4cd874d41ed9bcd4169427a50509a353f5549382909458b46a7e4a092dec0d475c548e681426a81597c577f2f821978405a94f965fd4d05f WHIRLPOOL dd3b1489d6c8758b7a36cc4d5d85f61f10643f2b3ffef63a3ae380a1b9314de9490304a27a04c92780ea90eac9f6fbb9845f3a0760df0c715864372dc1f958f0 DIST tel.traineddata-4.00 54446537 SHA256 9db74228a36fcdbcde54e6e6118c0998b2fb73ed84c9e42b52062009c5becd66 SHA512 5e5c2ca84f095ec4dd3184d6cb75702482c699b5cd04f8750ab8958f578f7b24cf3253a83d19a4a1f3716466b95a81737d473339e3593538e46372c4588febb6 WHIRLPOOL 1eb738325fd5610ae3a71791a998aed4f901e03eac629547a5d627f7173dbf3b268732e08a7a64fd4147773bbfc56f560b5f02f32bd3adb16166e6cd8d85e794 -DIST tesseract-3.04.01.tar.gz 2269105 SHA256 57f63e1b14ae04c3932a2683e4be4954a2849e17edd638ffe91bc5a2156adc6a SHA512 816f6c29f8efeaf157891ddb022bd0daf8eb27c0cb8b6df5542e745d209f0ce617245e4583c59a561ed3216044d3afb38f8620ee94cdea656364923dcb140b5b WHIRLPOOL 995502084484d172becdfdaa38888cd21f0fe2b8845fe4a64726f9fbcd35310d64153be6325016dd50ca37b95069112b63d4f0528bd989a58c3b88dc6c6a6813 +DIST tesseract-3.04.01.tar.gz 2269105 BLAKE2B 298b388619b3dfa1d2aac331f50dcf8f840fb44826df568aa4c831903b8a4b511cd05cb7c54a27502bcfb457630ed6561f314934cadc0e1f5be7479096606307 SHA512 816f6c29f8efeaf157891ddb022bd0daf8eb27c0cb8b6df5542e745d209f0ce617245e4583c59a561ed3216044d3afb38f8620ee94cdea656364923dcb140b5b DIST tesseract-3.05.00.tar.gz 3581853 SHA256 3fe83e06d0f73b39f6e92ed9fc7ccba3ef734877b76aa5ddaaa778fac095d996 SHA512 54ba96bd1b0d19883e8a0f717ecfddd459945f9dda0fd340e29e2dab3af94d0eceb7f3d207f34685ee97d1ec763efac5d94dec7e0498a7ca85fec35da4ed76b1 WHIRLPOOL 33622256479395eb12c72e4d3187eecf23fe4557f4fcaecf9b5f1ba3aeab67e333b0d979812525f3a1504102764bc572a79f8e64c794be805004e5fec5cdef5b DIST tesseract-3.05.01.tar.gz 3574810 SHA256 05898f93c5d057fada49b9a116fc86ad9310ff1726a0f499c3e5211b3af47ec1 SHA512 a49c20c98386684cd89582e57b772811204fad8e5ff18214fb0da109f73629c70845054985e31e8deeb49107fbcf56e546aff661f08eb5dd60fbf83dbe976e81 WHIRLPOOL b104dcf66976dfb25c389682572c13cb3827c9bd07d82502539b6cc7db3aac56579d82afeb6db185677cb3f9aa8819c63c780792b46b1b58fbdb775841d4026c DIST tesseract-4.00.00_alpha.tar.gz 3706567 SHA256 ada7db147970317eed8223bb72702359ac53ad570e135f7f6824f40c41ea6791 SHA512 282ec941233ceb80fe1008e585a6069fe8ecd6bf2dd1d0f56e2e79b772a0b83bca918d5da892a6cab194a7828607e41a7fd873acec33181b8b86c3c37e434103 WHIRLPOOL ae27cd45ce680c71785c36bd4d5414efc5b07baa483094fd33ee7bd886b55e21a4034ddaa5d55a265cf23983ba21dc98c5e2e2148178e4fabd2c69e1a9326c9e diff --git a/app-text/tesseract/tesseract-3.05.01.ebuild b/app-text/tesseract/tesseract-3.05.01.ebuild index b5bbdc949294..01bd9b1a9f46 100644 --- a/app-text/tesseract/tesseract-3.05.01.ebuild +++ b/app-text/tesseract/tesseract-3.05.01.ebuild @@ -60,7 +60,7 @@ SRC_URI="https://github.com/${MY_PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ppc ppc64 ~sparc ~x86" IUSE="doc examples jpeg math opencl osd png scrollview static-libs tiff training webp l10n_ar l10n_bg l10n_ca l10n_chr l10n_cs l10n_de l10n_da l10n_el l10n_es l10n_fi l10n_fr l10n_he l10n_hi l10n_hu l10n_id l10n_it l10n_ja l10n_ko l10n_lt l10n_lv l10n_nl l10n_no l10n_pl l10n_pt l10n_ro l10n_ru l10n_sk l10n_sl l10n_sr l10n_sv l10n_th l10n_tl l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW" diff --git a/app-vim/Manifest.gz b/app-vim/Manifest.gz new file mode 100644 index 000000000000..060b65129541 Binary files /dev/null and b/app-vim/Manifest.gz differ diff --git a/app-xemacs/Manifest.gz b/app-xemacs/Manifest.gz new file mode 100644 index 000000000000..05cd21c207c2 Binary files /dev/null and b/app-xemacs/Manifest.gz differ diff --git a/dev-ada/Manifest b/dev-ada/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz new file mode 100644 index 000000000000..0fe336b23ae0 Binary files /dev/null and b/dev-cpp/Manifest.gz differ diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz new file mode 100644 index 000000000000..fa1caefc6cd8 Binary files /dev/null and b/dev-db/Manifest.gz differ diff --git a/dev-dotnet/Manifest.gz b/dev-dotnet/Manifest.gz new file mode 100644 index 000000000000..a56b0a7b34a7 Binary files /dev/null and b/dev-dotnet/Manifest.gz differ diff --git a/dev-embedded/Manifest.gz b/dev-embedded/Manifest.gz new file mode 100644 index 000000000000..e65d811108be Binary files /dev/null and b/dev-embedded/Manifest.gz differ diff --git a/dev-embedded/esptool/Manifest b/dev-embedded/esptool/Manifest index 770d10c0fb49..bceb797ad119 100644 --- a/dev-embedded/esptool/Manifest +++ b/dev-embedded/esptool/Manifest @@ -1,2 +1 @@ -DIST esptool-2.0.1.tar.gz 67905 SHA256 413bc0a47088cb10770a20a472eb297d92a7ba933539fff981ceea95d17d45bd SHA512 13bc1594fc5546c3a461929f9413eab47cd9173c4fa89572801e1be5f1956f0e71589005ab5d547919eec94064d64307349a8f79b3833a90d9e79ead8bd694c4 WHIRLPOOL b727d105a43d7da04f41264ced26e2e598edca1b88bdaf97e9edc4418b5afd00a16c13fb0c1c2b54658541bd6b4b8186585985f383eb3d5e3a74c40abea6c0c7 DIST esptool-2.1.tar.gz 68974 SHA256 d709dbf89ee36ec7db3bbc35e574232acc6e32bea4e8257f8f56411cdd48e321 SHA512 be657df04a345d2c91bbe3a9cbb93cd7bb0bc68e61388ff4d134c88d514c74fe3f2c5e7c64f4100264bc5973b1d3e66251cdb16a77894fb9e116d9c6a54a8dc3 WHIRLPOOL b932f945b62cf2cb446ad22db0b93071a6757fb1d72e2ca9da2d0ea960565baa9776ba400006dea3160569ef80aa145281fff98a1094e6705cb63d6219abf887 diff --git a/dev-embedded/esptool/esptool-2.0.1.ebuild b/dev-embedded/esptool/esptool-2.0.1.ebuild deleted file mode 100644 index 066db389f9aa..000000000000 --- a/dev-embedded/esptool/esptool-2.0.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) - -inherit distutils-r1 - -DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif ESP8266 and ESP32" -HOMEPAGE="https://github.com/espressif/esptool" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - dev-python/ecdsa[${PYTHON_USEDEP}] - dev-python/pyaes[${PYTHON_USEDEP}] - >=dev-python/pyserial-2.5[${PYTHON_USEDEP}]" - -RESTRICT="test" # Uses a device connected to the serial port - -python_test() { - ${EPYTHON} test/test_esptool.py || die -} diff --git a/dev-erlang/Manifest.gz b/dev-erlang/Manifest.gz new file mode 100644 index 000000000000..8433acafec6b Binary files /dev/null and b/dev-erlang/Manifest.gz differ diff --git a/dev-games/Manifest.gz b/dev-games/Manifest.gz new file mode 100644 index 000000000000..e13bbb35a2d8 Binary files /dev/null and b/dev-games/Manifest.gz differ diff --git a/dev-go/Manifest.gz b/dev-go/Manifest.gz new file mode 100644 index 000000000000..aa5ebfd7ebf5 Binary files /dev/null and b/dev-go/Manifest.gz differ diff --git a/dev-haskell/Manifest.gz b/dev-haskell/Manifest.gz new file mode 100644 index 000000000000..800a00f20589 Binary files /dev/null and b/dev-haskell/Manifest.gz differ diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz new file mode 100644 index 000000000000..8bf76f334692 Binary files /dev/null and b/dev-java/Manifest.gz differ diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz new file mode 100644 index 000000000000..3c2c174e6c09 Binary files /dev/null and b/dev-lang/Manifest.gz differ diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz new file mode 100644 index 000000000000..1a4679b1d45d Binary files /dev/null and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/libcdio/files/libcdio-1.0.0-version.patch b/dev-libs/libcdio/files/libcdio-1.0.0-version.patch new file mode 100644 index 000000000000..3c812a9407a2 --- /dev/null +++ b/dev-libs/libcdio/files/libcdio-1.0.0-version.patch @@ -0,0 +1,16 @@ +--- libcdio-1.0.0/configure.ac ++++ libcdio-1.0.0/configure.ac +@@ -32,7 +32,12 @@ + m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], + [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) + +-LIBCDIO_VERSION_NUM=`echo RELEASE_NUM | cut -d . -f 1 | tr -d a-z` ++# Broken by design. See also ++# https://savannah.gnu.org/bugs/?52491 ++# and ++# http://git.savannah.gnu.org/cgit/libcdio.git/patch/?id=2d22ae18571caf29460a456340ff0603f04af6b4 ++#LIBCDIO_VERSION_NUM=`echo RELEASE_NUM | cut -d . -f 1 | tr -d a-z` ++LIBCDIO_VERSION_NUM=10000 + AC_SUBST(LIBCDIO_VERSION_NUM) + + AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir) diff --git a/dev-libs/libcdio/libcdio-1.0.0.ebuild b/dev-libs/libcdio/libcdio-1.0.0-r1.ebuild similarity index 94% rename from dev-libs/libcdio/libcdio-1.0.0.ebuild rename to dev-libs/libcdio/libcdio-1.0.0-r1.ebuild index 9d54cf3b873b..5a278ab70abe 100644 --- a/dev-libs/libcdio/libcdio-1.0.0.ebuild +++ b/dev-libs/libcdio/libcdio-1.0.0-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit eutils libtool multilib-minimal +inherit autotools libtool multilib-minimal DESCRIPTION="A library to encapsulate CD-ROM reading and control" HOMEPAGE="https://www.gnu.org/software/libcdio/" @@ -33,8 +33,13 @@ MULTILIB_WRAPPED_HEADERS=( /usr/include/cdio/version.h ) +PATCHES=( "${FILESDIR}/${P}-version.patch" ) + src_prepare() { default + + eautoreconf + sed \ -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ -i configure || die diff --git a/dev-libs/libconfig/Manifest b/dev-libs/libconfig/Manifest index e753ae70afa3..c08698b93e68 100644 --- a/dev-libs/libconfig/Manifest +++ b/dev-libs/libconfig/Manifest @@ -1 +1,2 @@ -DIST libconfig-1.5.tar.gz 644432 SHA256 e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6 SHA512 16bead52ee8c880b25fd1ee6fa83c115dc51830f2f7954389bd8b72cc0e6fc05fc63fe415bd929851894a9f3a1127d51cfc4223149514246e9566305556b7bcd WHIRLPOOL ef3718b1ec4485202d1fd03db035419b6c0179e4c4eb47e74ff93b467677c4f53cf9d70d5eb7aa6230dab7a4115e5fae0fc4ed191f1bfc6d0c3c252ee5d90944 +DIST libconfig-1.5.tar.gz 644432 BLAKE2B 9eaec8aca0692f30d6b51221a5d1bc624540da74f599292b1a161054dec8188b2ad2ee100a97c1e19f7b4763614206a5bf6ad03f6f7bbd33b40d57c51646e520 SHA512 16bead52ee8c880b25fd1ee6fa83c115dc51830f2f7954389bd8b72cc0e6fc05fc63fe415bd929851894a9f3a1127d51cfc4223149514246e9566305556b7bcd +DIST libconfig-1.7.1.tar.gz 2290501 BLAKE2B 6c55e0d41c1475434bcc61203bda40c478d0802ccb544866df4b7d9b69538ca1e2eab8642867b0ee7c56e26027d8fb326e470a5c9bdcbc37534fe23092be15e0 SHA512 b58b468e9e2d5175fbde1ad9765c6604dc9b3f3944613a88404a45d0d232e7d79a47321bf3c06b97cb46a2104b4313fad5c7f8944149f550b7af51ad523e775e diff --git a/dev-libs/libconfig/libconfig-1.7.1.ebuild b/dev-libs/libconfig/libconfig-1.7.1.ebuild new file mode 100644 index 000000000000..d80bcd58c3b0 --- /dev/null +++ b/dev-libs/libconfig/libconfig-1.7.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools eutils multilib-minimal + +DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files" +HOMEPAGE=" + http://www.hyperrealm.com/libconfig/libconfig.html + https://github.com/hyperrealm/libconfig +" +SRC_URI="https://github.com/hyperrealm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/11" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux" +IUSE="+cxx static-libs" + +DEPEND=" + sys-devel/libtool + sys-devel/bison +" + +src_prepare() { + default + sed -i \ + -e '/sleep 3/d' \ + -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \ + configure.ac || die + eautoreconf + multilib_copy_sources +} + +multilib_src_configure() { + econf \ + $(use_enable cxx) \ + $(use_enable static-libs static) \ + --disable-examples +} + +multilib_src_test() { + # It responds to check but that does not work as intended + emake test +} + +multilib_src_install() { + default + + prune_libtool_files +} diff --git a/dev-lisp/Manifest.gz b/dev-lisp/Manifest.gz new file mode 100644 index 000000000000..e20a566301d0 Binary files /dev/null and b/dev-lisp/Manifest.gz differ diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz new file mode 100644 index 000000000000..3956b5115c88 Binary files /dev/null and b/dev-lua/Manifest.gz differ diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz new file mode 100644 index 000000000000..cc92b1455798 Binary files /dev/null and b/dev-ml/Manifest.gz differ diff --git a/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild index 97391a5fe7cc..53fc51751809 100644 --- a/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-DSA/Crypt-OpenSSL-DSA-0.190.0.ebuild @@ -8,7 +8,7 @@ inherit perl-module DESCRIPTION='Digital Signature Algorithm using OpenSSL' 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="libressl" RDEPEND=" diff --git a/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild index 3cea2613cf3e..1486cc65a5bb 100644 --- a/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild +++ b/dev-perl/Digest-GOST/Digest-GOST-0.60.0-r1.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Perl interface to the GOST R 34.11-94 digest algorithm" 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="test" RDEPEND=" diff --git a/dev-perl/Expect/Expect-1.320.0-r1.ebuild b/dev-perl/Expect/Expect-1.320.0-r1.ebuild index 8a573a308b45..1f4227ff5946 100644 --- a/dev-perl/Expect/Expect-1.320.0-r1.ebuild +++ b/dev-perl/Expect/Expect-1.320.0-r1.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Expect for Perl" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ia64 ~mips ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86" IUSE="test minimal" RDEPEND=" diff --git a/dev-perl/Finance-Quote/Finance-Quote-1.470.0.ebuild b/dev-perl/Finance-Quote/Finance-Quote-1.470.0.ebuild new file mode 100644 index 000000000000..adebb474c186 --- /dev/null +++ b/dev-perl/Finance-Quote/Finance-Quote-1.470.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=ECOCODE +DIST_VERSION=1.47 +DIST_EXAMPLES=( "Examples/*" ) +inherit perl-module + +DESCRIPTION="Get stock and mutual fund quotes from various exchanges" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="test" + +# virtual/perl-Data-Dumper currently commented out in the code + +RDEPEND=" + dev-perl/CGI + virtual/perl-Carp + dev-perl/DateTime + virtual/perl-Encode + virtual/perl-Exporter + dev-perl/HTML-Parser + dev-perl/HTML-TableExtract + dev-perl/HTML-Tree + dev-perl/HTTP-Cookies + dev-perl/HTTP-Message + dev-perl/JSON + dev-perl/LWP-Protocol-https + dev-perl/libwww-perl + dev-perl/Mozilla-CA + virtual/perl-Time-Piece + dev-perl/URI +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Data-Dumper + virtual/perl-File-Spec + virtual/perl-Test-Simple + ) +" + +src_test() { + perl_rm_files t/01-pod.t t/02-pod-coverage.t t/03-kwalitee.t \ + t/04-critic.t t/author-pod-syntax.t + if ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then + einfo "Disabling network tests without DIST_TEST_OVERRIDE=~network" + else + export ONLINE_TEST=1 + fi + perl-module_src_test +} + +mydoc=("Documentation/*") + +src_install() { + dodoc -r htdocs + perl-module_src_install +} diff --git a/dev-perl/Finance-Quote/Manifest b/dev-perl/Finance-Quote/Manifest index 1874a31d05c2..b995512e4286 100644 --- a/dev-perl/Finance-Quote/Manifest +++ b/dev-perl/Finance-Quote/Manifest @@ -1,2 +1,3 @@ -DIST Finance-Quote-1.37.tar.gz 251374 SHA256 6e1147e2e13ee27b223dffecf2f3bda5f85e10e8900247942ecb99e30e5cd7ac SHA512 ed58d27d1c14f7818871af4906c1b6109b3d353586bc348140120597199ed72d57b8939cebc95fa534e86ad7b9f9bf69bc4315db1d1cc1da5796aa9771697c51 WHIRLPOOL ee676ffcdceec66e2f5a12ddae7c9ed48426141313eba2a419ef884a1bd8ca326ba2a89e2db86cea9b82e7956b73fd314f2c52003428cabfb27a0b3af76d8801 -DIST Finance-Quote-1.38.tar.gz 327822 SHA256 a95427729e069095aab4cb7bcfa4072739417faa7c0a6d0eb1bd6de28f58187e SHA512 b55382d56ecf89eaf662f49ec6fd803e9e5e0163b63d3020ca3c875d4dff7607f502fa7600997c5db8d62fa671ea82e81597300443fc4b24bb3f94c80bd32439 WHIRLPOOL ef84399bf34541efebb74917f4e41db457e5949dfae71d27c55b8922b676dbbf5b3b8c53645e884f6d2b007ed75b1ca9e466f9b8c7e93d1478a9a707308dfd66 +DIST Finance-Quote-1.37.tar.gz 251374 BLAKE2B b961789ee2e628eb1ef4860269a441302bcd732e844262459ef9eadb27cb68f0528a07b074bf911f64dbd8895efa71ddae0c954e052b673783127b74f69237b3 SHA512 ed58d27d1c14f7818871af4906c1b6109b3d353586bc348140120597199ed72d57b8939cebc95fa534e86ad7b9f9bf69bc4315db1d1cc1da5796aa9771697c51 +DIST Finance-Quote-1.38.tar.gz 327822 BLAKE2B b8efe6c11d51d54a70b1830610ec5e0f9a1f18d8f0fc88c1d8bbbdf0f5d66d75d82b5aab1be5df7acaf4a2e93e0af89ac16d6ef4935342fabdc3db3a65c2a727 SHA512 b55382d56ecf89eaf662f49ec6fd803e9e5e0163b63d3020ca3c875d4dff7607f502fa7600997c5db8d62fa671ea82e81597300443fc4b24bb3f94c80bd32439 +DIST Finance-Quote-1.47.tar.gz 270335 BLAKE2B 585ab3736b7ea448b083f4dbbed460ac442fb30285041b7b0bf2a52d6b2d533a8d1eb1d9bfa72cc1cd7a3d4664d2cb5104eb539ecd6b1042083548b8ef605333 SHA512 a900ed3e305edb8c713dc4a885b912ad9a9f873cb501d66d393a39aacd8a980af1bd4fb0fdf5bce8e2b2aeec744e811b861a2803a6fb0d5c71ab6b8d1c3a57f7 diff --git a/dev-perl/Finance-Quote/metadata.xml b/dev-perl/Finance-Quote/metadata.xml index 2df059191092..7643a0bf5eec 100644 --- a/dev-perl/Finance-Quote/metadata.xml +++ b/dev-perl/Finance-Quote/metadata.xml @@ -12,16 +12,21 @@ Finance::Quote::AIAHK Finance::Quote::ASEGR Finance::Quote::ASX + Finance::Quote::AlphaVantage Finance::Quote::BMONesbittBurns Finance::Quote::BSERO Finance::Quote::Bourso + Finance::Quote::CSE Finance::Quote::Cdnfundlibrary + Finance::Quote::Citywire Finance::Quote::Cominvest Finance::Quote::Currencies Finance::Quote::DWS Finance::Quote::Deka Finance::Quote::FTPortfolios + Finance::Quote::FTfunds Finance::Quote::Fidelity + Finance::Quote::FidelityFixed Finance::Quote::FinanceCanada Finance::Quote::Finanzpartner Finance::Quote::Fool @@ -30,14 +35,17 @@ Finance::Quote::HU Finance::Quote::IndiaMutual Finance::Quote::LeRevenu + Finance::Quote::MStaruk Finance::Quote::ManInvestments Finance::Quote::Morningstar + Finance::Quote::MorningstarJP Finance::Quote::NZX Finance::Quote::Platinum Finance::Quote::SEB Finance::Quote::SIXfunds Finance::Quote::SIXshares Finance::Quote::StockHouseCanada + Finance::Quote::TNetuk Finance::Quote::TSP Finance::Quote::TSX Finance::Quote::Tdefunds @@ -56,6 +64,9 @@ Finance::Quote::Yahoo::Europe Finance::Quote::Yahoo::NZ Finance::Quote::Yahoo::USA + Finance::Quote::YahooJSON + Finance::Quote::YahooYQL Finance::Quote::ZA + Finance::Quote::ZA_UnitTrusts diff --git a/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild b/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild index 5385590d2205..8b9a5fbc7b71 100644 --- a/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild +++ b/dev-perl/IO-Stty/IO-Stty-0.30.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Change and print terminal line settings" 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="test" RDEPEND="" diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz new file mode 100644 index 000000000000..f27a506a691e Binary files /dev/null and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild b/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild index a13f6ebc6243..b14061a882c6 100644 --- a/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild +++ b/dev-perl/Net-DNS-SEC/Net-DNS-SEC-1.20.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION='DNSSEC extensions to Net::DNS' LICENSE="MIT" 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="test" RDEPEND=" diff --git a/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild b/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild index 8382b813a6a7..3ba84d231aea 100644 --- a/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild +++ b/dev-perl/Net-DNS/Net-DNS-1.100.0.ebuild @@ -11,7 +11,7 @@ inherit toolchain-funcs perl-module DESCRIPTION="Perl Net::DNS - Perl DNS Resolver Module" 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="+ipv6 test minimal" PDEPEND="!minimal? ( >=dev-perl/Net-DNS-SEC-1.10.0 )" diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz new file mode 100644 index 000000000000..24dcead9bbe0 Binary files /dev/null and b/dev-php/Manifest.gz differ diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz new file mode 100644 index 000000000000..4a745d8230bb Binary files /dev/null and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyQt5/Manifest b/dev-python/PyQt5/Manifest index df5f8416257c..b1c6ff25209d 100644 --- a/dev-python/PyQt5/Manifest +++ b/dev-python/PyQt5/Manifest @@ -1,3 +1,3 @@ DIST PyQt5_gpl-5.7.1.tar.gz 3733746 SHA256 be849f212a074049b9ebc10b6c07dddefb86e6d30e8df8a5c715cbb2cf7fad14 SHA512 7498713f73807522e58ae38ff58548cf80c2f2c418d6c55e20ce613cdc997e4ee7139076f1f152c7c3edb970bde14febc3496009f934e31ff71f01a1605f558f WHIRLPOOL 9322ccaaebf78a9e177703bae26f002cdfe9ad3ba45a9c7b9ccdd3b73cca96550e479b243b302d59eefdc1520a6e5b5f18ac5fabc1f8eff36f7f76d71b7dea11 -DIST PyQt5_gpl-5.9.1.tar.gz 3101819 SHA256 5fc009448ea78c8fd48eb7083a7b93734dbd61290a9a21dab674096a7762b4ca SHA512 1c7d00dac5329296dd205eddeeecfd29495c4746791730056d143438871eb64a5d9827dcb1e28a78e8746218908e0e72374bd686a21b631b9aa1aa1c67e61eac WHIRLPOOL ab538dbe7eafb07db918c4aed6a701a6c791487181088fa6bd91daa8d90708921a9b1fbc85c80c97e7d65ff6e2b6c15e22f662f4dcb78ee091d487964bc7ef48 -DIST PyQt5_gpl-5.9.tar.gz 3097557 SHA256 ab0e7999cf202cc72962c78aefe461d16497b3c1a8282ab966ad90b6cb271096 SHA512 6e925dee751d6b2ab97b3614b0150f305798b89920e11db7a2cbef579e4c21839a38f4ad7eee5828a0c28942999955715a265e043004ee7838d376025d32e4aa WHIRLPOOL b92833ecc97638c8dac5e35de155ddb9d5783925aa8ab50bdd823b793675354b37edc29e17396241de87b25ae142c37a9cd1c215ad57c25b928ec0af3deac8aa +DIST PyQt5_gpl-5.9.1.tar.gz 3101819 BLAKE2B b457a101ad285e65cd246a7f77cc2d8a53b4b948d1b22405abf7f3a4ea7a0ab10335b310f1731c6660937fa18647fc00858b781f32d44dd85d1452d2eca821cf SHA512 1c7d00dac5329296dd205eddeeecfd29495c4746791730056d143438871eb64a5d9827dcb1e28a78e8746218908e0e72374bd686a21b631b9aa1aa1c67e61eac +DIST PyQt5_gpl-5.9.2.tar.gz 3102848 BLAKE2B b87f25693aa2b20211119f89cf13665bf88f14de8827d43ba757344ab9bdef0b0c197abb8386308c72925da263cabb6efd3f104db8a350c51fca3fba8c7c06b6 SHA512 5af2e65addaed7dd02d8dbf7a7c63767e565fc8edeb7b51e5991a00cda29f75b666529097646e821aaff556f350a929fd451f548bba76e97355b7fe10bd913bc diff --git a/dev-python/PyQt5/PyQt5-5.7.1.ebuild b/dev-python/PyQt5/PyQt5-5.7.1.ebuild index 0de6722265f6..757f91b7a17b 100644 --- a/dev-python/PyQt5/PyQt5-5.7.1.ebuild +++ b/dev-python/PyQt5/PyQt5-5.7.1.ebuild @@ -51,41 +51,40 @@ REQUIRED_USE=" xmlpatterns? ( network ) " -# Minimal supported version of Qt. -QT_PV="5.6.0:5" +QT_PV=${PV} RDEPEND=" ${PYTHON_DEPS} >=dev-python/sip-4.19:=[${PYTHON_USEDEP}] - >=dev-qt/qtcore-${QT_PV} - >=dev-qt/qtxml-${QT_PV} - bluetooth? ( >=dev-qt/qtbluetooth-${QT_PV} ) + ~dev-qt/qtcore-${QT_PV} + ~dev-qt/qtxml-${QT_PV} + bluetooth? ( ~dev-qt/qtbluetooth-${QT_PV} ) dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] - >=dev-qt/qtdbus-${QT_PV} + ~dev-qt/qtdbus-${QT_PV} ) - declarative? ( >=dev-qt/qtdeclarative-${QT_PV}[widgets?] ) - designer? ( >=dev-qt/designer-${QT_PV} ) - gui? ( >=dev-qt/qtgui-${QT_PV}[gles2=] ) - help? ( >=dev-qt/qthelp-${QT_PV} ) - location? ( >=dev-qt/qtlocation-${QT_PV} ) - multimedia? ( >=dev-qt/qtmultimedia-${QT_PV}[widgets?] ) - network? ( >=dev-qt/qtnetwork-${QT_PV} ) - opengl? ( >=dev-qt/qtopengl-${QT_PV} ) - positioning? ( >=dev-qt/qtpositioning-${QT_PV} ) - printsupport? ( >=dev-qt/qtprintsupport-${QT_PV} ) - sensors? ( >=dev-qt/qtsensors-${QT_PV} ) - serialport? ( >=dev-qt/qtserialport-${QT_PV} ) - sql? ( >=dev-qt/qtsql-${QT_PV} ) - svg? ( >=dev-qt/qtsvg-${QT_PV} ) - testlib? ( >=dev-qt/qttest-${QT_PV} ) - webchannel? ( >=dev-qt/qtwebchannel-${QT_PV} ) - webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets?] ) - webkit? ( >=dev-qt/qtwebkit-${QT_PV}[printsupport] ) - websockets? ( >=dev-qt/qtwebsockets-${QT_PV} ) - widgets? ( >=dev-qt/qtwidgets-${QT_PV} ) - x11extras? ( >=dev-qt/qtx11extras-${QT_PV} ) - xmlpatterns? ( >=dev-qt/qtxmlpatterns-${QT_PV} ) + declarative? ( ~dev-qt/qtdeclarative-${QT_PV}[widgets?] ) + designer? ( ~dev-qt/designer-${QT_PV} ) + gui? ( ~dev-qt/qtgui-${QT_PV}[gles2=] ) + help? ( ~dev-qt/qthelp-${QT_PV} ) + location? ( ~dev-qt/qtlocation-${QT_PV} ) + multimedia? ( ~dev-qt/qtmultimedia-${QT_PV}[widgets?] ) + network? ( ~dev-qt/qtnetwork-${QT_PV} ) + opengl? ( ~dev-qt/qtopengl-${QT_PV} ) + positioning? ( ~dev-qt/qtpositioning-${QT_PV} ) + printsupport? ( ~dev-qt/qtprintsupport-${QT_PV} ) + sensors? ( ~dev-qt/qtsensors-${QT_PV} ) + serialport? ( ~dev-qt/qtserialport-${QT_PV} ) + sql? ( ~dev-qt/qtsql-${QT_PV} ) + svg? ( ~dev-qt/qtsvg-${QT_PV} ) + testlib? ( ~dev-qt/qttest-${QT_PV} ) + webchannel? ( ~dev-qt/qtwebchannel-${QT_PV} ) + webengine? ( ~dev-qt/qtwebengine-${QT_PV}[widgets?] ) + webkit? ( ~dev-qt/qtwebkit-${QT_PV}[printsupport] ) + websockets? ( ~dev-qt/qtwebsockets-${QT_PV} ) + widgets? ( ~dev-qt/qtwidgets-${QT_PV} ) + x11extras? ( ~dev-qt/qtx11extras-${QT_PV} ) + xmlpatterns? ( ~dev-qt/qtxmlpatterns-${QT_PV} ) " DEPEND="${RDEPEND} dbus? ( virtual/pkgconfig ) diff --git a/dev-python/PyQt5/PyQt5-5.9.ebuild b/dev-python/PyQt5/PyQt5-5.9.2.ebuild similarity index 95% rename from dev-python/PyQt5/PyQt5-5.9.ebuild rename to dev-python/PyQt5/PyQt5-5.9.2.ebuild index de9e668e6d1f..da916939bf1e 100644 --- a/dev-python/PyQt5/PyQt5-5.9.ebuild +++ b/dev-python/PyQt5/PyQt5-5.9.2.ebuild @@ -42,9 +42,9 @@ REQUIRED_USE=" serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) - testlib? ( gui widgets ) + testlib? ( widgets ) webchannel? ( network ) - webengine? ( network widgets? ( webchannel ) ) + webengine? ( network widgets? ( printsupport webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) @@ -52,11 +52,11 @@ REQUIRED_USE=" " # Minimal supported version of Qt. -QT_PV="5.6.0:5" +QT_PV="5.7.1:5" RDEPEND=" ${PYTHON_DEPS} - >=dev-python/sip-4.19.3:=[${PYTHON_USEDEP}] + >=dev-python/sip-4.19.6:=[${PYTHON_USEDEP}] >=dev-qt/qtcore-${QT_PV} >=dev-qt/qtxml-${QT_PV} bluetooth? ( >=dev-qt/qtbluetooth-${QT_PV} ) @@ -146,7 +146,7 @@ src_configure() { $(pyqt_use_enable svg) $(pyqt_use_enable testlib QtTest) $(pyqt_use_enable webchannel QtWebChannel) - $(pyqt_use_enable webengine QtWebEngineCore $(usex widgets QtWebEngineWidgets '')) + $(pyqt_use_enable webengine QtWebEngine QtWebEngineCore $(usex widgets QtWebEngineWidgets '')) $(pyqt_use_enable webkit QtWebKit QtWebKitWidgets) $(pyqt_use_enable websockets QtWebSockets) $(pyqt_use_enable widgets) diff --git a/dev-python/collectd-rabbitmq/Manifest b/dev-python/collectd-rabbitmq/Manifest index 63c65ab6a254..0fda27b17948 100644 --- a/dev-python/collectd-rabbitmq/Manifest +++ b/dev-python/collectd-rabbitmq/Manifest @@ -1 +1 @@ -DIST collectd-rabbitmq-1.19.0.tar.gz 24966 SHA256 0ca0c0bdc4228619e910dc24494c54ec6a3d13b0b228edcac57a242ce888fc18 SHA512 bc5f1b9ca9fd8c79ff290bd3583fdac57e72940f10b453e54721dfb51627a4c78400cb60cd953530b4d11abbcff78717d9c04ad235e55d78e390ef1accc3e4cc WHIRLPOOL cbe9e5e4cec1c5b54472c408de80494865230a0dcda993ec3d9f63bca42553657eca21018d69918c080d66a855636b8393fa05b4dee9a0f69549a88ea57815ec +DIST collectd-rabbitmq-1.19.0.tar.gz 24966 BLAKE2B cdbfc8849a5060a01779493aa7a7347a70b0cd763dafc89e267d5bcf1e58a85b9da49031df56c738169063594937d87505684237f35b92175f7a8b0f4d0e3a9a SHA512 bc5f1b9ca9fd8c79ff290bd3583fdac57e72940f10b453e54721dfb51627a4c78400cb60cd953530b4d11abbcff78717d9c04ad235e55d78e390ef1accc3e4cc diff --git a/dev-python/collectd-rabbitmq/collectd-rabbitmq-1.19.0.ebuild b/dev-python/collectd-rabbitmq/collectd-rabbitmq-1.19.0.ebuild index 89a72f1c3be9..8b78415309fa 100644 --- a/dev-python/collectd-rabbitmq/collectd-rabbitmq-1.19.0.ebuild +++ b/dev-python/collectd-rabbitmq/collectd-rabbitmq-1.19.0.ebuild @@ -10,7 +10,7 @@ inherit distutils-r1 DESCRIPTION="Collectd plugin to gather statistics from RabbitMQ" HOMEPAGE="https://pypi.python.org/pypi/collectd-rabbitmq" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="~amd64" +KEYWORDS="amd64" LICENSE="Apache-2.0" SLOT="0" diff --git a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild b/dev-python/httplib2/httplib2-0.10.3-r1.ebuild index 18d12684515e..194c3a440d6b 100644 --- a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild +++ b/dev-python/httplib2/httplib2-0.10.3-r1.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 ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pyblake2/Manifest b/dev-python/pyblake2/Manifest index c76df396e897..8cc64e2ed735 100644 --- a/dev-python/pyblake2/Manifest +++ b/dev-python/pyblake2/Manifest @@ -1,2 +1,3 @@ DIST pyblake2-0.9.3.tar.gz 130641 SHA256 626448e1fe1cc01d2197118954bec9f158378577e12686d5b01979f7f0fa2212 SHA512 6336a7f7e79bd3e6ff7f8ff4d279ae170e86f1464b9fa9e7ea7f0dbbac6fcc044caf225111e065f9cd9cdeea0f81fae8d373e1f65be3e418929f53fad063205e WHIRLPOOL 0d8f2aaf35a5eb0ebdedd9219a0ee8b126c93b11ae3e406ef637d8930a34783886b212ce50a33d677b0a19289cd32f40dc3da22a9a9fec108b481268f153d45b DIST pyblake2-1.0.1.tar.gz 128037 SHA256 c969e13d0a96c6fe843bc0b94302f7a90d66c4a5df09d7f3593edb0a9c23749d SHA512 66311aa1cd60942d395c1cd8b996f66f1cb2380f36be471244152a885cee115a8e341a34309520d8b1254eb30d5e1b39b83f89d7eace9353c8ee9e919f4a3881 WHIRLPOOL 613e2706701085e2a7895a02d08235ceecb8313f719ac88ed3beb12a59ad7483061ccb9bdba3ce8b270f973dbac9302def423037608312648fe2b3fb6d672667 +DIST pyblake2-1.1.0.tar.gz 125855 SHA256 3a850036bf42053c74bfc52c063323ca78e40ba1f326b01777da5750a143631a SHA512 e13c7e4f3a35155cbf531e337895349ec01f0ac36908a4e746cecec063601adfc8a73a7961a9c310d01d3231f44f08d2cc92e891e9cb87659bc7170b9fee6102 WHIRLPOOL 48e030a35024f4dd478607d2301d53ec2e3635fe0f5e0899270ea41dc01b3f85afc4bf01ab4d2bf44c7ba1e35c88ec94f7e975d27c37e42527320fa09d5a761f diff --git a/dev-python/pyblake2/pyblake2-1.1.0.ebuild b/dev-python/pyblake2/pyblake2-1.1.0.ebuild new file mode 100644 index 000000000000..82867beb0ce8 --- /dev/null +++ b/dev-python/pyblake2/pyblake2-1.1.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy ) +inherit distutils-r1 + +DESCRIPTION="BLAKE2 hash function extension module" +HOMEPAGE="https://github.com/dchest/pyblake2 https://pypi.python.org/pypi/pyblake2" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +# pyblake2 itself allows more licenses but blake2 allows the following three +LICENSE="|| ( CC0-1.0 openssl Apache-2.0 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +python_test() { + "${EPYTHON}" test/test.py || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/pyinotify/pyinotify-0.9.6.ebuild b/dev-python/pyinotify/pyinotify-0.9.6.ebuild index 85eb045a2680..bf3d28daddf9 100644 --- a/dev-python/pyinotify/pyinotify-0.9.6.ebuild +++ b/dev-python/pyinotify/pyinotify-0.9.6.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 ~hppa ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm64 hppa ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux" IUSE="examples" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pyotherside/Manifest b/dev-python/pyotherside/Manifest index 1eac1405e806..530f140f31e8 100644 --- a/dev-python/pyotherside/Manifest +++ b/dev-python/pyotherside/Manifest @@ -1,2 +1 @@ -DIST pyotherside-1.5.1.tar.gz 181457 SHA256 cb29853d66d2e33f68e28c62c28d054512ab82a763fed8b7b7df9dae722c5de2 SHA512 6f916ce44615c98aa7dffaee073fcb6d7f117996c008c0e3c0e7a8aaedd03f9ba853cc66850112dfc9529d698bd2faeb498a87a0d47c3776ab52b90f83b7067a WHIRLPOOL ad6693efa3aa3a15924010144bb46632fd512fb1af360e56972ddfd28631ff381c06c505acd40b57becb5010c324f4ccc509b3d49ed3716f87b4252027a94405 DIST pyotherside-1.5.3.tar.gz 181811 SHA256 00049d5f42cac448368bc2a521edb8de36bb6d2a624e195b7f1004236758b805 SHA512 ff6aa43e72f5492b18403559514e6fdf0d2cee0965556fcafe5fe394b654a7dd2fc3a7d64d4b8f9c0ebf95485821b77022407772b2414539f2ab287e1fb01e93 WHIRLPOOL 1b515d4d64e47c015979a70214a99151d8449fc9991bccdc524ee64c2d2e36159c61c0b8191054e2062ffe4f86b33b6d370ba8932960a8b0ef0889f76961b999 diff --git a/dev-python/pyotherside/pyotherside-1.5.1.ebuild b/dev-python/pyotherside/pyotherside-1.5.1.ebuild deleted file mode 100644 index b30d8b2501dc..000000000000 --- a/dev-python/pyotherside/pyotherside-1.5.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_{4,5,6} ) - -inherit qmake-utils python-single-r1 - -DESCRIPTION="Asynchronous Python 3 Bindings for Qt 5" -HOMEPAGE="http://github.com/thp/pyotherside http://thp.io/2011/pyotherside" -SRC_URI="https://github.com/thp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="" - -RDEPEND="${PYTHON_DEPS} - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtsvg:5 - " -DEPEND="${RDEPEND}" - -RESTRICT="test" - -src_prepare() { - sed -i -e "s/qtquicktests//" pyotherside.pro || die -} - -src_configure() { - eqmake5 -} - -src_install() { - emake install INSTALL_ROOT="${D}" -} diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest index 3b64c1dbbdcc..c0ed6a1dea71 100644 --- a/dev-python/pytest/Manifest +++ b/dev-python/pytest/Manifest @@ -1,6 +1,3 @@ -DIST pytest-2.7.2.tar.gz 532836 SHA256 b30457f735420d0000d10a44bbd478cf03f8bf20e25bd77248f9bab40f4fd6a4 SHA512 5474a4fe58437a4971fb21b1b37dad3c08e18e5d154931ff23e597f881100a3515bf0cf71d06b143465594ad2a91a96f84f4836d84c39691143c8d88ca7a4360 WHIRLPOOL 6ab7371f952109ac476774222883e1381fe5ee6a54d967f2d90765f6c59c90634a16c42e8e2e1661169db6a9cb1327242ff2281cf1caeabd86a4dacd24f4bb06 -DIST pytest-3.0.3.tar.gz 731934 SHA256 f213500a356800a483e8a146ff971ae14a8df3f2c0ae4145181aad96996abee7 SHA512 ec0b4a5f0d6673a339c5a70b402c004c23db7001005454329eeaea15d890f53b8f2740f6c6254499d0f915b9058bfdfa535d9f22847bb382a060d65204fce4af WHIRLPOOL 1883909fa23832e674cf912b1d88957dd435143dc124df5454c08ad02c8077473168f749ea94539c2c4b5cf08648a0bce7e90937bbdacd4bb69a4ccf15ecff23 -DIST pytest-3.0.6.tar.gz 748748 SHA256 643434a9f1a188271da35e20064cb8b6c5440976c5bb541dc7b5b0e3cf75d940 SHA512 0e983f1f52c18327537d20be30425f4c74037d1fbf6b4aedf2646cf21d450fa9b2b20625f26f5db759b4fe1fd28c6640cb1df88e667efaeea6642e7f02f01e06 WHIRLPOOL 708e5041135883ba31d9712880672f64bf05c0bf40a544061cb42fed4d2aec111bfdf82b63f10e8a87c2b76870e3ea364b396258f0674d2199e43fe93cf2922e -DIST pytest-3.0.7.tar.gz 743866 SHA256 b70696ebd1a5e6b627e7e3ac1365a4bc60aaf3495e843c1e70448966c5224cab SHA512 f458929614fca5bc9542b9adfe2fa5d2c5b97ec13e331d3a9caf256d2d005b3dad9c11d01b2eb62332648f90608ba297a1edc2c20b7630ec4f69114299720a2a WHIRLPOOL 2febc111fed67573296f8c4a758ea36c2a2e81bd425442beace139f7e1bd3eaab7aa2fdcf8e0280871b0692e19d70efe18d780e4dd7336c9dd5d6fb0db2df6c5 -DIST pytest-3.1.2.tar.gz 766406 SHA256 795ec29fbba70b22a593691ce8bcd4bdde2dc96e8099731f73c7d8bb3ce879bf SHA512 6b8bf6280481295585169798351105749301a2b088fa89a48c463578a25edcb1fe7ea4100668bc3013a0a6dfd0ceab31c683e9280ece4f79575ca37909502d5c WHIRLPOOL 5c685f928080a5d6d1a979a0dbda1bc851eff855c76bb471ebf131047506c934e68a2e4733c4b265d291558ec1084d0276e77e469bd3d5ec0d91daa97c5eb989 -DIST pytest-3.2.2.tar.gz 786396 SHA256 f46e49e0340a532764991c498244a60e3a37d7424a532b3ff1a6a7653f1a403a SHA512 6df3a50e7d1efeaf7a283920b16d1daf800798f422bc851b0aacd2bbd5cb0a88c95f9057fae49943b9dfe6527ed552cdf8d983b944ab91d0af252ee4f6eb82db WHIRLPOOL 6d41e74696ed879d78f8a50dabb7775fa7631bfd5a6a1dd9df89269d6d3174683776982451f83b32c197cd801796e671e7431b542376a7d343b00e9fc21616b3 +DIST pytest-2.7.2.tar.gz 532836 BLAKE2B abdb179ca82078ecf081055484d7fc1f1d63f7f3ce58b19ed27e10da25e163a24ad89e4afe8b7e5af0d5fa14ace6eb18c6dbe302845fb6bbf0a545a443fc7847 SHA512 5474a4fe58437a4971fb21b1b37dad3c08e18e5d154931ff23e597f881100a3515bf0cf71d06b143465594ad2a91a96f84f4836d84c39691143c8d88ca7a4360 +DIST pytest-3.0.3.tar.gz 731934 BLAKE2B 7fb57d75bd54eb8a31d9701fdf739119715c475eaaacae3cd038057c1d2bf43fa86ccdc45b3c84962708ef606976ab39ad41e0c3690c8b5f4c04d870579a384e SHA512 ec0b4a5f0d6673a339c5a70b402c004c23db7001005454329eeaea15d890f53b8f2740f6c6254499d0f915b9058bfdfa535d9f22847bb382a060d65204fce4af +DIST pytest-3.2.2.tar.gz 786396 BLAKE2B e669da930890e902b0323ec3a6685080ddd889e74655f7b4cb08ec421651f987597021a31471aab5a32d637b99620ce7792cbdf8f85561db3bb10ff06a446ba1 SHA512 6df3a50e7d1efeaf7a283920b16d1daf800798f422bc851b0aacd2bbd5cb0a88c95f9057fae49943b9dfe6527ed552cdf8d983b944ab91d0af252ee4f6eb82db diff --git a/dev-python/pytest/pytest-3.0.3.ebuild b/dev-python/pytest/pytest-3.0.3.ebuild index 61fe2a0d9fb8..3651e51df43b 100644 --- a/dev-python/pytest/pytest-3.0.3.ebuild +++ b/dev-python/pytest/pytest-3.0.3.ebuild @@ -20,13 +20,13 @@ IUSE="doc test" PY_VER="1.4.29" COMMON_DEPEND=" >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}] ) " DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] test? ( >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}] >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}] diff --git a/dev-python/pytest/pytest-3.0.6.ebuild b/dev-python/pytest/pytest-3.0.6.ebuild deleted file mode 100644 index 77e0facf03fb..000000000000 --- a/dev-python/pytest/pytest-3.0.6.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) - -inherit distutils-r1 - -DESCRIPTION="Simple powerful testing with Python" -HOMEPAGE="http://pytest.org/ https://pypi.python.org/pypi/pytest" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" -IUSE="doc test" - -# When bumping, please check setup.py for the proper py version -PY_VER="1.4.29" -COMMON_DEPEND=" - >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}] - doc? ( - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ) -" -DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}] - >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" -RDEPEND="${COMMON_DEPEND} - !dev-python/logilab-common -" - -python_prepare_all() { - chmod o-w *egg*/* || die - # Disable versioning of py.test script to avoid collision with - # versioning performed by the eclass. - sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed" - grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py dependency" - - # https://bugs.gentoo.org/598442 - rm testing/test_pdb.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - # test_nose.py not written to suit py3.2 in pypy3 - if [[ "${EPYTHON}" == pypy3 ]]; then - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -x -v \ - --ignore=testing/BUILD_nose.py \ - || die "tests failed with ${EPYTHON}" - else - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -v testing || die "tests failed with ${EPYTHON}" - fi -} - -python_compile_all(){ - use doc && emake -C doc/en html -} - -python_install_all() { - use doc && HTML_DOCS=( doc/en/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/pytest/pytest-3.0.7.ebuild b/dev-python/pytest/pytest-3.0.7.ebuild deleted file mode 100644 index 620f064201af..000000000000 --- a/dev-python/pytest/pytest-3.0.7.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) - -inherit distutils-r1 - -DESCRIPTION="Simple powerful testing with Python" -HOMEPAGE="http://pytest.org/ https://pypi.python.org/pypi/pytest" -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" -IUSE="doc test" - -# When bumping, please check setup.py for the proper py version -PY_VER="1.4.29" -COMMON_DEPEND=" - >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}] - doc? ( - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ) -" -DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}] - >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" -RDEPEND="${COMMON_DEPEND} - !dev-python/logilab-common -" - -python_prepare_all() { - chmod o-w *egg*/* || die - # Disable versioning of py.test script to avoid collision with - # versioning performed by the eclass. - sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed" - grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py dependency" - - # Something in the ebuild environment causes this to hang/error. - # https://bugs.gentoo.org/598442 - rm testing/test_pdb.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - # test_nose.py not written to suit py3.2 in pypy3 - if [[ "${EPYTHON}" == pypy3 ]]; then - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -x -v \ - --ignore=testing/BUILD_nose.py \ - || die "tests failed with ${EPYTHON}" - else - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -v testing || die "tests failed with ${EPYTHON}" - fi -} - -python_compile_all(){ - use doc && emake -C doc/en html -} - -python_install_all() { - use doc && HTML_DOCS=( doc/en/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/pytest/pytest-3.1.2.ebuild b/dev-python/pytest/pytest-3.1.2.ebuild deleted file mode 100644 index c949a1553ce7..000000000000 --- a/dev-python/pytest/pytest-3.1.2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) - -inherit distutils-r1 - -DESCRIPTION="Simple powerful testing with Python" -HOMEPAGE="http://pytest.org/" -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 ~amd64-linux ~x86-linux" -IUSE="doc test" - -# When bumping, please check setup.py for the proper py version -PY_VER="1.4.33" -COMMON_DEPEND=" - >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}] - doc? ( - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ) -" -DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}] - >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ) -" -RDEPEND="${COMMON_DEPEND} - !dev-python/logilab-common -" - -python_prepare_all() { - chmod o-w *egg*/* || die - # Disable versioning of py.test script to avoid collision with - # versioning performed by the eclass. - sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed" - grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py dependency" - - # Something in the ebuild environment causes this to hang/error. - # https://bugs.gentoo.org/598442 - rm testing/test_pdb.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - # test_nose.py not written to suit py3.2 in pypy3 - if [[ "${EPYTHON}" == pypy3 ]]; then - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \ - --ignore=testing/BUILD_nose.py \ - || die "tests failed with ${EPYTHON}" - else - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX testing || die "tests failed with ${EPYTHON}" - fi -} - -python_compile_all(){ - use doc && emake -C doc/en html -} - -python_install_all() { - use doc && HTML_DOCS=( doc/en/_build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/pytest/pytest-3.2.2.ebuild b/dev-python/pytest/pytest-3.2.2.ebuild index c949a1553ce7..1a4caf32e250 100644 --- a/dev-python/pytest/pytest-3.2.2.ebuild +++ b/dev-python/pytest/pytest-3.2.2.ebuild @@ -20,13 +20,13 @@ IUSE="doc test" PY_VER="1.4.33" COMMON_DEPEND=" >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}] ) " DEPEND="${COMMON_DEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] dev-python/setuptools_scm[${PYTHON_USEDEP}] test? ( >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}] diff --git a/dev-python/qscintilla-python/Manifest b/dev-python/qscintilla-python/Manifest index 4138c7636c89..e59930c4912e 100644 --- a/dev-python/qscintilla-python/Manifest +++ b/dev-python/qscintilla-python/Manifest @@ -1,3 +1,3 @@ -DIST QScintilla_gpl-2.10.1.tar.gz 2663446 SHA256 97f98a9d91f908db6ce37fecc6d241d955b388a1c487173b60726cba9a3dfa64 SHA512 ea9b95ca371a8af9262493ab59ecaef77e1697ba21d1d594aab39e836917884fd829aa4f6c4e72cce60b0d3f40eac654157cc507d027945f0034881855123ccc WHIRLPOOL 96261f2c2c38458891afad057716bdfee05f74e9f15a8b8ce2eab4445b8c56256cbcb33326631ac1f3624e2c998d490f5e057c348b3a3eb44a9260c938beda61 -DIST QScintilla_gpl-2.9.2.tar.gz 2491222 SHA256 f2c8ccdc9d3dbb90764ceed53ea096da9bb13b6260da1324e6ab4ecea29e620a SHA512 28f88111d7eb6a016a4b87f04d2b7f5d6481b521a3361a526b3b45a56240f5c8de10310e819234fcba773c6df73bf398ae2dce622976a8e760f506be1defb7c8 WHIRLPOOL a04420c66fd417e5304c92a1ee3c1998f6849bccb9088dae96ed48c06cab0a9b1c012f073aafb1e05aaee46564de9ac89ae07145f3ded35cf47beac78065650a +DIST QScintilla_gpl-2.10.1.tar.gz 2663446 BLAKE2B 720ce990b4e3dd65d47cd26b473bffc07240d76b2c10d393cba41331c6f160472d87b9b22985fd45b5b8064d5358b3b25f0decfe8759542a9c987381249bca42 SHA512 ea9b95ca371a8af9262493ab59ecaef77e1697ba21d1d594aab39e836917884fd829aa4f6c4e72cce60b0d3f40eac654157cc507d027945f0034881855123ccc +DIST QScintilla_gpl-2.10.2.tar.gz 2665138 BLAKE2B 1c6349ea717997681e678cdfa6cc590a6a1cfbe652f2dd52d57fefff71229251c46cd4554b546d2e272deb7c3f970c44f657966ad08e45279813215a775c637d SHA512 755f486d62275acb5908262c4a50ad31dd9d8fca0501eb1eeec1aa2181872f8d16179b42f4213b207fd6b46fd8a72d25af7ce6c5cc10eabb363a92c0600ca972 DIST QScintilla_gpl-2.9.4.tar.gz 2557199 SHA256 8b3a23023e9f0573caed6f9cee86f898d87b768ee15b8c211a423783a4cfa4e6 SHA512 5a2eebbe523a0f2f1c7bc63ce5ee9cb8793a597d00eea5b638f18f90d6e798e92c281be23ee5e7072d5afced9e1fccb6ae51526a3623d373d57c3db64d026b16 WHIRLPOOL 68aacdcd0fc7102494ccae1f0ea3e222845bdd3f9bef603d89fe50d50dba6ac77471228a84c1c281a46ccf74bdb6902aa3bb21f89388ec5408bdde5876cf8655 diff --git a/dev-python/qscintilla-python/qscintilla-python-2.10.2.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.10.2.ebuild new file mode 100644 index 000000000000..ddaeac5786b7 --- /dev/null +++ b/dev-python/qscintilla-python/qscintilla-python-2.10.2.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit multibuild python-r1 qmake-utils + +MY_P=QScintilla_gpl-${PV/_pre/.dev} + +DESCRIPTION="Python bindings for Qscintilla" +HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro" +SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug +qt4 qt5" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + || ( qt4 qt5 ) +" + +DEPEND=" + ${PYTHON_DEPS} + >=dev-python/sip-4.19:=[${PYTHON_USEDEP}] + ~x11-libs/qscintilla-${PV}:=[qt4?,qt5?] + qt4? ( + >=dev-python/PyQt4-4.11.3[X,${PYTHON_USEDEP}] + dev-qt/qtcore:4 + dev-qt/qtgui:4 + ) + qt5? ( + dev-python/PyQt5[gui,printsupport,widgets,${PYTHON_USEDEP}] + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtwidgets:5 + ) +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P}/Python + +pkg_setup() { + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) +} + +src_configure() { + configuration() { + # Fix out-of-source build and installation of .sip files + ln -s "${S}"/sip || die + + local my_qt_ver=4 + if [[ ${MULTIBUILD_ID} == *qt5* ]]; then + my_qt_ver=5 + fi + + local myconf=( + "${PYTHON}" + "${S}"/configure.py + --qmake="$(qt${my_qt_ver}_get_bindir)"/qmake + --sip-incdir="$(python_get_includedir)" + --pyqt=PyQt${my_qt_ver} + $(usex debug '--debug --trace' '') + --verbose + ) + echo "${myconf[@]}" + "${myconf[@]}" || die + + # Run eqmake to respect toolchain, build flags, and prevent stripping + eqmake${my_qt_ver} -recursive + } + multibuild_foreach_variant python_foreach_impl run_in_build_dir configuration +} + +src_compile() { + multibuild_foreach_variant python_foreach_impl run_in_build_dir default +} + +src_install() { + installation() { + emake INSTALL_ROOT="${D}" install + python_optimize + } + multibuild_foreach_variant python_foreach_impl run_in_build_dir installation +} diff --git a/dev-python/qscintilla-python/qscintilla-python-2.9.2-r1.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.9.2-r1.ebuild deleted file mode 100644 index 185c56368ada..000000000000 --- a/dev-python/qscintilla-python/qscintilla-python-2.9.2-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -inherit python-r1 qmake-utils - -MY_P=QScintilla_gpl-${PV} - -DESCRIPTION="Python bindings for Qscintilla" -HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro" -SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86" -IUSE="debug" - -DEPEND=" - ${PYTHON_DEPS} - >=dev-python/sip-4.18:=[${PYTHON_USEDEP}] - >=dev-python/PyQt4-4.11.3[X,${PYTHON_USEDEP}] - dev-qt/qtcore:4 - dev-qt/qtgui:4 - ~x11-libs/qscintilla-${PV}:=[qt4(-)] -" -RDEPEND="${DEPEND}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S=${WORKDIR}/${MY_P}/Python - -src_prepare() { - default - python_copy_sources -} - -src_configure() { - configuration() { - local myconf=( - "${PYTHON}" - configure.py - --qmake="$(qt4_get_bindir)"/qmake - --destdir="$(python_get_sitedir)"/PyQt4 - --sip-incdir="$(python_get_includedir)" - --pyqt=PyQt4 - $(usex debug '--debug --trace' '') - --verbose - ) - echo "${myconf[@]}" - "${myconf[@]}" || die - - # Run eqmake4 to respect toolchain, build flags, and prevent stripping - eqmake4 -recursive - } - python_foreach_impl run_in_build_dir configuration -} - -src_compile() { - python_foreach_impl run_in_build_dir default -} - -src_install() { - installation() { - emake INSTALL_ROOT="${D}" install - python_optimize - } - python_foreach_impl run_in_build_dir installation -} diff --git a/dev-python/sip/Manifest b/dev-python/sip/Manifest index feaef1c163e5..98832baa997e 100644 --- a/dev-python/sip/Manifest +++ b/dev-python/sip/Manifest @@ -1,3 +1,3 @@ DIST sip-4.19.1.tar.gz 1000644 SHA256 501852b8325349031b769d1c03d6eab04f7b9b97f790ec79f3d3d04bf065d83e SHA512 fd98002117e9526f7f981b46362c41171e703a0e18e57112fcabf33d71fa13a4a091fdcb05c879ea721da59fa8c03087b8dc983fb2f832f764e5ad950c9bbecf WHIRLPOOL 87deee5786ca5009ca139bf6993e82231b1dd5be9bf7ee1d94eb5c8aabf5bda980f6b0fa4571e838275ac7cd8615757a58d0b9d7e776705834db35a1dc92125d DIST sip-4.19.3.tar.gz 1007481 SHA256 740df844f80cc45dcc9b23294a92492923bc403ce88e68c35783f27c177c4b74 SHA512 b2dea0cb5e1b23531f35e94bd604ec9874f0875badb5b20eb5abd2732a1005b2dd15bb42e0007b65053a2153b50659f24671abd83a434991661168a5778b94bc WHIRLPOOL 6283491e6baf6b7806a9fd68e77463983c475f7ea721832e573dc86158e226428d5bd9da084a554180ac4308ccf23d98f4c51f9af11fcfb5ecda8bf4dee028f7 -DIST sip-4.19.6.dev1711101252.tar.gz 999851 SHA256 f4152acde96c4cff72cab53004023c40139390a159188e0861ec666c94418d13 SHA512 87478433fb5a093f0f48465455eb731a90ab660d8d9b08f72071cdbe645220f5b923301214d524de90394dd55166e017a66427bed0fcc8731a08866e494c15d5 WHIRLPOOL 793e5a4515af673bc85cfcf11fb19a37f926237b7432c701f6b32f2dfd6a203e4f11f3362f401eb583ffc72e028144c441e79b261274c09705bca5ad07f2baeb +DIST sip-4.19.6.tar.gz 1019295 BLAKE2B 107bc63b8c0f200c292bbf465507602904383a1d3fd0b76da907cda2dcf0e79edb9cbf835bc15dbefd991db6a7eeff97462965d88704e3c926ce9e0dd5af829f SHA512 1bfd2da8b0ece6156aa94713d5e9ced6226b7f49427ca4a11b65452a67e9c740b93a1f90c00a0636d4eef8a31324988a84373c15194f64774b6f8c084d0464f7 diff --git a/dev-python/sip/sip-4.19.6_pre1711101252.ebuild b/dev-python/sip/sip-4.19.6.ebuild similarity index 100% rename from dev-python/sip/sip-4.19.6_pre1711101252.ebuild rename to dev-python/sip/sip-4.19.6.ebuild diff --git a/dev-qt/Manifest.gz b/dev-qt/Manifest.gz new file mode 100644 index 000000000000..cfe2d5addfc1 Binary files /dev/null and b/dev-qt/Manifest.gz differ diff --git a/dev-ros/Manifest.gz b/dev-ros/Manifest.gz new file mode 100644 index 000000000000..d71353d2ac15 Binary files /dev/null and b/dev-ros/Manifest.gz differ diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz new file mode 100644 index 000000000000..8ab942a32aa1 Binary files /dev/null and b/dev-ruby/Manifest.gz differ diff --git a/dev-scheme/Manifest.gz b/dev-scheme/Manifest.gz new file mode 100644 index 000000000000..d16ebc1f6b7b Binary files /dev/null and b/dev-scheme/Manifest.gz differ diff --git a/dev-tcltk/Manifest.gz b/dev-tcltk/Manifest.gz new file mode 100644 index 000000000000..5902dbfd3c28 Binary files /dev/null and b/dev-tcltk/Manifest.gz differ diff --git a/dev-tcltk/snack/snack-2.2.10-r6.ebuild b/dev-tcltk/snack/snack-2.2.10-r6.ebuild index e700af31338d..d7af7b86d79e 100644 --- a/dev-tcltk/snack/snack-2.2.10-r6.ebuild +++ b/dev-tcltk/snack/snack-2.2.10-r6.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="http://www.speech.kth.se/snack/" SRC_URI="http://www.speech.kth.se/snack/dist/${PN}${PV}.tar.gz" LICENSE="GPL-2" -KEYWORDS="alpha amd64 hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" SLOT="0" IUSE="alsa examples python threads vorbis" diff --git a/dev-tex/Manifest.gz b/dev-tex/Manifest.gz new file mode 100644 index 000000000000..4e8e180414b8 Binary files /dev/null and b/dev-tex/Manifest.gz differ diff --git a/dev-tex/biblatex-apa/Manifest b/dev-tex/biblatex-apa/Manifest index ea1a60da5a68..2744e92934f3 100644 --- a/dev-tex/biblatex-apa/Manifest +++ b/dev-tex/biblatex-apa/Manifest @@ -1,3 +1,2 @@ -DIST biblatex-apa-6.6.tar.gz 140429 SHA256 00a710d12735a14c4083fb5c85a9da8222a6ebba8e74bd365e2dcb23f9d895b6 SHA512 a606521223896dc71f2fd4b41bebb9c3a0ddd7b466adfddec1e67f802de2b64f280093c2ad0265afddd8abfe9de226cfe77701ac337e36c8163e1ce0201a4a01 WHIRLPOOL a8ae219ddfaad8c9a59a296fee57f2fc41ec288f85104bd8cd3f698799c23bd03b243108b84b5c969e9c739b26556f53e6dcc542b37de5bcd53b6a8bebaf61a4 DIST biblatex-apa-7.4.tar.gz 164225 SHA256 ae0aaeff28c6f76d7d534c1253ca70597907fa1839bfd1f0976115a50730ff53 SHA512 a045eb7f6083759e7ef58e1ba2c8cd462b47c520205b61d2d73f9a591b2e53917eac230972bf4de492156f7a669758add12338b9f051c7737fefe2784d256564 WHIRLPOOL eac0bb8dd02d42e6f1d522df2256770a5499f9bf710d35ae899a3e63ed9c4007c96a7e5f88ba51940553743c21a49e7f478fce311b12d368be42aec3f4e7f650 DIST biblatex-apa-7.5.tar.gz 165602 SHA256 60a1e675a9848c27953af080a15de24d45e3620a70bcc39b33c58eab813a5105 SHA512 ad582d27ecb3005e73c5d5d9ecc8036f65ba7547f7346e0d58b01e2bbe710c0d557a4375cc2e5d5a47ba729e4d8b0b40ef6f3fa478022498071c216e78426402 WHIRLPOOL 4d608e3642fb1345b31245e88960335f4cec859c13717ec8e45c9b964b6b5c1d379d916817661e757ac0ee648484a5cf4732c2587a92f9be4657fad429bec3f7 diff --git a/dev-tex/biblatex-apa/biblatex-apa-6.6.ebuild b/dev-tex/biblatex-apa/biblatex-apa-6.6.ebuild deleted file mode 100644 index 21b11c161bfe..000000000000 --- a/dev-tex/biblatex-apa/biblatex-apa-6.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit latex-package - -DESCRIPTION="APA style for BibLaTeX" -HOMEPAGE="http://www.ctan.org/pkg/biblatex-apa https://github.com/plk/biblatex-apa" -SRC_URI="https://github.com/plk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LPPL-1.3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples" - -RDEPEND="dev-texlive/texlive-bibtexextra - dev-tex/biblatex" -DEPEND="${RDEPEND}" - -TEXMF=/usr/share/texmf-site - -src_install() { - insinto "${TEXMF}" - doins -r tex - - dodoc README RELEASE - use doc && { pushd doc/ ; latex-package_src_doinstall doc ; popd ; } -} diff --git a/dev-texlive/Manifest.gz b/dev-texlive/Manifest.gz new file mode 100644 index 000000000000..7b8c339af7f8 Binary files /dev/null and b/dev-texlive/Manifest.gz differ diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz new file mode 100644 index 000000000000..b3696088fe12 Binary files /dev/null and b/dev-util/Manifest.gz differ diff --git a/dev-util/kdevelop-php/kdevelop-php-5.2.0.ebuild b/dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild similarity index 100% rename from dev-util/kdevelop-php/kdevelop-php-5.2.0.ebuild rename to dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild diff --git a/dev-util/kdevelop-python/kdevelop-python-5.2.0.ebuild b/dev-util/kdevelop-python/kdevelop-python-5.2.1.ebuild similarity index 100% rename from dev-util/kdevelop-python/kdevelop-python-5.2.0.ebuild rename to dev-util/kdevelop-python/kdevelop-python-5.2.1.ebuild diff --git a/dev-util/kdevelop/kdevelop-5.2.0.ebuild b/dev-util/kdevelop/kdevelop-5.2.1.ebuild similarity index 100% rename from dev-util/kdevelop/kdevelop-5.2.0.ebuild rename to dev-util/kdevelop/kdevelop-5.2.1.ebuild diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz new file mode 100644 index 000000000000..c5d82cfc38e4 Binary files /dev/null and b/dev-vcs/Manifest.gz differ diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz new file mode 100644 index 000000000000..ee179d712124 Binary files /dev/null and b/eclass/Manifest.gz differ diff --git a/games-action/Manifest.gz b/games-action/Manifest.gz new file mode 100644 index 000000000000..0570bbcc7540 Binary files /dev/null and b/games-action/Manifest.gz differ diff --git a/games-arcade/Manifest.gz b/games-arcade/Manifest.gz new file mode 100644 index 000000000000..0b67682b9387 Binary files /dev/null and b/games-arcade/Manifest.gz differ diff --git a/games-board/Manifest.gz b/games-board/Manifest.gz new file mode 100644 index 000000000000..f93fc436973b Binary files /dev/null and b/games-board/Manifest.gz differ diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz new file mode 100644 index 000000000000..7efbd45296a6 Binary files /dev/null and b/games-emulation/Manifest.gz differ diff --git a/games-engines/Manifest.gz b/games-engines/Manifest.gz new file mode 100644 index 000000000000..3269b2dc4468 Binary files /dev/null and b/games-engines/Manifest.gz differ diff --git a/games-fps/Manifest.gz b/games-fps/Manifest.gz new file mode 100644 index 000000000000..ecfd228eec5a Binary files /dev/null and b/games-fps/Manifest.gz differ diff --git a/games-kids/Manifest b/games-kids/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/games-misc/Manifest.gz b/games-misc/Manifest.gz new file mode 100644 index 000000000000..08b2059ae687 Binary files /dev/null and b/games-misc/Manifest.gz differ diff --git a/games-mud/Manifest.gz b/games-mud/Manifest.gz new file mode 100644 index 000000000000..c0e7abdae641 Binary files /dev/null and b/games-mud/Manifest.gz differ diff --git a/games-puzzle/Manifest.gz b/games-puzzle/Manifest.gz new file mode 100644 index 000000000000..c7d17c7fca49 Binary files /dev/null and b/games-puzzle/Manifest.gz differ diff --git a/games-roguelike/Manifest.gz b/games-roguelike/Manifest.gz new file mode 100644 index 000000000000..46bc9afa830e Binary files /dev/null and b/games-roguelike/Manifest.gz differ diff --git a/games-rpg/Manifest.gz b/games-rpg/Manifest.gz new file mode 100644 index 000000000000..79df466e5588 Binary files /dev/null and b/games-rpg/Manifest.gz differ diff --git a/games-server/Manifest b/games-server/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/games-simulation/Manifest.gz b/games-simulation/Manifest.gz new file mode 100644 index 000000000000..43f59a2b504b Binary files /dev/null and b/games-simulation/Manifest.gz differ diff --git a/games-sports/Manifest.gz b/games-sports/Manifest.gz new file mode 100644 index 000000000000..453179e148cd Binary files /dev/null and b/games-sports/Manifest.gz differ diff --git a/games-strategy/Manifest.gz b/games-strategy/Manifest.gz new file mode 100644 index 000000000000..c019bd8041b8 Binary files /dev/null and b/games-strategy/Manifest.gz differ diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz new file mode 100644 index 000000000000..ec100e96f287 Binary files /dev/null and b/games-util/Manifest.gz differ diff --git a/gnome-base/Manifest.gz b/gnome-base/Manifest.gz new file mode 100644 index 000000000000..b0a18a6f7260 Binary files /dev/null and b/gnome-base/Manifest.gz differ diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz new file mode 100644 index 000000000000..9a13858ded61 Binary files /dev/null and b/gnome-extra/Manifest.gz differ diff --git a/gnustep-apps/Manifest.gz b/gnustep-apps/Manifest.gz new file mode 100644 index 000000000000..2d85a5326b7a Binary files /dev/null and b/gnustep-apps/Manifest.gz differ diff --git a/gnustep-base/Manifest b/gnustep-base/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/gnustep-libs/Manifest b/gnustep-libs/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/java-virtuals/Manifest b/java-virtuals/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz new file mode 100644 index 000000000000..808ccfa97313 Binary files /dev/null and b/kde-apps/Manifest.gz differ diff --git a/kde-frameworks/Manifest.gz b/kde-frameworks/Manifest.gz new file mode 100644 index 000000000000..20a92f09fe74 Binary files /dev/null and b/kde-frameworks/Manifest.gz differ diff --git a/kde-misc/Manifest.gz b/kde-misc/Manifest.gz new file mode 100644 index 000000000000..2f03d8c71eb0 Binary files /dev/null and b/kde-misc/Manifest.gz differ diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz new file mode 100644 index 000000000000..d9b4e68af233 Binary files /dev/null and b/kde-plasma/Manifest.gz differ diff --git a/licenses/Manifest.gz b/licenses/Manifest.gz new file mode 100644 index 000000000000..e6039a15b16f Binary files /dev/null and b/licenses/Manifest.gz differ diff --git a/lxde-base/Manifest.gz b/lxde-base/Manifest.gz new file mode 100644 index 000000000000..d1e6c6782dc1 Binary files /dev/null and b/lxde-base/Manifest.gz differ diff --git a/lxqt-base/Manifest.gz b/lxqt-base/Manifest.gz new file mode 100644 index 000000000000..97b4c3e75d77 Binary files /dev/null and b/lxqt-base/Manifest.gz differ diff --git a/mail-client/Manifest.gz b/mail-client/Manifest.gz new file mode 100644 index 000000000000..bef841496e2f Binary files /dev/null and b/mail-client/Manifest.gz differ diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz new file mode 100644 index 000000000000..cefc51b67ac8 Binary files /dev/null and b/mail-filter/Manifest.gz differ diff --git a/mail-mta/Manifest.gz b/mail-mta/Manifest.gz new file mode 100644 index 000000000000..cadca32d51a2 Binary files /dev/null and b/mail-mta/Manifest.gz differ diff --git a/mate-base/Manifest b/mate-base/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/mate-extra/Manifest.gz b/mate-extra/Manifest.gz new file mode 100644 index 000000000000..c742d697c242 Binary files /dev/null and b/mate-extra/Manifest.gz differ diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz new file mode 100644 index 000000000000..607b4b3ed431 Binary files /dev/null and b/media-fonts/Manifest.gz differ diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz new file mode 100644 index 000000000000..284b3160e108 Binary files /dev/null and b/media-gfx/Manifest.gz differ diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz new file mode 100644 index 000000000000..b027f2c436a9 Binary files /dev/null and b/media-libs/Manifest.gz differ diff --git a/media-libs/lcms/files/lcms-2.9-BE-test.patch b/media-libs/lcms/files/lcms-2.9-BE-test.patch new file mode 100644 index 000000000000..577c77cc2b84 --- /dev/null +++ b/media-libs/lcms/files/lcms-2.9-BE-test.patch @@ -0,0 +1,54 @@ +https://bugs.gentoo.org/638192 + +From 8aca404f486429e2304bd6572c2a6fb89e43cf2d Mon Sep 17 00:00:00 2001 +From: Marti Maria +Date: Mon, 20 Nov 2017 21:59:38 +0100 +Subject: [PATCH] fix for big endian MLU bug + +Thanks to Sergei Trofimovic for the fix +--- + AUTHORS | 1 + + src/cmsnamed.c | 20 ++++++-------------- + 2 files changed, 7 insertions(+), 14 deletions(-) + +diff --git a/src/cmsnamed.c b/src/cmsnamed.c +index 95dc18b..773e4d2 100644 +--- a/src/cmsnamed.c ++++ b/src/cmsnamed.c +@@ -183,27 +183,19 @@ cmsBool AddMLUBlock(cmsMLU* mlu, cmsUInt32Number size, const wchar_t *Block, + + static + cmsUInt16Number strTo16(const char str[3]) +-{ ++{ + const cmsUInt8Number* ptr8 = (const cmsUInt8Number*)str; +- cmsUInt16Number n = (cmsUInt16Number) (((cmsUInt16Number) ptr8[1] << 8) | ptr8[0]); ++ cmsUInt16Number n = (cmsUInt16Number)(((cmsUInt16Number)ptr8[0] << 8) | ptr8[1]); + +- return _cmsAdjustEndianess16(n); ++ return n; + } + + static + void strFrom16(char str[3], cmsUInt16Number n) + { +- // Assuming this would be aligned +- union { +- +- cmsUInt16Number n; +- cmsUInt8Number str[2]; +- +- } c; +- +- c.n = _cmsAdjustEndianess16(n); +- +- str[0] = (char) c.str[0]; str[1] = (char) c.str[1]; str[2] = (char) 0; ++ str[0] = (char)(n >> 8); ++ str[1] = (char)n; ++ str[2] = (char)0; + + } + +-- +2.15.0 + diff --git a/media-libs/lcms/lcms-2.9.ebuild b/media-libs/lcms/lcms-2.9.ebuild index 76f32199b4f6..91083a71120c 100644 --- a/media-libs/lcms/lcms-2.9.ebuild +++ b/media-libs/lcms/lcms-2.9.ebuild @@ -22,6 +22,8 @@ DEPEND="${RDEPEND}" S="${WORKDIR}/lcms2-${PV}" +PATCHES=("${FILESDIR}"/${P}-BE-test.patch) + src_prepare() { default elibtoolize # for Prefix/Solaris diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz new file mode 100644 index 000000000000..f06321594d90 Binary files /dev/null and b/media-plugins/Manifest.gz differ diff --git a/media-radio/Manifest.gz b/media-radio/Manifest.gz new file mode 100644 index 000000000000..2b6bd7daacda Binary files /dev/null and b/media-radio/Manifest.gz differ diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz new file mode 100644 index 000000000000..a919a8abd19d Binary files /dev/null and b/media-sound/Manifest.gz differ diff --git a/media-sound/alsamixer-app/Manifest b/media-sound/alsamixer-app/Manifest index 8395bbcf9ca2..ff462eb255b1 100644 --- a/media-sound/alsamixer-app/Manifest +++ b/media-sound/alsamixer-app/Manifest @@ -1 +1 @@ -DIST AlsaMixer.app-0.1.tar.gz 26939 SHA256 7d55d3ba5ffd82bcddcb546e0aa33ab8638df5d1418aa170e91c42e35c0c8c15 SHA512 48f741c578b51a10d2bcaac375be07d9c2ed705c876fa17d69565b41ade6dc28e72af1509b7d817b452199e8ad60f4e24b78565c134b90ac7f29623b89765e24 WHIRLPOOL 4acee1f506b7a0b0b0ffb08f4b5d4458ff504d4416cf27e882170a849d4e30660583645284ec1985353182e2ffa1c31daee8164199185053904a01b2eaceb176 +DIST AlsaMixer.app-0.1.tar.gz 26939 BLAKE2B f581aedc043c12bcbf43014b04fa92614b0acc8e49802bdb87ec550fdf2649a7ceb902e01b4ed7c2fc038a1a396a7ad6169e0d418c55df91733038a7bcb524c1 SHA512 48f741c578b51a10d2bcaac375be07d9c2ed705c876fa17d69565b41ade6dc28e72af1509b7d817b452199e8ad60f4e24b78565c134b90ac7f29623b89765e24 diff --git a/media-sound/alsamixer-app/alsamixer-app-0.1.ebuild b/media-sound/alsamixer-app/alsamixer-app-0.1.ebuild index 166a6d308791..2a8f17364a44 100644 --- a/media-sound/alsamixer-app/alsamixer-app-0.1.ebuild +++ b/media-sound/alsamixer-app/alsamixer-app-0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils toolchain-funcs @@ -7,8 +7,8 @@ MY_PN=AlsaMixer.app MY_P=${MY_PN}-${PV} DESCRIPTION="AlsaMixer.app is a simple mixer dockapp" -HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/253" -SRC_URI="http://dockapps.windowmaker.org/download.php/id/517/${MY_P}.tar.gz" +HOMEPAGE="http://www.dockapps.net/alsamixerapp" +SRC_URI="http://www.dockapps.net/download/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz new file mode 100644 index 000000000000..cd4e9b7cf27e Binary files /dev/null and b/media-tv/Manifest.gz differ diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz new file mode 100644 index 000000000000..06226849e531 Binary files /dev/null and b/media-video/Manifest.gz differ diff --git a/metadata/Manifest b/metadata/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/dtd/Manifest b/metadata/dtd/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index f2df4e7f24ed..a46dbcc0403e 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Fri, 24 Nov 2017 14:39:15 +0000 +Sat, 25 Nov 2017 02:39:03 +0000 diff --git a/metadata/glsa/Manifest b/metadata/glsa/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index f2df4e7f24ed..a46dbcc0403e 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Fri, 24 Nov 2017 14:39:15 +0000 +Sat, 25 Nov 2017 02:39:03 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz new file mode 100644 index 000000000000..f8e35b581b6f Binary files /dev/null and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/Manifest.gz b/metadata/md5-cache/app-accessibility/Manifest.gz new file mode 100644 index 000000000000..87482301e0ea Binary files /dev/null and b/metadata/md5-cache/app-accessibility/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz new file mode 100644 index 000000000000..00baf47898e5 Binary files /dev/null and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-antivirus/Manifest b/metadata/md5-cache/app-antivirus/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/md5-cache/app-antivirus/clamav-0.99.2-r1 b/metadata/md5-cache/app-antivirus/clamav-0.99.2-r1 index e9e63a9e76e7..4063343e6ab7 100644 --- a/metadata/md5-cache/app-antivirus/clamav-0.99.2-r1 +++ b/metadata/md5-cache/app-antivirus/clamav-0.99.2-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst prepare setup test -DEPEND=bzip2? ( app-arch/bzip2 ) clamdtop? ( sys-libs/ncurses:0 ) iconv? ( virtual/libiconv ) metadata-analysis-api? ( dev-libs/json-c ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-devel/libtool >dev-libs/libpcre-6 !!=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEPEND=bzip2? ( app-arch/bzip2 ) clamdtop? ( sys-libs/ncurses:0 ) iconv? ( virtual/libiconv ) metadata-analysis-api? ( dev-libs/json-c ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-devel/libtool || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) !!=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DESCRIPTION=Clam Anti-Virus Scanner EAPI=6 HOMEPAGE=http://www.clamav.net/ IUSE=bzip2 clamdtop iconv ipv6 libressl milter metadata-analysis-api selinux static-libs uclibc KEYWORDS=alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=bzip2? ( app-arch/bzip2 ) clamdtop? ( sys-libs/ncurses:0 ) iconv? ( virtual/libiconv ) metadata-analysis-api? ( dev-libs/json-c ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-devel/libtool >dev-libs/libpcre-6 !!=sys-libs/zlib-1.2.2 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) sys-devel/libtool || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) !!=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Tools for working with the ipkg binary package format +EAPI=6 +HOMEPAGE=http://www.openembedded.org/ +IUSE=minimal python_targets_python2_7 +KEYWORDS=~amd64 ~arm ~hppa ~mips ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=!minimal? ( app-crypt/gnupg net-misc/curl ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://handhelds.org/download/packages/ipkg-utils/ipkg-utils-050831.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=82ee837107ff570b035db3abff03553f diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz new file mode 100644 index 000000000000..d35442ebeeaa Binary files /dev/null and b/metadata/md5-cache/app-backup/Manifest.gz differ diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz new file mode 100644 index 000000000000..fe3cf1482f35 Binary files /dev/null and b/metadata/md5-cache/app-benchmarks/Manifest.gz differ diff --git a/metadata/md5-cache/app-cdr/Manifest.gz b/metadata/md5-cache/app-cdr/Manifest.gz new file mode 100644 index 000000000000..bc2f49bb7466 Binary files /dev/null and b/metadata/md5-cache/app-cdr/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz new file mode 100644 index 000000000000..4e4e36e66d31 Binary files /dev/null and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/yubikey-manager-qt-0.3.1 b/metadata/md5-cache/app-crypt/yubikey-manager-qt-0.3.1 deleted file mode 100644 index 9888eb1ea86b..000000000000 --- a/metadata/md5-cache/app-crypt/yubikey-manager-qt-0.3.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare setup unpack -DEPEND=app-crypt/yubikey-manager[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-python/pyotherside[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-qt/qtsingleapplication[qt5] dev-qt/qtdeclarative:5 dev-qt/qtwidgets:5 -DESCRIPTION=Cross-platform application for configuring any YubiKey over all USB transports -EAPI=6 -HOMEPAGE=https://developers.yubico.com/yubikey-manager-qt https://github.com/Yubico/yubikey-manager-qt -IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 -KEYWORDS=~amd64 -LICENSE=BSD-2 -RDEPEND=app-crypt/yubikey-manager[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-python/pyotherside[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-qt/qtsingleapplication[qt5] dev-qt/qtdeclarative:5 dev-qt/qtwidgets:5 -SLOT=0 -SRC_URI=https://github.com/Yubico/yubikey-manager-qt/archive/yubikey-manager-qt-0.3.1.tar.gz -_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af vcs-snapshot 03289f51c769cf409d200d2d628cdd6e -_md5_=59703d9fdb48208a7b97d45d5ac49227 diff --git a/metadata/md5-cache/app-dicts/Manifest.gz b/metadata/md5-cache/app-dicts/Manifest.gz new file mode 100644 index 000000000000..8f7edf490fdd Binary files /dev/null and b/metadata/md5-cache/app-dicts/Manifest.gz differ diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz new file mode 100644 index 000000000000..6c05d466d02c Binary files /dev/null and b/metadata/md5-cache/app-doc/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz new file mode 100644 index 000000000000..2625ff6e885b Binary files /dev/null and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/joe-4.4 b/metadata/md5-cache/app-editors/joe-4.4 index 2c806165a597..eca4be8b2ff6 100644 --- a/metadata/md5-cache/app-editors/joe-4.4 +++ b/metadata/md5-cache/app-editors/joe-4.4 @@ -4,10 +4,10 @@ DESCRIPTION=A free ASCII-Text Screen Editor for UNIX EAPI=6 HOMEPAGE=https://sourceforge.net/projects/joe-editor/ IUSE=xterm -KEYWORDS=alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris +KEYWORDS=alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris LICENSE=GPL-1+ CC-BY-3.0 RDEPEND=>=sys-libs/ncurses-5.2-r2:0= xterm? ( >=x11-terms/xterm-239 ) SLOT=0 SRC_URI=mirror://sourceforge/joe-editor/joe-4.4.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=e6347558d326a146d321a13416621135 +_md5_=548536519757ec77d724b658c34c0714 diff --git a/metadata/md5-cache/app-editors/kile-2.9.91 b/metadata/md5-cache/app-editors/kile-2.9.91 index b57015611ea9..31a4f02418ed 100644 --- a/metadata/md5-cache/app-editors/kile-2.9.91 +++ b/metadata/md5-cache/app-editors/kile-2.9.91 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kcrash-5.37.0:5 >=kde-frameworks/kdbusaddons-5.37.0:5 >=kde-frameworks/kdoctools-5.37.0:5 >=kde-frameworks/kguiaddons-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kiconthemes-5.37.0:5 >=kde-frameworks/kinit-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kparts-5.37.0:5 >=kde-frameworks/ktexteditor-5.37.0:5 >=kde-frameworks/kwindowsystem-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=kde-apps/okular-14.12.0:5 >=dev-qt/qtdbus-5.7.1:5 >=dev-qt/qtscript-5.7.1:5 >=dev-qt/qttest-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 pdf? ( app-text/poppler[qt5] ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info >=kde-frameworks/extra-cmake-modules-5.37.0:5 handbook? ( >=kde-frameworks/kdoctools-5.37.0:5 ) >=dev-qt/qtcore-5.7.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DEPEND=>=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kcrash-5.37.0:5 >=kde-frameworks/kdbusaddons-5.37.0:5 >=kde-frameworks/kdoctools-5.37.0:5 >=kde-frameworks/kguiaddons-5.37.0:5 >=kde-frameworks/khtml-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kiconthemes-5.37.0:5 >=kde-frameworks/kinit-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kparts-5.37.0:5 >=kde-frameworks/ktexteditor-5.37.0:5 >=kde-frameworks/kwindowsystem-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=kde-apps/okular-14.12.0:5 >=dev-qt/qtdbus-5.7.1:5 >=dev-qt/qtscript-5.7.1:5 >=dev-qt/qttest-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 pdf? ( app-text/poppler[qt5] ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info >=kde-frameworks/extra-cmake-modules-5.37.0:5 handbook? ( >=kde-frameworks/kdoctools-5.37.0:5 ) >=dev-qt/qtcore-5.7.1:5 dev-util/desktop-file-utils app-arch/xz-utils DESCRIPTION=Latex Editor and TeX shell based on KDE Frameworks EAPI=6 HOMEPAGE=http://kile.sourceforge.net/ IUSE=+pdf +png debug +handbook KEYWORDS=~amd64 ~x86 LICENSE=FDL-1.2 GPL-2 -RDEPEND=>=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kcrash-5.37.0:5 >=kde-frameworks/kdbusaddons-5.37.0:5 >=kde-frameworks/kdoctools-5.37.0:5 >=kde-frameworks/kguiaddons-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kiconthemes-5.37.0:5 >=kde-frameworks/kinit-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kparts-5.37.0:5 >=kde-frameworks/ktexteditor-5.37.0:5 >=kde-frameworks/kwindowsystem-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=kde-apps/okular-14.12.0:5 >=dev-qt/qtdbus-5.7.1:5 >=dev-qt/qtscript-5.7.1:5 >=dev-qt/qttest-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 pdf? ( app-text/poppler[qt5] ) !app-editors/kile:4 >=kde-apps/konsole-14.12.0:5 >=kde-apps/okular-14.12.0:5[pdf?] virtual/latex-base virtual/tex-base pdf? ( || ( app-text/dvipdfmx >=app-text/texlive-core-2014 ) app-text/ghostscript-gpl ) png? ( app-text/dvipng || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] ) ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.37.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.7.1:5 +RDEPEND=>=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/kcrash-5.37.0:5 >=kde-frameworks/kdbusaddons-5.37.0:5 >=kde-frameworks/kdoctools-5.37.0:5 >=kde-frameworks/kguiaddons-5.37.0:5 >=kde-frameworks/khtml-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kiconthemes-5.37.0:5 >=kde-frameworks/kinit-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kparts-5.37.0:5 >=kde-frameworks/ktexteditor-5.37.0:5 >=kde-frameworks/kwindowsystem-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=kde-apps/okular-14.12.0:5 >=dev-qt/qtdbus-5.7.1:5 >=dev-qt/qtscript-5.7.1:5 >=dev-qt/qttest-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 pdf? ( app-text/poppler[qt5] ) !app-editors/kile:4 >=kde-apps/konsole-14.12.0:5 >=kde-apps/okular-14.12.0:5[pdf?] virtual/latex-base virtual/tex-base pdf? ( || ( app-text/dvipdfmx >=app-text/texlive-core-2014 ) app-text/ghostscript-gpl ) png? ( app-text/dvipng || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] ) ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.37.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.7.1:5 SLOT=5 SRC_URI=mirror://sourceforge/kile/kile-2.9.91.tar.bz2 _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 a979463dcce77e632a3dd7b92be69e67 kde5-functions adc3902b801da8e33081fe9353aa126a ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=aee75182ebb5f0205b74d04306a99bc4 +_md5_=a8ec0f1cc0283ff1e4bd6682ac0c423a diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz new file mode 100644 index 000000000000..03b584e68ec7 Binary files /dev/null and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz new file mode 100644 index 000000000000..f7c64d40a7ff Binary files /dev/null and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-eselect/Manifest.gz b/metadata/md5-cache/app-eselect/Manifest.gz new file mode 100644 index 000000000000..2bb36492a495 Binary files /dev/null and b/metadata/md5-cache/app-eselect/Manifest.gz differ diff --git a/metadata/md5-cache/app-forensics/Manifest.gz b/metadata/md5-cache/app-forensics/Manifest.gz new file mode 100644 index 000000000000..8e3249ed4f02 Binary files /dev/null and b/metadata/md5-cache/app-forensics/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz new file mode 100644 index 000000000000..173e39aad835 Binary files /dev/null and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-laptop/Manifest.gz b/metadata/md5-cache/app-laptop/Manifest.gz new file mode 100644 index 000000000000..289d88d3e544 Binary files /dev/null and b/metadata/md5-cache/app-laptop/Manifest.gz differ diff --git a/metadata/md5-cache/app-leechcraft/Manifest.gz b/metadata/md5-cache/app-leechcraft/Manifest.gz new file mode 100644 index 000000000000..2d59186ba716 Binary files /dev/null and b/metadata/md5-cache/app-leechcraft/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz new file mode 100644 index 000000000000..abb3f1b81326 Binary files /dev/null and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/color-1.2-r2 b/metadata/md5-cache/app-misc/color-1.2-r2 index 7edee1c8bd64..ea0acbd4f553 100644 --- a/metadata/md5-cache/app-misc/color-1.2-r2 +++ b/metadata/md5-cache/app-misc/color-1.2-r2 @@ -2,9 +2,9 @@ DEFINED_PHASES=install postinst prepare DESCRIPTION=Easily add ANSI colouring to shell scripts EAPI=6 HOMEPAGE=http://www.runslinux.net/?page_id=10 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://runslinux.net/projects/color/color-1.2.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=e795d9dfde8296ea71a2e598e09f1a0f +_md5_=e380c6e407f3cab8634afc83f8439b68 diff --git a/metadata/md5-cache/app-mobilephone/Manifest.gz b/metadata/md5-cache/app-mobilephone/Manifest.gz new file mode 100644 index 000000000000..39396b269aa4 Binary files /dev/null and b/metadata/md5-cache/app-mobilephone/Manifest.gz differ diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz new file mode 100644 index 000000000000..b11b85f6dbbf Binary files /dev/null and b/metadata/md5-cache/app-office/Manifest.gz differ diff --git a/metadata/md5-cache/app-officeext/Manifest b/metadata/md5-cache/app-officeext/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/md5-cache/app-pda/Manifest.gz b/metadata/md5-cache/app-pda/Manifest.gz new file mode 100644 index 000000000000..4563542a0552 Binary files /dev/null and b/metadata/md5-cache/app-pda/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz new file mode 100644 index 000000000000..7dfd4de2c87f Binary files /dev/null and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz new file mode 100644 index 000000000000..ede552f69578 Binary files /dev/null and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/thefuck-3.23 b/metadata/md5-cache/app-shells/thefuck-3.23 deleted file mode 100644 index d6151213af12..000000000000 --- a/metadata/md5-cache/app-shells/thefuck-3.23 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/six[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/decorator[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/colorama[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pyte[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pytest[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pytest-mock[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Magnificent app which corrects your previous console command -EAPI=6 -HOMEPAGE=https://github.com/nvbn/thefuck -IUSE=test python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/six[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/decorator[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/colorama[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pyte[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -SLOT=0 -SRC_URI=https://github.com/nvbn/thefuck/archive/3.23.tar.gz -> thefuck-3.23.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=464e3a133ffc14e4e1d854d15270f915 diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz new file mode 100644 index 000000000000..3c55d8259e0d Binary files /dev/null and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/poppler-0.57.0-r1 b/metadata/md5-cache/app-text/poppler-0.57.0-r1 new file mode 100644 index 000000000000..9a5cd58209ba --- /dev/null +++ b/metadata/md5-cache/app-text/poppler-0.57.0-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=media-libs/fontconfig-2.6.0 >=media-libs/freetype-2.3.9 sys-libs/zlib cairo? ( dev-libs/glib:2 >=x11-libs/cairo-1.10.0 introspection? ( >=dev-libs/gobject-introspection-1.32.1:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.7.2 +DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base +EAPI=6 +HOMEPAGE=https://poppler.freedesktop.org/ +IUSE=cairo cjk curl cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt4 qt5 tiff +utils +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=>=media-libs/fontconfig-2.6.0 >=media-libs/freetype-2.3.9 sys-libs/zlib cairo? ( dev-libs/glib:2 >=x11-libs/cairo-1.10.0 introspection? ( >=dev-libs/gobject-introspection-1.32.1:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) cjk? ( >=app-text/poppler-data-0.4.7 ) +RESTRICT=test +SLOT=0/68 +SRC_URI=https://poppler.freedesktop.org/poppler-0.57.0.tar.xz +_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=ce6eea760febfb954959030decdb809d diff --git a/metadata/md5-cache/app-text/tesseract-3.05.01 b/metadata/md5-cache/app-text/tesseract-3.05.01 index 107f02d28782..f0795acafd89 100644 --- a/metadata/md5-cache/app-text/tesseract-3.05.01 +++ b/metadata/md5-cache/app-text/tesseract-3.05.01 @@ -4,10 +4,10 @@ DESCRIPTION=An OCR Engine, orginally developed at HP, now open source. EAPI=6 HOMEPAGE=https://github.com/tesseract-ocr IUSE=doc examples jpeg math opencl osd png scrollview static-libs tiff training webp l10n_ar l10n_bg l10n_ca l10n_chr l10n_cs l10n_de l10n_da l10n_el l10n_es l10n_fi l10n_fr l10n_he l10n_hi l10n_hu l10n_id l10n_it l10n_ja l10n_ko l10n_lt l10n_lv l10n_nl l10n_no l10n_pl l10n_pt l10n_ro l10n_ru l10n_sk l10n_sl l10n_sr l10n_sv l10n_th l10n_tl l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW elibc_FreeBSD scrollview -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~mips ppc ppc64 ~sparc ~x86 LICENSE=Apache-2.0 RDEPEND=>=media-libs/leptonica-1.71:=[zlib,tiff?,jpeg?,png?,webp?] opencl? ( virtual/opencl media-libs/tiff:0= media-libs/leptonica:=[tiff] ) scrollview? ( >=dev-java/piccolo2d-3.0:0 ) training? ( dev-libs/icu:= x11-libs/pango:= x11-libs/cairo:= ) scrollview? ( >=virtual/jre-1.7 ) scrollview? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://github.com/tesseract-ocr/tesseract/archive/3.05.01.tar.gz -> tesseract-3.05.01.tar.gz https://github.com/tesseract-ocr/tessdata/raw/3.04.00/eng.traineddata -> eng.traineddata-3.04.00 math? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/equ.traineddata -> equ.traineddata-3.04.00 ) l10n_ar? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ara.traineddata -> ara.traineddata-3.04.00 ) l10n_bg? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/bul.traineddata -> bul.traineddata-3.04.00 ) l10n_ca? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/cat.traineddata -> cat.traineddata-3.04.00 ) l10n_chr? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/chr.traineddata -> chr.traineddata-3.04.00 ) l10n_cs? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ces.traineddata -> ces.traineddata-3.04.00 ) l10n_de? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/deu.traineddata -> deu.traineddata-3.04.00 https://github.com/tesseract-ocr/tessdata/raw/3.04.00/deu_frak.traineddata -> deu_frak.traineddata-3.04.00 ) l10n_da? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/dan.traineddata -> dan.traineddata-3.04.00 https://github.com/tesseract-ocr/tessdata/raw/3.04.00/dan_frak.traineddata -> dan_frak.traineddata-3.04.00 ) l10n_el? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ell.traineddata -> ell.traineddata-3.04.00 ) l10n_es? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/spa.traineddata -> spa.traineddata-3.04.00 ) l10n_fi? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/fin.traineddata -> fin.traineddata-3.04.00 ) l10n_fr? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/fra.traineddata -> fra.traineddata-3.04.00 ) l10n_he? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/heb.traineddata -> heb.traineddata-3.04.00 ) l10n_hi? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/hin.traineddata -> hin.traineddata-3.04.00 ) l10n_hu? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/hun.traineddata -> hun.traineddata-3.04.00 ) l10n_id? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ind.traineddata -> ind.traineddata-3.04.00 ) l10n_it? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ita.traineddata -> ita.traineddata-3.04.00 ) l10n_ja? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/jpn.traineddata -> jpn.traineddata-3.04.00 ) l10n_ko? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/kor.traineddata -> kor.traineddata-3.04.00 ) l10n_lt? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/lit.traineddata -> lit.traineddata-3.04.00 ) l10n_lv? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/lav.traineddata -> lav.traineddata-3.04.00 ) l10n_nl? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/nld.traineddata -> nld.traineddata-3.04.00 ) l10n_no? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/nor.traineddata -> nor.traineddata-3.04.00 ) l10n_pl? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/pol.traineddata -> pol.traineddata-3.04.00 ) l10n_pt? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/por.traineddata -> por.traineddata-3.04.00 ) l10n_ro? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ron.traineddata -> ron.traineddata-3.04.00 ) l10n_ru? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/rus.traineddata -> rus.traineddata-3.04.00 ) l10n_sk? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/slk.traineddata -> slk.traineddata-3.04.00 https://github.com/tesseract-ocr/tessdata/raw/3.04.00/slk_frak.traineddata -> slk_frak.traineddata-3.04.00 ) l10n_sl? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/slv.traineddata -> slv.traineddata-3.04.00 ) l10n_sr? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/srp.traineddata -> srp.traineddata-3.04.00 ) l10n_sv? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/swe.traineddata -> swe.traineddata-3.04.00 ) l10n_th? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/tha.traineddata -> tha.traineddata-3.04.00 ) l10n_tl? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/tgl.traineddata -> tgl.traineddata-3.04.00 ) l10n_tr? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/tur.traineddata -> tur.traineddata-3.04.00 ) l10n_uk? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/ukr.traineddata -> ukr.traineddata-3.04.00 ) l10n_vi? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/vie.traineddata -> vie.traineddata-3.04.00 ) l10n_zh-CN? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/chi_sim.traineddata -> chi_sim.traineddata-3.04.00 ) l10n_zh-TW? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/chi_tra.traineddata -> chi_tra.traineddata-3.04.00 ) osd? ( https://github.com/tesseract-ocr/tessdata/raw/3.04.00/osd.traineddata -> osd.traineddata-3.04.00 ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9bf83f13808f062a364aeb757fa2cad3 +_md5_=38d1deea6c1893c0db95744ed01f6544 diff --git a/metadata/md5-cache/app-vim/Manifest.gz b/metadata/md5-cache/app-vim/Manifest.gz new file mode 100644 index 000000000000..fb239856e38a Binary files /dev/null and b/metadata/md5-cache/app-vim/Manifest.gz differ diff --git a/metadata/md5-cache/app-xemacs/Manifest.gz b/metadata/md5-cache/app-xemacs/Manifest.gz new file mode 100644 index 000000000000..aa41bba1275b Binary files /dev/null and b/metadata/md5-cache/app-xemacs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ada/Manifest.gz b/metadata/md5-cache/dev-ada/Manifest.gz new file mode 100644 index 000000000000..d4d22256ebed Binary files /dev/null and b/metadata/md5-cache/dev-ada/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz new file mode 100644 index 000000000000..0eee0ca7fb43 Binary files /dev/null and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz new file mode 100644 index 000000000000..4c2509852e9f Binary files /dev/null and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-dotnet/Manifest.gz b/metadata/md5-cache/dev-dotnet/Manifest.gz new file mode 100644 index 000000000000..c9d7f19678c3 Binary files /dev/null and b/metadata/md5-cache/dev-dotnet/Manifest.gz differ diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz new file mode 100644 index 000000000000..c21ff1cdb571 Binary files /dev/null and b/metadata/md5-cache/dev-embedded/Manifest.gz differ diff --git a/metadata/md5-cache/dev-embedded/esptool-2.0.1 b/metadata/md5-cache/dev-embedded/esptool-2.0.1 deleted file mode 100644 index d63e3fcfa7ad..000000000000 --- a/metadata/md5-cache/dev-embedded/esptool-2.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Utility to communicate with the ROM bootloader in Espressif ESP8266 and ESP32 -EAPI=6 -HOMEPAGE=https://github.com/espressif/esptool -IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 -LICENSE=GPL-2+ -RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/ecdsa[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pyaes[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/pyserial-2.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://pypi/e/esptool/esptool-2.0.1.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=9d4a24e8f2e8bb78a611a1c543b2195d diff --git a/metadata/md5-cache/dev-erlang/Manifest.gz b/metadata/md5-cache/dev-erlang/Manifest.gz new file mode 100644 index 000000000000..cbec9ee2c98e Binary files /dev/null and b/metadata/md5-cache/dev-erlang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz new file mode 100644 index 000000000000..b542d19a1555 Binary files /dev/null and b/metadata/md5-cache/dev-games/Manifest.gz differ diff --git a/metadata/md5-cache/dev-go/Manifest.gz b/metadata/md5-cache/dev-go/Manifest.gz new file mode 100644 index 000000000000..3ab3b856e93b Binary files /dev/null and b/metadata/md5-cache/dev-go/Manifest.gz differ diff --git a/metadata/md5-cache/dev-haskell/Manifest.gz b/metadata/md5-cache/dev-haskell/Manifest.gz new file mode 100644 index 000000000000..807eb858d3a2 Binary files /dev/null and b/metadata/md5-cache/dev-haskell/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz new file mode 100644 index 000000000000..f0630ab688c1 Binary files /dev/null and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz new file mode 100644 index 000000000000..d54afd66c1ff Binary files /dev/null and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz new file mode 100644 index 000000000000..8a5416ad56eb Binary files /dev/null and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/libconfig-1.7.1 b/metadata/md5-cache/dev-libs/libconfig-1.7.1 new file mode 100644 index 000000000000..ca1a74e2b8e8 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libconfig-1.7.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-devel/libtool sys-devel/bison >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Libconfig is a simple library for manipulating structured configuration files +EAPI=6 +HOMEPAGE=http://www.hyperrealm.com/libconfig/libconfig.html https://github.com/hyperrealm/libconfig +IUSE=+cxx static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux +LICENSE=LGPL-2.1 +SLOT=0/11 +SRC_URI=https://github.com/hyperrealm/libconfig/archive/v1.7.1.tar.gz -> libconfig-1.7.1.tar.gz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=3b761ba052b74616ac1332e6dac80ebf diff --git a/metadata/md5-cache/dev-lisp/Manifest.gz b/metadata/md5-cache/dev-lisp/Manifest.gz new file mode 100644 index 000000000000..83d2c2c41486 Binary files /dev/null and b/metadata/md5-cache/dev-lisp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lua/Manifest.gz b/metadata/md5-cache/dev-lua/Manifest.gz new file mode 100644 index 000000000000..f133587e6b96 Binary files /dev/null and b/metadata/md5-cache/dev-lua/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ml/Manifest.gz b/metadata/md5-cache/dev-ml/Manifest.gz new file mode 100644 index 000000000000..d27bb6517c33 Binary files /dev/null and b/metadata/md5-cache/dev-ml/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Crypt-OpenSSL-DSA-0.190.0 b/metadata/md5-cache/dev-perl/Crypt-OpenSSL-DSA-0.190.0 index 0044d7fb12c7..d90fd9f6ac1d 100644 --- a/metadata/md5-cache/dev-perl/Crypt-OpenSSL-DSA-0.190.0 +++ b/metadata/md5-cache/dev-perl/Crypt-OpenSSL-DSA-0.190.0 @@ -4,10 +4,10 @@ DESCRIPTION=Digital Signature Algorithm using OpenSSL EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Crypt-OpenSSL-DSA/ IUSE=libressl -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/K/KM/KMX/Crypt-OpenSSL-DSA-0.19.tar.gz _eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 -_md5_=ed07f81c51742c1d95f1f91c5583d33d +_md5_=20a7acb1a70e67ee90b74cc42e56196a diff --git a/metadata/md5-cache/dev-perl/Digest-GOST-0.60.0-r1 b/metadata/md5-cache/dev-perl/Digest-GOST-0.60.0-r1 index 9390ca4f6e98..ffe1d87482e5 100644 --- a/metadata/md5-cache/dev-perl/Digest-GOST-0.60.0-r1 +++ b/metadata/md5-cache/dev-perl/Digest-GOST-0.60.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Perl interface to the GOST R 34.11-94 digest algorithm EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Digest-GOST/ IUSE=test -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Digest virtual/perl-XSLoader virtual/perl-parent dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/G/GR/GRAY/Digest-GOST-0.06.tar.gz _eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 -_md5_=7251f9bc14acbef68ea4889e22e60291 +_md5_=09b33969a335aa898323c1c0619024d3 diff --git a/metadata/md5-cache/dev-perl/Expect-1.320.0-r1 b/metadata/md5-cache/dev-perl/Expect-1.320.0-r1 index 6e7ef0b86c0f..888588d080ca 100644 --- a/metadata/md5-cache/dev-perl/Expect-1.320.0-r1 +++ b/metadata/md5-cache/dev-perl/Expect-1.320.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Expect for Perl EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Expect/ IUSE=test minimal -KEYWORDS=~alpha amd64 ~arm ia64 ~mips ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp virtual/perl-Exporter virtual/perl-IO >=dev-perl/IO-Tty-1.110.0 !minimal? ( dev-perl/IO-Stty ) dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/S/SZ/SZABGAB/Expect-1.32.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 toolchain-funcs 185a06792159ca143528e7010368e8af unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70 -_md5_=5e68c460270eca39af707204217996a9 +_md5_=03c98d00bb5850c274d6860038a78587 diff --git a/metadata/md5-cache/dev-perl/Finance-Quote-1.470.0 b/metadata/md5-cache/dev-perl/Finance-Quote-1.470.0 new file mode 100644 index 000000000000..9e99ce75d966 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Finance-Quote-1.470.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Data-Dumper virtual/perl-File-Spec virtual/perl-Test-Simple ) dev-lang/perl:= +DESCRIPTION=Get stock and mutual fund quotes from various exchanges +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Finance-Quote/ +IUSE=test examples +KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/E/EC/ECOCODE/Finance-Quote-1.47.tar.gz +_eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 +_md5_=b04ce4c22b7f48865b2b4899942eb3b6 diff --git a/metadata/md5-cache/dev-perl/IO-Stty-0.30.0 b/metadata/md5-cache/dev-perl/IO-Stty-0.30.0 index 18d21eda1b44..fcd8eb0ed3ff 100644 --- a/metadata/md5-cache/dev-perl/IO-Stty-0.30.0 +++ b/metadata/md5-cache/dev-perl/IO-Stty-0.30.0 @@ -4,10 +4,10 @@ DESCRIPTION=Change and print terminal line settings EAPI=5 HOMEPAGE=http://search.cpan.org/dist/IO-Stty/ IUSE=test -KEYWORDS=~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/T/TO/TODDR/IO-Stty-0.03.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 toolchain-funcs 185a06792159ca143528e7010368e8af unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70 -_md5_=1bdd8b8db4331cc794e5685e3c4da63c +_md5_=e9eaa4b44a8406706768ce67c550f404 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz new file mode 100644 index 000000000000..ef2e8bbb1b60 Binary files /dev/null and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Net-DNS-1.100.0 b/metadata/md5-cache/dev-perl/Net-DNS-1.100.0 index 5c0f64202bc1..8ebd24f84913 100644 --- a/metadata/md5-cache/dev-perl/Net-DNS-1.100.0 +++ b/metadata/md5-cache/dev-perl/Net-DNS-1.100.0 @@ -4,11 +4,11 @@ DESCRIPTION=Perl Net::DNS - Perl DNS Resolver Module EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Net-DNS/ IUSE=+ipv6 test minimal examples -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=|| ( Artistic GPL-1+ ) PDEPEND=!minimal? ( >=dev-perl/Net-DNS-SEC-1.10.0 ) RDEPEND=>=dev-perl/Digest-HMAC-1.30.0 >=virtual/perl-Digest-MD5-2.130.0 >=virtual/perl-Digest-SHA-5.230.0 >=virtual/perl-File-Spec-0.860.0 >=virtual/perl-MIME-Base64-2.110.0 >=virtual/perl-Time-Local-1.190.0 ipv6? ( || ( >=virtual/perl-IO-Socket-IP-0.320.0 >=dev-perl/IO-Socket-INET6-2.510.0 ) ) !minimal? ( >=dev-perl/Digest-BubbleBabble-0.10.0 >=dev-perl/Digest-GOST-0.60.0 >=dev-perl/Net-LibIDN-0.120.0 >=virtual/perl-Scalar-List-Utils-1.250.0 ) dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-1.10.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=6e6e14904afbc9e88f3565961e5804d3 +_md5_=f4ee0fa1b6e237b03b450d0eaaaffa07 diff --git a/metadata/md5-cache/dev-perl/Net-DNS-SEC-1.20.0 b/metadata/md5-cache/dev-perl/Net-DNS-SEC-1.20.0 index d630d7bd97ea..b2ab7bb7db91 100644 --- a/metadata/md5-cache/dev-perl/Net-DNS-SEC-1.20.0 +++ b/metadata/md5-cache/dev-perl/Net-DNS-SEC-1.20.0 @@ -4,10 +4,10 @@ DESCRIPTION=DNSSEC extensions to Net::DNS EAPI=6 HOMEPAGE=http://search.cpan.org/dist/Net-DNS-SEC/ IUSE=test -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 LICENSE=MIT RDEPEND=>=dev-perl/Crypt-OpenSSL-Bignum-0.40.0 >=dev-perl/Crypt-OpenSSL-DSA-0.140.0 >=dev-perl/Crypt-OpenSSL-RSA-0.270.0 >=virtual/perl-File-Spec-0.860.0 >=virtual/perl-MIME-Base64-2.110.0 >=dev-perl/Net-DNS-1.10.0 dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-SEC-1.02.tar.gz _eclasses_=multiprocessing 6f5991c7101863d0b29df63990ad852e perl-functions 01e8c68d5a528bbcda4d3c60205983df perl-module 863b35d127db98823d439f8d73c2d011 -_md5_=6b4faba924030a5ce5b944beeb12dcaa +_md5_=27787205c8be5027fb132b23a72459eb diff --git a/metadata/md5-cache/dev-php/Manifest.gz b/metadata/md5-cache/dev-php/Manifest.gz new file mode 100644 index 000000000000..408c38d52e9c Binary files /dev/null and b/metadata/md5-cache/dev-php/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz new file mode 100644 index 000000000000..98a604a096ac Binary files /dev/null and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/PyQt5-5.7.1 b/metadata/md5-cache/dev-python/PyQt5-5.7.1 index e93dc639d0de..771825b5e8f5 100644 --- a/metadata/md5-cache/dev-python/PyQt5-5.7.1 +++ b/metadata/md5-cache/dev-python/PyQt5-5.7.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 bluetooth? ( >=dev-qt/qtbluetooth-5.6.0:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.6.0:5 ) declarative? ( >=dev-qt/qtdeclarative-5.6.0:5[widgets?] ) designer? ( >=dev-qt/designer-5.6.0:5 ) gui? ( >=dev-qt/qtgui-5.6.0:5[gles2=] ) help? ( >=dev-qt/qthelp-5.6.0:5 ) location? ( >=dev-qt/qtlocation-5.6.0:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.6.0:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.6.0:5 ) opengl? ( >=dev-qt/qtopengl-5.6.0:5 ) positioning? ( >=dev-qt/qtpositioning-5.6.0:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.6.0:5 ) sensors? ( >=dev-qt/qtsensors-5.6.0:5 ) serialport? ( >=dev-qt/qtserialport-5.6.0:5 ) sql? ( >=dev-qt/qtsql-5.6.0:5 ) svg? ( >=dev-qt/qtsvg-5.6.0:5 ) testlib? ( >=dev-qt/qttest-5.6.0:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.6.0:5 ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.6.0:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.6.0:5 ) widgets? ( >=dev-qt/qtwidgets-5.6.0:5 ) x11extras? ( >=dev-qt/qtx11extras-5.6.0:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.6.0:5 ) dbus? ( virtual/pkgconfig ) +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 bluetooth? ( ~dev-qt/qtbluetooth-5.7.1 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-qt/qtdbus-5.7.1 ) declarative? ( ~dev-qt/qtdeclarative-5.7.1[widgets?] ) designer? ( ~dev-qt/designer-5.7.1 ) gui? ( ~dev-qt/qtgui-5.7.1[gles2=] ) help? ( ~dev-qt/qthelp-5.7.1 ) location? ( ~dev-qt/qtlocation-5.7.1 ) multimedia? ( ~dev-qt/qtmultimedia-5.7.1[widgets?] ) network? ( ~dev-qt/qtnetwork-5.7.1 ) opengl? ( ~dev-qt/qtopengl-5.7.1 ) positioning? ( ~dev-qt/qtpositioning-5.7.1 ) printsupport? ( ~dev-qt/qtprintsupport-5.7.1 ) sensors? ( ~dev-qt/qtsensors-5.7.1 ) serialport? ( ~dev-qt/qtserialport-5.7.1 ) sql? ( ~dev-qt/qtsql-5.7.1 ) svg? ( ~dev-qt/qtsvg-5.7.1 ) testlib? ( ~dev-qt/qttest-5.7.1 ) webchannel? ( ~dev-qt/qtwebchannel-5.7.1 ) webengine? ( ~dev-qt/qtwebengine-5.7.1[widgets?] ) webkit? ( ~dev-qt/qtwebkit-5.7.1[printsupport] ) websockets? ( ~dev-qt/qtwebsockets-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1 ) x11extras? ( ~dev-qt/qtx11extras-5.7.1 ) xmlpatterns? ( ~dev-qt/qtxmlpatterns-5.7.1 ) dbus? ( virtual/pkgconfig ) DESCRIPTION=Python bindings for the Qt framework EAPI=6 HOMEPAGE=https://www.riverbankcomputing.com/software/pyqt/intro IUSE=bluetooth dbus debug declarative designer doc examples gles2 gui help location multimedia network opengl positioning printsupport sensors serialport sql svg testlib webchannel webengine webkit websockets widgets x11extras xmlpatterns python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=amd64 arm ~ppc64 x86 LICENSE=GPL-3 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 bluetooth? ( >=dev-qt/qtbluetooth-5.6.0:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.6.0:5 ) declarative? ( >=dev-qt/qtdeclarative-5.6.0:5[widgets?] ) designer? ( >=dev-qt/designer-5.6.0:5 ) gui? ( >=dev-qt/qtgui-5.6.0:5[gles2=] ) help? ( >=dev-qt/qthelp-5.6.0:5 ) location? ( >=dev-qt/qtlocation-5.6.0:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.6.0:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.6.0:5 ) opengl? ( >=dev-qt/qtopengl-5.6.0:5 ) positioning? ( >=dev-qt/qtpositioning-5.6.0:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.6.0:5 ) sensors? ( >=dev-qt/qtsensors-5.6.0:5 ) serialport? ( >=dev-qt/qtserialport-5.6.0:5 ) sql? ( >=dev-qt/qtsql-5.6.0:5 ) svg? ( >=dev-qt/qtsvg-5.6.0:5 ) testlib? ( >=dev-qt/qttest-5.6.0:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.6.0:5 ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.6.0:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.6.0:5 ) widgets? ( >=dev-qt/qtwidgets-5.6.0:5 ) x11extras? ( >=dev-qt/qtx11extras-5.6.0:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.6.0:5 ) +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-qt/qtcore-5.7.1 ~dev-qt/qtxml-5.7.1 bluetooth? ( ~dev-qt/qtbluetooth-5.7.1 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-qt/qtdbus-5.7.1 ) declarative? ( ~dev-qt/qtdeclarative-5.7.1[widgets?] ) designer? ( ~dev-qt/designer-5.7.1 ) gui? ( ~dev-qt/qtgui-5.7.1[gles2=] ) help? ( ~dev-qt/qthelp-5.7.1 ) location? ( ~dev-qt/qtlocation-5.7.1 ) multimedia? ( ~dev-qt/qtmultimedia-5.7.1[widgets?] ) network? ( ~dev-qt/qtnetwork-5.7.1 ) opengl? ( ~dev-qt/qtopengl-5.7.1 ) positioning? ( ~dev-qt/qtpositioning-5.7.1 ) printsupport? ( ~dev-qt/qtprintsupport-5.7.1 ) sensors? ( ~dev-qt/qtsensors-5.7.1 ) serialport? ( ~dev-qt/qtserialport-5.7.1 ) sql? ( ~dev-qt/qtsql-5.7.1 ) svg? ( ~dev-qt/qtsvg-5.7.1 ) testlib? ( ~dev-qt/qttest-5.7.1 ) webchannel? ( ~dev-qt/qtwebchannel-5.7.1 ) webengine? ( ~dev-qt/qtwebengine-5.7.1[widgets?] ) webkit? ( ~dev-qt/qtwebkit-5.7.1[printsupport] ) websockets? ( ~dev-qt/qtwebsockets-5.7.1 ) widgets? ( ~dev-qt/qtwidgets-5.7.1 ) x11extras? ( ~dev-qt/qtx11extras-5.7.1 ) xmlpatterns? ( ~dev-qt/qtxmlpatterns-5.7.1 ) REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) bluetooth? ( gui ) declarative? ( gui network ) designer? ( widgets ) help? ( gui widgets ) location? ( positioning ) multimedia? ( gui network ) opengl? ( gui widgets ) positioning? ( gui ) printsupport? ( gui widgets ) sensors? ( gui ) serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) testlib? ( gui widgets ) webchannel? ( network ) webengine? ( network widgets? ( webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) xmlpatterns? ( network ) SLOT=0 SRC_URI=mirror://sourceforge/pyqt/PyQt5_gpl-5.7.1.tar.gz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7cb9a7f7fff385cec6c478a90007d11e +_md5_=c7f493cb980b08482b14c8399e0e1c97 diff --git a/metadata/md5-cache/dev-python/PyQt5-5.9 b/metadata/md5-cache/dev-python/PyQt5-5.9.2 similarity index 53% rename from metadata/md5-cache/dev-python/PyQt5-5.9 rename to metadata/md5-cache/dev-python/PyQt5-5.9.2 index 8e4983ef95d7..de147800b335 100644 --- a/metadata/md5-cache/dev-python/PyQt5-5.9 +++ b/metadata/md5-cache/dev-python/PyQt5-5.9.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.3:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 bluetooth? ( >=dev-qt/qtbluetooth-5.6.0:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.6.0:5 ) declarative? ( >=dev-qt/qtdeclarative-5.6.0:5[widgets?] ) designer? ( >=dev-qt/designer-5.6.0:5 ) gui? ( >=dev-qt/qtgui-5.6.0:5[gles2=] ) help? ( >=dev-qt/qthelp-5.6.0:5 ) location? ( >=dev-qt/qtlocation-5.6.0:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.6.0:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.6.0:5 ) opengl? ( >=dev-qt/qtopengl-5.6.0:5 ) positioning? ( >=dev-qt/qtpositioning-5.6.0:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.6.0:5 ) sensors? ( >=dev-qt/qtsensors-5.6.0:5 ) serialport? ( >=dev-qt/qtserialport-5.6.0:5 ) sql? ( >=dev-qt/qtsql-5.6.0:5 ) svg? ( >=dev-qt/qtsvg-5.6.0:5 ) testlib? ( >=dev-qt/qttest-5.6.0:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.6.0:5 ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.6.0:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.6.0:5 ) widgets? ( >=dev-qt/qtwidgets-5.6.0:5 ) x11extras? ( >=dev-qt/qtx11extras-5.6.0:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.6.0:5 ) dbus? ( virtual/pkgconfig ) +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.7.1:5 >=dev-qt/qtxml-5.7.1:5 bluetooth? ( >=dev-qt/qtbluetooth-5.7.1:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.7.1:5 ) declarative? ( >=dev-qt/qtdeclarative-5.7.1:5[widgets?] ) designer? ( >=dev-qt/designer-5.7.1:5 ) gui? ( >=dev-qt/qtgui-5.7.1:5[gles2=] ) help? ( >=dev-qt/qthelp-5.7.1:5 ) location? ( >=dev-qt/qtlocation-5.7.1:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.7.1:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.7.1:5 ) opengl? ( >=dev-qt/qtopengl-5.7.1:5 ) positioning? ( >=dev-qt/qtpositioning-5.7.1:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.7.1:5 ) sensors? ( >=dev-qt/qtsensors-5.7.1:5 ) serialport? ( >=dev-qt/qtserialport-5.7.1:5 ) sql? ( >=dev-qt/qtsql-5.7.1:5 ) svg? ( >=dev-qt/qtsvg-5.7.1:5 ) testlib? ( >=dev-qt/qttest-5.7.1:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.7.1:5 ) webengine? ( >=dev-qt/qtwebengine-5.7.1:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.7.1:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.7.1:5 ) widgets? ( >=dev-qt/qtwidgets-5.7.1:5 ) x11extras? ( >=dev-qt/qtx11extras-5.7.1:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.7.1:5 ) dbus? ( virtual/pkgconfig ) DESCRIPTION=Python bindings for the Qt framework EAPI=6 HOMEPAGE=https://www.riverbankcomputing.com/software/pyqt/intro IUSE=bluetooth dbus debug declarative designer examples gles2 gui help location multimedia network opengl positioning printsupport sensors serialport sql svg testlib webchannel webengine webkit websockets widgets x11extras xmlpatterns python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=GPL-3 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.3:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.6.0:5 >=dev-qt/qtxml-5.6.0:5 bluetooth? ( >=dev-qt/qtbluetooth-5.6.0:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.6.0:5 ) declarative? ( >=dev-qt/qtdeclarative-5.6.0:5[widgets?] ) designer? ( >=dev-qt/designer-5.6.0:5 ) gui? ( >=dev-qt/qtgui-5.6.0:5[gles2=] ) help? ( >=dev-qt/qthelp-5.6.0:5 ) location? ( >=dev-qt/qtlocation-5.6.0:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.6.0:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.6.0:5 ) opengl? ( >=dev-qt/qtopengl-5.6.0:5 ) positioning? ( >=dev-qt/qtpositioning-5.6.0:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.6.0:5 ) sensors? ( >=dev-qt/qtsensors-5.6.0:5 ) serialport? ( >=dev-qt/qtserialport-5.6.0:5 ) sql? ( >=dev-qt/qtsql-5.6.0:5 ) svg? ( >=dev-qt/qtsvg-5.6.0:5 ) testlib? ( >=dev-qt/qttest-5.6.0:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.6.0:5 ) webengine? ( >=dev-qt/qtwebengine-5.6.0:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.6.0:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.6.0:5 ) widgets? ( >=dev-qt/qtwidgets-5.6.0:5 ) x11extras? ( >=dev-qt/qtx11extras-5.6.0:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.6.0:5 ) -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) bluetooth? ( gui ) declarative? ( gui network ) designer? ( widgets ) help? ( gui widgets ) location? ( positioning ) multimedia? ( gui network ) opengl? ( gui widgets ) positioning? ( gui ) printsupport? ( gui widgets ) sensors? ( gui ) serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) testlib? ( gui widgets ) webchannel? ( network ) webengine? ( network widgets? ( webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) xmlpatterns? ( network ) +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.7.1:5 >=dev-qt/qtxml-5.7.1:5 bluetooth? ( >=dev-qt/qtbluetooth-5.7.1:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.7.1:5 ) declarative? ( >=dev-qt/qtdeclarative-5.7.1:5[widgets?] ) designer? ( >=dev-qt/designer-5.7.1:5 ) gui? ( >=dev-qt/qtgui-5.7.1:5[gles2=] ) help? ( >=dev-qt/qthelp-5.7.1:5 ) location? ( >=dev-qt/qtlocation-5.7.1:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.7.1:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.7.1:5 ) opengl? ( >=dev-qt/qtopengl-5.7.1:5 ) positioning? ( >=dev-qt/qtpositioning-5.7.1:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.7.1:5 ) sensors? ( >=dev-qt/qtsensors-5.7.1:5 ) serialport? ( >=dev-qt/qtserialport-5.7.1:5 ) sql? ( >=dev-qt/qtsql-5.7.1:5 ) svg? ( >=dev-qt/qtsvg-5.7.1:5 ) testlib? ( >=dev-qt/qttest-5.7.1:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.7.1:5 ) webengine? ( >=dev-qt/qtwebengine-5.7.1:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.7.1:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.7.1:5 ) widgets? ( >=dev-qt/qtwidgets-5.7.1:5 ) x11extras? ( >=dev-qt/qtx11extras-5.7.1:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.7.1:5 ) +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) bluetooth? ( gui ) declarative? ( gui network ) designer? ( widgets ) help? ( gui widgets ) location? ( positioning ) multimedia? ( gui network ) opengl? ( gui widgets ) positioning? ( gui ) printsupport? ( gui widgets ) sensors? ( gui ) serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) testlib? ( widgets ) webchannel? ( network ) webengine? ( network widgets? ( printsupport webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) xmlpatterns? ( network ) SLOT=0 -SRC_URI=mirror://sourceforge/pyqt/PyQt5_gpl-5.9.tar.gz +SRC_URI=mirror://sourceforge/pyqt/PyQt5_gpl-5.9.2.tar.gz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=dcd34c26b6dc654063900512b63f2ad3 +_md5_=fb17196f924128f59da06685fa554d14 diff --git a/metadata/md5-cache/dev-python/collectd-rabbitmq-1.19.0 b/metadata/md5-cache/dev-python/collectd-rabbitmq-1.19.0 index 40684f53ada9..0a86b62ca673 100644 --- a/metadata/md5-cache/dev-python/collectd-rabbitmq-1.19.0 +++ b/metadata/md5-cache/dev-python/collectd-rabbitmq-1.19.0 @@ -4,11 +4,11 @@ DESCRIPTION=Collectd plugin to gather statistics from RabbitMQ EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/collectd-rabbitmq IUSE=python_targets_python2_7 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=Apache-2.0 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/collectd-rabbitmq/collectd-rabbitmq-1.19.0.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=29fd7f1189c522d3c1b2050f0bf2a236 +_md5_=13479ee638d1556d98a48142ed80ccce diff --git a/metadata/md5-cache/dev-python/httplib2-0.10.3-r1 b/metadata/md5-cache/dev-python/httplib2-0.10.3-r1 index de044f4f902f..dd37d3cf939c 100644 --- a/metadata/md5-cache/dev-python/httplib2-0.10.3-r1 +++ b/metadata/md5-cache/dev-python/httplib2-0.10.3-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A comprehensive HTTP client library EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/httplib2 https://github.com/jcgregorio/httplib2 IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm ~arm64 ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=alpha amd64 arm ~arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=MIT RDEPEND=app-misc/ca-certificates python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/h/httplib2/httplib2-0.10.3.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=0b7147a88d4d6aab8bf098ede14e70f1 +_md5_=0045d1a6261985e6a363d59e8eaad86d diff --git a/metadata/md5-cache/dev-python/pyblake2-1.1.0 b/metadata/md5-cache/dev-python/pyblake2-1.1.0 new file mode 100644 index 000000000000..65d7be75b857 --- /dev/null +++ b/metadata/md5-cache/dev-python/pyblake2-1.1.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=BLAKE2 hash function extension module +EAPI=6 +HOMEPAGE=https://github.com/dchest/pyblake2 https://pypi.python.org/pypi/pyblake2 +IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( CC0-1.0 openssl Apache-2.0 ) +RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/p/pyblake2/pyblake2-1.1.0.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=9646330e5c8a742385680b94bbbf6e6e diff --git a/metadata/md5-cache/dev-python/pyinotify-0.9.6 b/metadata/md5-cache/dev-python/pyinotify-0.9.6 index bf011076dba8..6147e897cd9c 100644 --- a/metadata/md5-cache/dev-python/pyinotify-0.9.6 +++ b/metadata/md5-cache/dev-python/pyinotify-0.9.6 @@ -4,11 +4,11 @@ DESCRIPTION=Python module used for monitoring filesystems events EAPI=5 HOMEPAGE=http://trac.dbzteam.org/pyinotify https://pypi.python.org/pypi/pyinotify IUSE=examples python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha amd64 ~arm64 ~hppa ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm64 hppa ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0=[threads(+)] ) python_targets_pypy3? ( >=virtual/pypy3-5:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.6.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=8ac236670e6a18ebe40e842ca2891a3f +_md5_=5a88c3b50c26a9b71277d60ce30c2e47 diff --git a/metadata/md5-cache/dev-python/pyotherside-1.5.1 b/metadata/md5-cache/dev-python/pyotherside-1.5.1 deleted file mode 100644 index 83f9d893326f..000000000000 --- a/metadata/md5-cache/dev-python/pyotherside-1.5.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 -DESCRIPTION=Asynchronous Python 3 Bindings for Qt 5 -EAPI=5 -HOMEPAGE=http://github.com/thp/pyotherside http://thp.io/2011/pyotherside -IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 -KEYWORDS=~amd64 -LICENSE=ISC -RDEPEND=python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/thp/pyotherside/archive/1.5.1.tar.gz -> pyotherside-1.5.1.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c60e68ee0389033366da01f58554802a diff --git a/metadata/md5-cache/dev-python/pytest-3.0.3 b/metadata/md5-cache/dev-python/pytest-3.0.3 index e14b013c2ea5..efcad4d149a0 100644 --- a/metadata/md5-cache/dev-python/pytest-3.0.3 +++ b/metadata/md5-cache/dev-python/pytest-3.0.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Simple powerful testing with Python EAPI=5 HOMEPAGE=http://pytest.org/ https://pypi.python.org/pypi/pytest IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 LICENSE=MIT -RDEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +RDEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-3.0.3.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=ab957a993654cc3b8744737902f7dc24 +_md5_=18929034aad7b268278d6be4f48baf56 diff --git a/metadata/md5-cache/dev-python/pytest-3.0.6 b/metadata/md5-cache/dev-python/pytest-3.0.6 deleted file mode 100644 index dbc9bf492863..000000000000 --- a/metadata/md5-cache/dev-python/pytest-3.0.6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Simple powerful testing with Python -EAPI=6 -HOMEPAGE=http://pytest.org/ https://pypi.python.org/pypi/pytest -IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -SLOT=0 -SRC_URI=mirror://pypi/p/pytest/pytest-3.0.6.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=cf7f544eb94987771b0e0c634be9c607 diff --git a/metadata/md5-cache/dev-python/pytest-3.0.7 b/metadata/md5-cache/dev-python/pytest-3.0.7 deleted file mode 100644 index 0a0f22d15800..000000000000 --- a/metadata/md5-cache/dev-python/pytest-3.0.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Simple powerful testing with Python -EAPI=6 -HOMEPAGE=http://pytest.org/ https://pypi.python.org/pypi/pytest -IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -SLOT=0 -SRC_URI=mirror://pypi/p/pytest/pytest-3.0.7.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=d25265283c17ef5e876640c593fc2820 diff --git a/metadata/md5-cache/dev-python/pytest-3.1.2 b/metadata/md5-cache/dev-python/pytest-3.1.2 deleted file mode 100644 index 798ab54a9864..000000000000 --- a/metadata/md5-cache/dev-python/pytest-3.1.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools_scm[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -DESCRIPTION=Simple powerful testing with Python -EAPI=6 -HOMEPAGE=http://pytest.org/ -IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux -LICENSE=MIT -RDEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) -SLOT=0 -SRC_URI=mirror://pypi/p/pytest/pytest-3.1.2.tar.gz -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=eccac40e6af7552b730e3a228bf315fa diff --git a/metadata/md5-cache/dev-python/pytest-3.2.2 b/metadata/md5-cache/dev-python/pytest-3.2.2 index e5496581fcb3..4b7be6368eda 100644 --- a/metadata/md5-cache/dev-python/pytest-3.2.2 +++ b/metadata/md5-cache/dev-python/pytest-3.2.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools_scm[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) dev-python/setuptools_scm[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/hypothesis-3.5.2[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >dev-python/pytest-xdist-1.13[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/mock[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/requests[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Simple powerful testing with Python EAPI=6 HOMEPAGE=http://pytest.org/ IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +RDEPEND=>=dev-python/py-1.4.33[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) !dev-python/logilab-common python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-3.2.2.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=eccac40e6af7552b730e3a228bf315fa +_md5_=686d6d55a6f075ce4594d064f9c60737 diff --git a/metadata/md5-cache/dev-python/qscintilla-python-2.10.2 b/metadata/md5-cache/dev-python/qscintilla-python-2.10.2 new file mode 100644 index 000000000000..d7889eb9c3b7 --- /dev/null +++ b/metadata/md5-cache/dev-python/qscintilla-python-2.10.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install setup +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~x11-libs/qscintilla-2.10.2:=[qt4?,qt5?] qt4? ( >=dev-python/PyQt4-4.11.3[X,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-python/PyQt5[gui,printsupport,widgets,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) +DESCRIPTION=Python bindings for Qscintilla +EAPI=6 +HOMEPAGE=https://www.riverbankcomputing.com/software/qscintilla/intro +IUSE=debug +qt4 qt5 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~x11-libs/qscintilla-2.10.2:=[qt4?,qt5?] qt4? ( >=dev-python/PyQt4-4.11.3[X,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-python/PyQt5[gui,printsupport,widgets,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 ) +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) || ( qt4 qt5 ) +SLOT=0 +SRC_URI=mirror://sourceforge/pyqt/QScintilla_gpl-2.10.2.tar.gz +_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=e685276e54b30f462015a00814ae72d3 diff --git a/metadata/md5-cache/dev-python/qscintilla-python-2.9.2-r1 b/metadata/md5-cache/dev-python/qscintilla-python-2.9.2-r1 deleted file mode 100644 index 1fa5f22a9d77..000000000000 --- a/metadata/md5-cache/dev-python/qscintilla-python-2.9.2-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sip-4.18:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/PyQt4-4.11.3[X,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-qt/qtcore:4 dev-qt/qtgui:4 ~x11-libs/qscintilla-2.9.2:=[qt4(-)] -DESCRIPTION=Python bindings for Qscintilla -EAPI=6 -HOMEPAGE=https://www.riverbankcomputing.com/software/qscintilla/intro -IUSE=debug python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=alpha amd64 ia64 ppc ppc64 ~sparc x86 -LICENSE=GPL-3 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sip-4.18:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/PyQt4-4.11.3[X,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-qt/qtcore:4 dev-qt/qtgui:4 ~x11-libs/qscintilla-2.9.2:=[qt4(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://sourceforge/pyqt/QScintilla_gpl-2.9.2.tar.gz -_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=10c700f3f750ba069a48c1e7c5fe4ffd diff --git a/metadata/md5-cache/dev-python/sip-4.19.6_pre1711101252 b/metadata/md5-cache/dev-python/sip-4.19.6 similarity index 95% rename from metadata/md5-cache/dev-python/sip-4.19.6_pre1711101252 rename to metadata/md5-cache/dev-python/sip-4.19.6 index 51620b51bdd6..f53c4c105159 100644 --- a/metadata/md5-cache/dev-python/sip-4.19.6_pre1711101252 +++ b/metadata/md5-cache/dev-python/sip-4.19.6 @@ -9,6 +9,6 @@ LICENSE=|| ( GPL-2 GPL-3 SIP ) RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0/12 -SRC_URI=https://dev.gentoo.org/~pesa/distfiles/sip-4.19.6.dev1711101252.tar.gz +SRC_URI=mirror://sourceforge/pyqt/sip-4.19.6.tar.gz _eclasses_=multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af _md5_=745e428dc9441c603cbf9a34cfb263a7 diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz new file mode 100644 index 000000000000..5de9b1334de4 Binary files /dev/null and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ros/Manifest.gz b/metadata/md5-cache/dev-ros/Manifest.gz new file mode 100644 index 000000000000..e62b77acb944 Binary files /dev/null and b/metadata/md5-cache/dev-ros/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz new file mode 100644 index 000000000000..5ab20a94a6a2 Binary files /dev/null and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-scheme/Manifest.gz b/metadata/md5-cache/dev-scheme/Manifest.gz new file mode 100644 index 000000000000..8ed336301362 Binary files /dev/null and b/metadata/md5-cache/dev-scheme/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tcltk/Manifest.gz b/metadata/md5-cache/dev-tcltk/Manifest.gz new file mode 100644 index 000000000000..0a9f05a7d742 Binary files /dev/null and b/metadata/md5-cache/dev-tcltk/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 b/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 index 5715cc69b2fe..758a7998e161 100644 --- a/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 +++ b/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 @@ -4,7 +4,7 @@ DESCRIPTION=The Snack Sound Toolkit (Tcl) EAPI=5 HOMEPAGE=http://www.speech.kth.se/snack/ IUSE=alsa examples python threads vorbis python_targets_pypy python_targets_python2_7 -KEYWORDS=alpha amd64 hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=GPL-2 RDEPEND=dev-lang/tcl:0= dev-lang/tk:0= alsa? ( media-libs/alsa-lib ) python? ( python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-)] ) vorbis? ( media-libs/libvorbis ) python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://www.speech.kth.se/snack/dist/snack2.2.10.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 autotools-utils 5a4611dfba155b1659528663fad4cd5e distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=b0d1b7c85a6b41ff8652127c667c399d +_md5_=51c6d0f0061f093d36a7e91fb76153b3 diff --git a/metadata/md5-cache/dev-tex/Manifest.gz b/metadata/md5-cache/dev-tex/Manifest.gz new file mode 100644 index 000000000000..5d3d2bc3bbd3 Binary files /dev/null and b/metadata/md5-cache/dev-tex/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tex/biblatex-apa-6.6 b/metadata/md5-cache/dev-tex/biblatex-apa-6.6 deleted file mode 100644 index 3378f1d1c17f..000000000000 --- a/metadata/md5-cache/dev-tex/biblatex-apa-6.6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare unpack -DEPEND=dev-texlive/texlive-bibtexextra dev-tex/biblatex virtual/latex-base >=sys-apps/texinfo-4.2-r5 -DESCRIPTION=APA style for BibLaTeX -EAPI=5 -HOMEPAGE=http://www.ctan.org/pkg/biblatex-apa https://github.com/plk/biblatex-apa -IUSE=doc examples -KEYWORDS=~amd64 ~x86 -LICENSE=LPPL-1.3 -RDEPEND=dev-texlive/texlive-bibtexextra dev-tex/biblatex virtual/latex-base -SLOT=0 -SRC_URI=https://github.com/plk/biblatex-apa/archive/v6.6.tar.gz -> biblatex-apa-6.6.tar.gz -_eclasses_=base 983774947da124fb7d542ce25a218bb1 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 latex-package 79acad19b9efeec616d0ad70cd117b03 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=813fd358de28b43f1ab3d822a13a84ae diff --git a/metadata/md5-cache/dev-texlive/Manifest.gz b/metadata/md5-cache/dev-texlive/Manifest.gz new file mode 100644 index 000000000000..a28cdaf98e08 Binary files /dev/null and b/metadata/md5-cache/dev-texlive/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz new file mode 100644 index 000000000000..a82e9a9a39af Binary files /dev/null and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/kdevelop-5.2.0 b/metadata/md5-cache/dev-util/kdevelop-5.2.1 similarity index 98% rename from metadata/md5-cache/dev-util/kdevelop-5.2.0 rename to metadata/md5-cache/dev-util/kdevelop-5.2.1 index eb7ae37368d3..627edd665a3d 100644 --- a/metadata/md5-cache/dev-util/kdevelop-5.2.0 +++ b/metadata/md5-cache/dev-util/kdevelop-5.2.1 @@ -10,6 +10,6 @@ RDEPEND=>=kde-frameworks/karchive-5.37.0:5 >=kde-frameworks/kbookmarks-5.37.0:5 REQUIRED_USE=test? ( welcomepage ) RESTRICT=test SLOT=5 -SRC_URI=mirror://kde/stable/kdevelop/5.2.0/src/kdevelop-5.2.0.tar.xz +SRC_URI=mirror://kde/stable/kdevelop/5.2.1/src/kdevelop-5.2.1.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 a979463dcce77e632a3dd7b92be69e67 kde5-functions adc3902b801da8e33081fe9353aa126a ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 _md5_=75b90747f94415a2a39101210a519c0e diff --git a/metadata/md5-cache/dev-util/kdevelop-php-5.2.0 b/metadata/md5-cache/dev-util/kdevelop-php-5.2.1 similarity index 97% rename from metadata/md5-cache/dev-util/kdevelop-php-5.2.0 rename to metadata/md5-cache/dev-util/kdevelop-php-5.2.1 index 3009da05a4b4..be973eb8734b 100644 --- a/metadata/md5-cache/dev-util/kdevelop-php-5.2.0 +++ b/metadata/md5-cache/dev-util/kdevelop-php-5.2.1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 LGPL-2 RDEPEND=>=kde-frameworks/karchive-5.37.0:5 >=kde-frameworks/kcmutils-5.37.0:5 >=kde-frameworks/kconfig-5.37.0:5 >=kde-frameworks/kconfigwidgets-5.37.0:5 >=kde-frameworks/kcoreaddons-5.37.0:5 >=kde-frameworks/ki18n-5.37.0:5 >=kde-frameworks/kio-5.37.0:5 >=kde-frameworks/kitemmodels-5.37.0:5 >=kde-frameworks/ktexteditor-5.37.0:5 >=kde-frameworks/kwidgetsaddons-5.37.0:5 >=kde-frameworks/kxmlgui-5.37.0:5 >=kde-frameworks/threadweaver-5.37.0:5 >=dev-qt/qtgui-5.7.1:5 >=dev-qt/qtwidgets-5.7.1:5 dev-util/kdevelop-pg-qt:5 dev-util/kdevelop:5 !dev-util/kdevelop-php-docs >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.37.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.7.1:5 SLOT=5 -SRC_URI=mirror://kde/stable/kdevelop/5.2.0/src/kdev-php-5.2.0.tar.xz +SRC_URI=mirror://kde/stable/kdevelop/5.2.1/src/kdev-php-5.2.1.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 a979463dcce77e632a3dd7b92be69e67 kde5-functions adc3902b801da8e33081fe9353aa126a ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 _md5_=b5a34c6cb20333fa15e88777c0969a03 diff --git a/metadata/md5-cache/dev-util/kdevelop-python-5.2.0 b/metadata/md5-cache/dev-util/kdevelop-python-5.2.1 similarity index 98% rename from metadata/md5-cache/dev-util/kdevelop-python-5.2.0 rename to metadata/md5-cache/dev-util/kdevelop-python-5.2.1 index ec3d6ff6029a..7aef6d7c68a8 100644 --- a/metadata/md5-cache/dev-util/kdevelop-python-5.2.0 +++ b/metadata/md5-cache/dev-util/kdevelop-python-5.2.1 @@ -10,6 +10,6 @@ RDEPEND=python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_ta REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) RESTRICT=test SLOT=5 -SRC_URI=mirror://kde/stable/kdevelop/5.2.0/src/kdev-python-5.2.0.tar.xz +SRC_URI=mirror://kde/stable/kdevelop/5.2.1/src/kdev-python-5.2.1.tar.xz _eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 a979463dcce77e632a3dd7b92be69e67 kde5-functions adc3902b801da8e33081fe9353aa126a ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 _md5_=491f37a8a133bd6499079c9a4675305c diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz new file mode 100644 index 000000000000..b0d78f03b7bb Binary files /dev/null and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/games-action/Manifest.gz b/metadata/md5-cache/games-action/Manifest.gz new file mode 100644 index 000000000000..986c98f0d9ba Binary files /dev/null and b/metadata/md5-cache/games-action/Manifest.gz differ diff --git a/metadata/md5-cache/games-arcade/Manifest.gz b/metadata/md5-cache/games-arcade/Manifest.gz new file mode 100644 index 000000000000..8bd46ea5cbfa Binary files /dev/null and b/metadata/md5-cache/games-arcade/Manifest.gz differ diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz new file mode 100644 index 000000000000..5148ff23e8d5 Binary files /dev/null and b/metadata/md5-cache/games-board/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz new file mode 100644 index 000000000000..ce3262eeadc8 Binary files /dev/null and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-engines/Manifest.gz b/metadata/md5-cache/games-engines/Manifest.gz new file mode 100644 index 000000000000..9403a569a34c Binary files /dev/null and b/metadata/md5-cache/games-engines/Manifest.gz differ diff --git a/metadata/md5-cache/games-fps/Manifest.gz b/metadata/md5-cache/games-fps/Manifest.gz new file mode 100644 index 000000000000..770495917314 Binary files /dev/null and b/metadata/md5-cache/games-fps/Manifest.gz differ diff --git a/metadata/md5-cache/games-kids/Manifest.gz b/metadata/md5-cache/games-kids/Manifest.gz new file mode 100644 index 000000000000..8b18ee7af129 Binary files /dev/null and b/metadata/md5-cache/games-kids/Manifest.gz differ diff --git a/metadata/md5-cache/games-misc/Manifest.gz b/metadata/md5-cache/games-misc/Manifest.gz new file mode 100644 index 000000000000..98832a3cd553 Binary files /dev/null and b/metadata/md5-cache/games-misc/Manifest.gz differ diff --git a/metadata/md5-cache/games-mud/Manifest.gz b/metadata/md5-cache/games-mud/Manifest.gz new file mode 100644 index 000000000000..1bcca61e7033 Binary files /dev/null and b/metadata/md5-cache/games-mud/Manifest.gz differ diff --git a/metadata/md5-cache/games-puzzle/Manifest.gz b/metadata/md5-cache/games-puzzle/Manifest.gz new file mode 100644 index 000000000000..14610da57612 Binary files /dev/null and b/metadata/md5-cache/games-puzzle/Manifest.gz differ diff --git a/metadata/md5-cache/games-roguelike/Manifest.gz b/metadata/md5-cache/games-roguelike/Manifest.gz new file mode 100644 index 000000000000..302c2416e2ab Binary files /dev/null and b/metadata/md5-cache/games-roguelike/Manifest.gz differ diff --git a/metadata/md5-cache/games-rpg/Manifest.gz b/metadata/md5-cache/games-rpg/Manifest.gz new file mode 100644 index 000000000000..51aedd4d1859 Binary files /dev/null and b/metadata/md5-cache/games-rpg/Manifest.gz differ diff --git a/metadata/md5-cache/games-server/Manifest.gz b/metadata/md5-cache/games-server/Manifest.gz new file mode 100644 index 000000000000..dc0f9986703f Binary files /dev/null and b/metadata/md5-cache/games-server/Manifest.gz differ diff --git a/metadata/md5-cache/games-simulation/Manifest.gz b/metadata/md5-cache/games-simulation/Manifest.gz new file mode 100644 index 000000000000..909ef108e112 Binary files /dev/null and b/metadata/md5-cache/games-simulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-sports/Manifest.gz b/metadata/md5-cache/games-sports/Manifest.gz new file mode 100644 index 000000000000..4e0e964cedd0 Binary files /dev/null and b/metadata/md5-cache/games-sports/Manifest.gz differ diff --git a/metadata/md5-cache/games-strategy/Manifest.gz b/metadata/md5-cache/games-strategy/Manifest.gz new file mode 100644 index 000000000000..24776b370d35 Binary files /dev/null and b/metadata/md5-cache/games-strategy/Manifest.gz differ diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz new file mode 100644 index 000000000000..56f7b3c975e1 Binary files /dev/null and b/metadata/md5-cache/games-util/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-base/Manifest.gz b/metadata/md5-cache/gnome-base/Manifest.gz new file mode 100644 index 000000000000..a366d86f22f8 Binary files /dev/null and b/metadata/md5-cache/gnome-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz new file mode 100644 index 000000000000..fd5af954a0e3 Binary files /dev/null and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnustep-apps/Manifest.gz b/metadata/md5-cache/gnustep-apps/Manifest.gz new file mode 100644 index 000000000000..9bb54b1255ed Binary files /dev/null and b/metadata/md5-cache/gnustep-apps/Manifest.gz differ diff --git a/metadata/md5-cache/gnustep-base/Manifest.gz b/metadata/md5-cache/gnustep-base/Manifest.gz new file mode 100644 index 000000000000..89e222da535b Binary files /dev/null and b/metadata/md5-cache/gnustep-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnustep-libs/Manifest b/metadata/md5-cache/gnustep-libs/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/md5-cache/java-virtuals/Manifest.gz b/metadata/md5-cache/java-virtuals/Manifest.gz new file mode 100644 index 000000000000..a82b0136450a Binary files /dev/null and b/metadata/md5-cache/java-virtuals/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz new file mode 100644 index 000000000000..50e0341f6572 Binary files /dev/null and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz new file mode 100644 index 000000000000..4d27c19c14fa Binary files /dev/null and b/metadata/md5-cache/kde-frameworks/Manifest.gz differ diff --git a/metadata/md5-cache/kde-misc/Manifest.gz b/metadata/md5-cache/kde-misc/Manifest.gz new file mode 100644 index 000000000000..cec54e449da6 Binary files /dev/null and b/metadata/md5-cache/kde-misc/Manifest.gz differ diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz new file mode 100644 index 000000000000..07da9e4ff4ca Binary files /dev/null and b/metadata/md5-cache/kde-plasma/Manifest.gz differ diff --git a/metadata/md5-cache/lxde-base/Manifest.gz b/metadata/md5-cache/lxde-base/Manifest.gz new file mode 100644 index 000000000000..4038b7501f82 Binary files /dev/null and b/metadata/md5-cache/lxde-base/Manifest.gz differ diff --git a/metadata/md5-cache/lxqt-base/Manifest.gz b/metadata/md5-cache/lxqt-base/Manifest.gz new file mode 100644 index 000000000000..6b9fb179a971 Binary files /dev/null and b/metadata/md5-cache/lxqt-base/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz new file mode 100644 index 000000000000..08fa8733fd0e Binary files /dev/null and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz new file mode 100644 index 000000000000..1de1a76fb8e2 Binary files /dev/null and b/metadata/md5-cache/mail-filter/Manifest.gz differ diff --git a/metadata/md5-cache/mail-mta/Manifest.gz b/metadata/md5-cache/mail-mta/Manifest.gz new file mode 100644 index 000000000000..b5aaecae9e41 Binary files /dev/null and b/metadata/md5-cache/mail-mta/Manifest.gz differ diff --git a/metadata/md5-cache/mate-base/Manifest.gz b/metadata/md5-cache/mate-base/Manifest.gz new file mode 100644 index 000000000000..9d0f812fb34f Binary files /dev/null and b/metadata/md5-cache/mate-base/Manifest.gz differ diff --git a/metadata/md5-cache/mate-extra/Manifest.gz b/metadata/md5-cache/mate-extra/Manifest.gz new file mode 100644 index 000000000000..fd5fe29e896d Binary files /dev/null and b/metadata/md5-cache/mate-extra/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz new file mode 100644 index 000000000000..6a3a11214ddc Binary files /dev/null and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz new file mode 100644 index 000000000000..d9669661f7a7 Binary files /dev/null and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz new file mode 100644 index 000000000000..f2e8b1e3193b Binary files /dev/null and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/lcms-2.9 b/metadata/md5-cache/media-libs/lcms-2.9 index 922b2346a4db..efcce9d49212 100644 --- a/metadata/md5-cache/media-libs/lcms-2.9 +++ b/metadata/md5-cache/media-libs/lcms-2.9 @@ -10,4 +10,4 @@ RDEPEND=jpeg? ( >=virtual/jpeg-0-r2:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32( SLOT=2 SRC_URI=mirror://sourceforge/lcms/lcms2-2.9.tar.gz _eclasses_=libtool 0081a71a261724730ec4c248494f044d multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=4f962e64d11f6b88d78f702045ef75d2 +_md5_=eaa077e80fe3f486b7c22bc9c16d986d diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz new file mode 100644 index 000000000000..1c21124baa58 Binary files /dev/null and b/metadata/md5-cache/media-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/media-radio/Manifest.gz b/metadata/md5-cache/media-radio/Manifest.gz new file mode 100644 index 000000000000..a7191bd79eff Binary files /dev/null and b/metadata/md5-cache/media-radio/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz new file mode 100644 index 000000000000..dea06f6507af Binary files /dev/null and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/alsamixer-app-0.1 b/metadata/md5-cache/media-sound/alsamixer-app-0.1 index b14c23840de9..2b7029d2d15d 100644 --- a/metadata/md5-cache/media-sound/alsamixer-app-0.1 +++ b/metadata/md5-cache/media-sound/alsamixer-app-0.1 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install unpack DEPEND=x11-libs/libX11 x11-libs/libXpm x11-libs/libXext media-libs/alsa-lib x11-proto/xextproto DESCRIPTION=AlsaMixer.app is a simple mixer dockapp EAPI=0 -HOMEPAGE=http://dockapps.windowmaker.org/file.php/id/253 +HOMEPAGE=http://www.dockapps.net/alsamixerapp KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXpm x11-libs/libXext media-libs/alsa-lib SLOT=0 -SRC_URI=http://dockapps.windowmaker.org/download.php/id/517/AlsaMixer.app-0.1.tar.gz +SRC_URI=http://www.dockapps.net/download/AlsaMixer.app-0.1.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7fe0dd953272a41bff5563ef5295c8f3 +_md5_=67a2fa19b44e38bdcc9d509242601a9a diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz new file mode 100644 index 000000000000..9878e4895eee Binary files /dev/null and b/metadata/md5-cache/media-tv/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz new file mode 100644 index 000000000000..7c2f7a1c78b7 Binary files /dev/null and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz new file mode 100644 index 000000000000..1905d89b2188 Binary files /dev/null and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.3.7-r1 b/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.3.7-r1 deleted file mode 100644 index a6f0a7d2e1ba..000000000000 --- a/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.3.7-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=dev-lang/perl dev-perl/Data-Validate-Domain dev-perl/Data-Validate-IP dev-perl/Monitoring-Plugin dev-perl/Net-DNS dev-perl/Readonly -DESCRIPTION=Monitor whether or not a host is blacklisted -EAPI=6 -HOMEPAGE=https://github.com/matteocorti/check_rbl -KEYWORDS=amd64 hppa sparc x86 -LICENSE=GPL-3 -RDEPEND=dev-lang/perl dev-perl/Data-Validate-Domain dev-perl/Data-Validate-IP dev-perl/Monitoring-Plugin dev-perl/Net-DNS dev-perl/Readonly -SLOT=0 -SRC_URI=https://github.com/matteocorti/check_rbl/releases/download/v1.3.7/check_rbl-1.3.7.tar.gz -> check_rbl-1.3.7-r1.tar.gz -_eclasses_=perl-functions 01e8c68d5a528bbcda4d3c60205983df -_md5_=e45affd347f112dbfcc20c37d0a6c67b diff --git a/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.4.1 b/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.4.1 index dedf418f1f71..5e2c33a8cfbe 100644 --- a/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.4.1 +++ b/metadata/md5-cache/net-analyzer/nagios-check_rbl-1.4.1 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl dev-perl/Data-Validate-Domain dev-perl/Data-Validate-IP dev DESCRIPTION=Monitor whether or not a host is blacklisted EAPI=6 HOMEPAGE=https://github.com/matteocorti/check_rbl -KEYWORDS=amd64 ~hppa sparc x86 +KEYWORDS=amd64 hppa sparc x86 LICENSE=GPL-3 RDEPEND=dev-lang/perl dev-perl/Data-Validate-Domain dev-perl/Data-Validate-IP dev-perl/Monitoring-Plugin dev-perl/Net-DNS dev-perl/Net-IP dev-perl/Readonly RESTRICT=test SLOT=0 SRC_URI=https://github.com/matteocorti/check_rbl/releases/download/v1.4.1/check_rbl-1.4.1.tar.gz -_md5_=385f8aa466572f3db93ac8d5a9390400 +_md5_=cf76bedd594665ed98e92c21c2c36d29 diff --git a/metadata/md5-cache/net-dialup/Manifest.gz b/metadata/md5-cache/net-dialup/Manifest.gz new file mode 100644 index 000000000000..7d629c51952a Binary files /dev/null and b/metadata/md5-cache/net-dialup/Manifest.gz differ diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz new file mode 100644 index 000000000000..afd17f13ac59 Binary files /dev/null and b/metadata/md5-cache/net-dns/Manifest.gz differ diff --git a/metadata/md5-cache/net-firewall/Manifest.gz b/metadata/md5-cache/net-firewall/Manifest.gz new file mode 100644 index 000000000000..66b7ca96a23f Binary files /dev/null and b/metadata/md5-cache/net-firewall/Manifest.gz differ diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz new file mode 100644 index 000000000000..2f5ee21facea Binary files /dev/null and b/metadata/md5-cache/net-fs/Manifest.gz differ diff --git a/metadata/md5-cache/net-ftp/Manifest.gz b/metadata/md5-cache/net-ftp/Manifest.gz new file mode 100644 index 000000000000..64f9b0ae6b8f Binary files /dev/null and b/metadata/md5-cache/net-ftp/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz new file mode 100644 index 000000000000..addf25721cca Binary files /dev/null and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-irc/Manifest.gz b/metadata/md5-cache/net-irc/Manifest.gz new file mode 100644 index 000000000000..db668ca8e822 Binary files /dev/null and b/metadata/md5-cache/net-irc/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz new file mode 100644 index 000000000000..bdc703a25b66 Binary files /dev/null and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-mail/Manifest.gz b/metadata/md5-cache/net-mail/Manifest.gz new file mode 100644 index 000000000000..c338188c7781 Binary files /dev/null and b/metadata/md5-cache/net-mail/Manifest.gz differ diff --git a/metadata/md5-cache/net-mail/mu-0.9.9 b/metadata/md5-cache/net-mail/mu-0.9.9 deleted file mode 100644 index e5b98ff504cd..000000000000 --- a/metadata/md5-cache/net-mail/mu-0.9.9 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/gmime:2.6 dev-libs/xapian dev-libs/glib:2 gui? ( x11-libs/gtk+:3 net-libs/webkit-gtk:3 ) emacs? ( >=virtual/emacs-23 ) !net-mail/mailutils -DESCRIPTION=Set of tools to deal with Maildirs, in particular, searching and indexing -EAPI=4 -HOMEPAGE=http://www.djcbsoftware.nl/code/mu/ -IUSE=doc emacs gui -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/gmime:2.6 dev-libs/xapian dev-libs/glib:2 gui? ( x11-libs/gtk+:3 net-libs/webkit-gtk:3 ) emacs? ( >=virtual/emacs-23 ) !net-mail/mailutils -SLOT=0 -SRC_URI=https://mu0.googlecode.com/files/mu-0.9.9.tar.gz doc? ( https://mu0.googlecode.com/files/mu4e-manual-0.9.9.pdf ) -_eclasses_=base 983774947da124fb7d542ce25a218bb1 elisp-common 23f47b2e1de7abf387105eddd1318738 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7f7cb8e328e3a1845ee099ec5a24b1ff diff --git a/metadata/md5-cache/net-mail/mu-0.9.9.5 b/metadata/md5-cache/net-mail/mu-0.9.9.5 deleted file mode 100644 index b19d168cd7ce..000000000000 --- a/metadata/md5-cache/net-mail/mu-0.9.9.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/gmime:2.6 dev-libs/xapian dev-libs/glib:2 gui? ( x11-libs/gtk+:3 net-libs/webkit-gtk:3 ) emacs? ( >=virtual/emacs-23 ) !net-mail/mailutils -DESCRIPTION=Set of tools to deal with Maildirs, in particular, searching and indexing -EAPI=4 -HOMEPAGE=http://www.djcbsoftware.nl/code/mu/ -IUSE=doc emacs gui -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/gmime:2.6 dev-libs/xapian dev-libs/glib:2 gui? ( x11-libs/gtk+:3 net-libs/webkit-gtk:3 ) emacs? ( >=virtual/emacs-23 ) !net-mail/mailutils -SLOT=0 -SRC_URI=https://mu0.googlecode.com/files/mu-0.9.9.5.tar.gz doc? ( https://mu0.googlecode.com/files/mu4e-manual-0.9.9.5.pdf ) -_eclasses_=base 983774947da124fb7d542ce25a218bb1 elisp-common 23f47b2e1de7abf387105eddd1318738 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=80e47bfa8062519ab347fefe3038b93f diff --git a/metadata/md5-cache/net-mail/mu-0.9.9.6 b/metadata/md5-cache/net-mail/mu-0.9.9.6 index d15d3171f16d..26d59d329e8b 100644 --- a/metadata/md5-cache/net-mail/mu-0.9.9.6 +++ b/metadata/md5-cache/net-mail/mu-0.9.9.6 @@ -8,6 +8,6 @@ KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-libs/gmime:2.6 dev-libs/xapian dev-libs/glib:2 gui? ( x11-libs/gtk+:3 net-libs/webkit-gtk:3 ) emacs? ( >=virtual/emacs-23 ) !net-mail/mailutils SLOT=0 -SRC_URI=https://github.com/djcb/mu/archive/v0.9.9.6.tar.gz -> mu-0.9.9.6.tar.gz doc? ( https://mu0.googlecode.com/files/mu4e-manual-0.9.9.5.pdf ) +SRC_URI=https://github.com/djcb/mu/archive/v0.9.9.6.tar.gz -> mu-0.9.9.6.tar.gz doc? ( https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mu0/mu4e-manual-0.9.9.5.pdf ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 autotools-utils 5a4611dfba155b1659528663fad4cd5e base 983774947da124fb7d542ce25a218bb1 elisp-common 23f47b2e1de7abf387105eddd1318738 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=0814ecdc8a348df774ad3183626e1414 +_md5_=65d23f62dcb8a05cabec6f7e11ce9cab diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz new file mode 100644 index 000000000000..984f622b884a Binary files /dev/null and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/tigervnc-1.8.0 b/metadata/md5-cache/net-misc/tigervnc-1.8.0 index 91ce27e27720..42f6ca9fdea1 100644 --- a/metadata/md5-cache/net-misc/tigervnc-1.8.0 +++ b/metadata/md5-cache/net-misc/tigervnc-1.8.0 @@ -4,10 +4,10 @@ DESCRIPTION=Remote desktop viewer display system EAPI=6 HOMEPAGE=http://www.tigervnc.org IUSE=+drm gnutls nls java +opengl pam server systemd +xorgmodule elibc_FreeBSD java -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 LICENSE=GPL-2 RDEPEND=virtual/jpeg:0 sys-libs/zlib >=x11-libs/libXtst-1.0.99.2 >=x11-libs/fltk-1.3.1 gnutls? ( net-libs/gnutls:= ) nls? ( virtual/libiconv ) pam? ( virtual/pam ) server? ( dev-lang/perl >=x11-libs/libXi-1.2.99.1 >=x11-libs/libXfont-1.4.2 >=x11-libs/libxkbfile-1.0.4 x11-libs/libXrender >=x11-libs/pixman-0.27.2 >=x11-apps/xauth-1.0.3 x11-apps/xsetroot >=x11-misc/xkeyboard-config-2.4.1-r3 opengl? ( >=app-eselect/eselect-opengl-1.3.1-r1 ) xorgmodule? ( =x11-base/xorg-server-1.19* ) drm? ( x11-libs/libdrm ) ) !net-misc/tightvnc !net-misc/vnc !net-misc/xf4vnc java? ( >=virtual/jre-1.5:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://github.com/TigerVNC/tigervnc/archive/v1.8.0.tar.gz -> tigervnc-1.8.0.tar.gz https://dev.gentoo.org/~armin76/dist/tigervnc-1.4.2-patches-0.1.tar.bz2 server? ( ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-1.19.1.tar.bz2 ) _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 systemd 34815d3b76e745c5ca33eec9f95074c2 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b74652d613ab537cd55fd12c383d547f +_md5_=c5d80f9629acf8a2fd96d84eff4b06f2 diff --git a/metadata/md5-cache/net-nds/Manifest.gz b/metadata/md5-cache/net-nds/Manifest.gz new file mode 100644 index 000000000000..2c7dc07ce450 Binary files /dev/null and b/metadata/md5-cache/net-nds/Manifest.gz differ diff --git a/metadata/md5-cache/net-news/Manifest.gz b/metadata/md5-cache/net-news/Manifest.gz new file mode 100644 index 000000000000..bd9ed25c5dc4 Binary files /dev/null and b/metadata/md5-cache/net-news/Manifest.gz differ diff --git a/metadata/md5-cache/net-nntp/Manifest.gz b/metadata/md5-cache/net-nntp/Manifest.gz new file mode 100644 index 000000000000..5322c09eca3b Binary files /dev/null and b/metadata/md5-cache/net-nntp/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz new file mode 100644 index 000000000000..814370c1829e Binary files /dev/null and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz new file mode 100644 index 000000000000..c4522131eb4a Binary files /dev/null and b/metadata/md5-cache/net-print/Manifest.gz differ diff --git a/metadata/md5-cache/net-proxy/Manifest.gz b/metadata/md5-cache/net-proxy/Manifest.gz new file mode 100644 index 000000000000..9b37b9a33f9b Binary files /dev/null and b/metadata/md5-cache/net-proxy/Manifest.gz differ diff --git a/metadata/md5-cache/net-voip/Manifest.gz b/metadata/md5-cache/net-voip/Manifest.gz new file mode 100644 index 000000000000..ba6a514b6b70 Binary files /dev/null and b/metadata/md5-cache/net-voip/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz new file mode 100644 index 000000000000..3cd480a6f66c Binary files /dev/null and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz new file mode 100644 index 000000000000..7e54b49d8b47 Binary files /dev/null and b/metadata/md5-cache/net-wireless/Manifest.gz differ diff --git a/metadata/md5-cache/perl-core/Manifest.gz b/metadata/md5-cache/perl-core/Manifest.gz new file mode 100644 index 000000000000..9db546fdae00 Binary files /dev/null and b/metadata/md5-cache/perl-core/Manifest.gz differ diff --git a/metadata/md5-cache/ros-meta/Manifest.gz b/metadata/md5-cache/ros-meta/Manifest.gz new file mode 100644 index 000000000000..5b30b78671ab Binary files /dev/null and b/metadata/md5-cache/ros-meta/Manifest.gz differ diff --git a/metadata/md5-cache/sci-astronomy/Manifest.gz b/metadata/md5-cache/sci-astronomy/Manifest.gz new file mode 100644 index 000000000000..c8e5c103e79d Binary files /dev/null and b/metadata/md5-cache/sci-astronomy/Manifest.gz differ diff --git a/metadata/md5-cache/sci-biology/Manifest.gz b/metadata/md5-cache/sci-biology/Manifest.gz new file mode 100644 index 000000000000..e6997d1000c0 Binary files /dev/null and b/metadata/md5-cache/sci-biology/Manifest.gz differ diff --git a/metadata/md5-cache/sci-calculators/Manifest.gz b/metadata/md5-cache/sci-calculators/Manifest.gz new file mode 100644 index 000000000000..30bd93fa1637 Binary files /dev/null and b/metadata/md5-cache/sci-calculators/Manifest.gz differ diff --git a/metadata/md5-cache/sci-chemistry/Manifest.gz b/metadata/md5-cache/sci-chemistry/Manifest.gz new file mode 100644 index 000000000000..a81cb6422576 Binary files /dev/null and b/metadata/md5-cache/sci-chemistry/Manifest.gz differ diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz new file mode 100644 index 000000000000..189228dcebce Binary files /dev/null and b/metadata/md5-cache/sci-electronics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz new file mode 100644 index 000000000000..a7750115e2cb Binary files /dev/null and b/metadata/md5-cache/sci-geosciences/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz new file mode 100644 index 000000000000..57ad005ba56b Binary files /dev/null and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz new file mode 100644 index 000000000000..c92d5449bb9f Binary files /dev/null and b/metadata/md5-cache/sci-mathematics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-misc/Manifest.gz b/metadata/md5-cache/sci-misc/Manifest.gz new file mode 100644 index 000000000000..61d0ad9f425a Binary files /dev/null and b/metadata/md5-cache/sci-misc/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz new file mode 100644 index 000000000000..d57811b081e3 Binary files /dev/null and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz new file mode 100644 index 000000000000..aa168c446a5f Binary files /dev/null and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sec-policy/Manifest.gz b/metadata/md5-cache/sec-policy/Manifest.gz new file mode 100644 index 000000000000..a0d337279279 Binary files /dev/null and b/metadata/md5-cache/sec-policy/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz new file mode 100644 index 000000000000..1ea255ab78ca Binary files /dev/null and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/coreutils-8.28-r1 b/metadata/md5-cache/sys-apps/coreutils-8.28-r1 index 92283b3fdb2b..42caed0e7689 100644 --- a/metadata/md5-cache/sys-apps/coreutils-8.28-r1 +++ b/metadata/md5-cache/sys-apps/coreutils-8.28-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, who,. EAPI=6 HOMEPAGE=https://www.gnu.org/software/coreutils/ IUSE=acl caps gmp hostname kill multicall nls selinux static test userland_BSD vanilla xattr -KEYWORDS=~alpha amd64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux +KEYWORDS=~alpha amd64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux LICENSE=GPL-3 RDEPEND=!static? ( acl? ( sys-apps/acl ) caps? ( sys-libs/libcap ) gmp? ( dev-libs/gmp:= ) xattr? ( !userland_BSD? ( sys-apps/attr ) ) ) selinux? ( sys-libs/libselinux ) nls? ( virtual/libintl ) hostname? ( !sys-apps/net-tools[hostname] ) kill? ( !sys-apps/util-linux[kill] !sys-process/procps[kill] ) !app-misc/realpath !=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Command line tool for the YubiKey PIV application -EAPI=6 -HOMEPAGE=https://developers.yubico.com/yubico-piv-tool/ https://github.com/Yubico/yubico-piv-tool -KEYWORDS=~amd64 -LICENSE=BSD-2 -RDEPEND=dev-libs/openssl:0= sys-apps/pcsc-lite -SLOT=0/1 -SRC_URI=https://github.com/Yubico/yubico-piv-tool/archive/yubico-piv-tool-1.4.3.tar.gz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=0950433e03d441cec951beb6306c3bba diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz new file mode 100644 index 000000000000..3fe245e64114 Binary files /dev/null and b/metadata/md5-cache/sys-block/Manifest.gz differ diff --git a/metadata/md5-cache/sys-boot/Manifest.gz b/metadata/md5-cache/sys-boot/Manifest.gz new file mode 100644 index 000000000000..212057bcb1af Binary files /dev/null and b/metadata/md5-cache/sys-boot/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz new file mode 100644 index 000000000000..a9109a9e9dd1 Binary files /dev/null and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz new file mode 100644 index 000000000000..1e0c38e4ae84 Binary files /dev/null and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fabric/Manifest.gz b/metadata/md5-cache/sys-fabric/Manifest.gz new file mode 100644 index 000000000000..060ab7723dfb Binary files /dev/null and b/metadata/md5-cache/sys-fabric/Manifest.gz differ diff --git a/metadata/md5-cache/sys-firmware/Manifest.gz b/metadata/md5-cache/sys-firmware/Manifest.gz new file mode 100644 index 000000000000..a8b19f8ac3f8 Binary files /dev/null and b/metadata/md5-cache/sys-firmware/Manifest.gz differ diff --git a/metadata/md5-cache/sys-freebsd/Manifest.gz b/metadata/md5-cache/sys-freebsd/Manifest.gz new file mode 100644 index 000000000000..cf2778455242 Binary files /dev/null and b/metadata/md5-cache/sys-freebsd/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fs/Manifest.gz b/metadata/md5-cache/sys-fs/Manifest.gz new file mode 100644 index 000000000000..789b274a313e Binary files /dev/null and b/metadata/md5-cache/sys-fs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz new file mode 100644 index 000000000000..ab48d9573ee9 Binary files /dev/null and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz new file mode 100644 index 000000000000..1cfcfef2cda8 Binary files /dev/null and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/argp-standalone-1.3-r2 b/metadata/md5-cache/sys-libs/argp-standalone-1.3-r2 index 9a25ed522072..46c70d726fb9 100644 --- a/metadata/md5-cache/sys-libs/argp-standalone-1.3-r2 +++ b/metadata/md5-cache/sys-libs/argp-standalone-1.3-r2 @@ -5,8 +5,8 @@ EAPI=6 HOMEPAGE=http://www.lysator.liu.se/~nisse/misc/ IUSE=static-libs KEYWORDS=amd64 ~arm ~arm64 ~m68k ~mips ~ppc ~s390 ~sh x86 -LICENSE=public-domain +LICENSE=public-domain GPL-2 GPL-3 XC SLOT=0 SRC_URI=http://www.lysator.liu.se/~nisse/misc/argp-standalone-1.3.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=9eac8f7b20173c1fb2295920cd464e88 +_md5_=77f5163922a8361b3e40bfbde8071459 diff --git a/metadata/md5-cache/sys-power/Manifest.gz b/metadata/md5-cache/sys-power/Manifest.gz new file mode 100644 index 000000000000..3acb1777c32e Binary files /dev/null and b/metadata/md5-cache/sys-power/Manifest.gz differ diff --git a/metadata/md5-cache/sys-process/Manifest.gz b/metadata/md5-cache/sys-process/Manifest.gz new file mode 100644 index 000000000000..145cb3820bbe Binary files /dev/null and b/metadata/md5-cache/sys-process/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz new file mode 100644 index 000000000000..9d8fb63a6909 Binary files /dev/null and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz new file mode 100644 index 000000000000..ccb84139699a Binary files /dev/null and b/metadata/md5-cache/www-apache/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz new file mode 100644 index 000000000000..d3ca7e808bb4 Binary files /dev/null and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz new file mode 100644 index 000000000000..1cd338e6668f Binary files /dev/null and b/metadata/md5-cache/www-client/Manifest.gz differ diff --git a/metadata/md5-cache/www-misc/Manifest.gz b/metadata/md5-cache/www-misc/Manifest.gz new file mode 100644 index 000000000000..6517884922ca Binary files /dev/null and b/metadata/md5-cache/www-misc/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz new file mode 100644 index 000000000000..6f61b96689e6 Binary files /dev/null and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz new file mode 100644 index 000000000000..02c5789ace92 Binary files /dev/null and b/metadata/md5-cache/www-servers/Manifest.gz differ diff --git a/metadata/md5-cache/x11-apps/Manifest.gz b/metadata/md5-cache/x11-apps/Manifest.gz new file mode 100644 index 000000000000..78dd67d80130 Binary files /dev/null and b/metadata/md5-cache/x11-apps/Manifest.gz differ diff --git a/metadata/md5-cache/x11-base/Manifest b/metadata/md5-cache/x11-base/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/md5-cache/x11-drivers/Manifest.gz b/metadata/md5-cache/x11-drivers/Manifest.gz new file mode 100644 index 000000000000..001af30145b2 Binary files /dev/null and b/metadata/md5-cache/x11-drivers/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz new file mode 100644 index 000000000000..afa39acb41f9 Binary files /dev/null and b/metadata/md5-cache/x11-libs/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/qscintilla-2.10.2 b/metadata/md5-cache/x11-libs/qscintilla-2.10.2 new file mode 100644 index 000000000000..35059e8285d4 --- /dev/null +++ b/metadata/md5-cache/x11-libs/qscintilla-2.10.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install unpack +DEPEND=qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 designer? ( dev-qt/designer:4 ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) ) +DESCRIPTION=A Qt port of Neil Hodgson's Scintilla C++ editor class +EAPI=6 +HOMEPAGE=https://www.riverbankcomputing.com/software/qscintilla/intro +IUSE=designer doc +qt4 qt5 +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-3 +RDEPEND=qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 designer? ( dev-qt/designer:4 ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) ) +REQUIRED_USE=|| ( qt4 qt5 ) +SLOT=0/13 +SRC_URI=mirror://sourceforge/pyqt/QScintilla_gpl-2.10.2.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=01940f6efc95470b43470446c4b0e20b diff --git a/metadata/md5-cache/x11-libs/qscintilla-2.9.2-r1 b/metadata/md5-cache/x11-libs/qscintilla-2.9.2-r1 deleted file mode 100644 index ff865686a69a..000000000000 --- a/metadata/md5-cache/x11-libs/qscintilla-2.9.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install unpack -DEPEND=dev-qt/qtcore:4 dev-qt/qtgui:4 designer? ( dev-qt/designer:4 ) -DESCRIPTION=A Qt port of Neil Hodgson's Scintilla C++ editor class -EAPI=6 -HOMEPAGE=https://www.riverbankcomputing.com/software/qscintilla/intro -IUSE=designer doc +qt4 -KEYWORDS=alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux -LICENSE=GPL-3 -RDEPEND=dev-qt/qtcore:4 dev-qt/qtgui:4 designer? ( dev-qt/designer:4 ) -SLOT=0/12 -SRC_URI=mirror://sourceforge/pyqt/QScintilla_gpl-2.9.2.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=9c348ca2545de5658e5388d55b661136 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz new file mode 100644 index 000000000000..db49f4369b9f Binary files /dev/null and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/tint2-15.3 b/metadata/md5-cache/x11-misc/tint2-15.3 new file mode 100644 index 000000000000..c09c88d26daa --- /dev/null +++ b/metadata/md5-cache/x11-misc/tint2-15.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack +DEPEND=dev-libs/glib:2 svg? ( gnome-base/librsvg:2 ) >=media-libs/imlib2-1.4.2[X,png] x11-libs/cairo[X] x11-libs/pango tint2conf? ( x11-libs/gtk+:2 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama >=x11-libs/libXrandr-1.3 x11-libs/libXrender startup-notification? ( x11-libs/startup-notification ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 +DESCRIPTION=tint2 is a lightweight panel/taskbar for Linux. +EAPI=6 +HOMEPAGE=https://gitlab.com/o9000/tint2 +IUSE=battery svg startup-notification tint2conf +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 svg? ( gnome-base/librsvg:2 ) >=media-libs/imlib2-1.4.2[X,png] x11-libs/cairo[X] x11-libs/pango tint2conf? ( x11-libs/gtk+:2 ) x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama >=x11-libs/libXrandr-1.3 x11-libs/libXrender startup-notification? ( x11-libs/startup-notification ) +SLOT=0 +SRC_URI=https://gitlab.com/o9000/tint2/repository/archive.tar.gz?ref=v15.3 -> tint2-15.3.tar.gz +_eclasses_=cmake-utils f9fb12e2dbe2e0c9c17f030bae85eb02 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=f1e70654968e944f2ff742a2e3591bad diff --git a/metadata/md5-cache/x11-plugins/Manifest.gz b/metadata/md5-cache/x11-plugins/Manifest.gz new file mode 100644 index 000000000000..09b68652b57f Binary files /dev/null and b/metadata/md5-cache/x11-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/x11-plugins/cputnik-0.2.0 b/metadata/md5-cache/x11-plugins/cputnik-0.2.0 index 211c61e75b64..b7b180e18bba 100644 --- a/metadata/md5-cache/x11-plugins/cputnik-0.2.0 +++ b/metadata/md5-cache/x11-plugins/cputnik-0.2.0 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install unpack DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto DESCRIPTION=cputnik is a simple cpu monitor dockapp EAPI=0 -HOMEPAGE=http://dockapps.windowmaker.org/file.php/id/273 +HOMEPAGE=http://www.dockapps.net/cputnik KEYWORDS=~amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://dockapps.windowmaker.org/download.php/id/576/cputnik-0.2.0.tar.gz +SRC_URI=http://www.dockapps.net/download/cputnik-0.2.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=1e283bb79cfbe6108c066a40975aae7a +_md5_=33bca66f1b0b9ce479b5b6633f1be347 diff --git a/metadata/md5-cache/x11-plugins/wmCalClock-1.25-r2 b/metadata/md5-cache/x11-plugins/wmCalClock-1.25-r2 index dc02258953ac..f16951644f36 100644 --- a/metadata/md5-cache/x11-plugins/wmCalClock-1.25-r2 +++ b/metadata/md5-cache/x11-plugins/wmCalClock-1.25-r2 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install unpack DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xproto x11-proto/xextproto DESCRIPTION=WMaker DockApp: A Calendar clock with antialiased text EAPI=0 -HOMEPAGE=http://dockapps.windowmaker.org/file.php/id/9 +HOMEPAGE=http://www.dockapps.net/wmcalclock KEYWORDS=alpha amd64 ~mips ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://dockapps.windowmaker.org/download.php/id/16/wmCalClock-1.25.tar.gz +SRC_URI=http://www.dockapps.net/download/wmCalClock-1.25.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=573231b9b7f5d4dd54a053847873ccc3 +_md5_=567c0602293b961c3ded1a6420ae6294 diff --git a/metadata/md5-cache/x11-plugins/wmSMPmon-3.1-r1 b/metadata/md5-cache/x11-plugins/wmSMPmon-3.1-r1 index f172ae3d569b..0db5800accfe 100644 --- a/metadata/md5-cache/x11-plugins/wmSMPmon-3.1-r1 +++ b/metadata/md5-cache/x11-plugins/wmSMPmon-3.1-r1 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install unpack DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto DESCRIPTION=SMP system monitor dockapp EAPI=0 -HOMEPAGE=http://lancre.ribbrock.org/binabit/wmSMPmon/ +HOMEPAGE=http://www.dockapps.net/wmsmpmon KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://lancre.ribbrock.org/binabit/wmSMPmon/src/wmSMPmon-3.1.tar.gz +SRC_URI=http://www.dockapps.net/download/wmSMPmon-3.1.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c374a4181d909b0a987ba97fd00ddeba +_md5_=4ae281636c6d63d719c98e750a99381c diff --git a/metadata/md5-cache/x11-plugins/wmbio-1.02 b/metadata/md5-cache/x11-plugins/wmbio-1.02 index 590cc308fb5d..a15f7e1a2e81 100644 --- a/metadata/md5-cache/x11-plugins/wmbio-1.02 +++ b/metadata/md5-cache/x11-plugins/wmbio-1.02 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://wmbio.sourceforge.net/wmbio-1.02.tar.gz +SRC_URI=mirror://sourceforge/wmbio/wmbio-1.02.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=74476ac6bec36a1edc33f40186fd9784 +_md5_=0f1c2439d0becea73ecb0c3cbdffb043 diff --git a/metadata/md5-cache/x11-plugins/wmitime-0.3 b/metadata/md5-cache/x11-plugins/wmitime-0.3 deleted file mode 100644 index 72a9b88f75d1..000000000000 --- a/metadata/md5-cache/x11-plugins/wmitime-0.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install unpack -DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto -DESCRIPTION=Overglorified clock dockapp w/time, date, and internet time -EAPI=0 -HOMEPAGE=http://www.neotokyo.org/illusion/ -KEYWORDS=amd64 ppc ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm -SLOT=0 -SRC_URI=http://www.neotokyo.org/illusion/downloads/wmitime-0.3.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=00541fb043ffd31093db8ebed303a00c diff --git a/metadata/md5-cache/x11-plugins/wmitime-0.4 b/metadata/md5-cache/x11-plugins/wmitime-0.4 deleted file mode 100644 index e0edb45573f0..000000000000 --- a/metadata/md5-cache/x11-plugins/wmitime-0.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm -DESCRIPTION=Overglorified clock dockapp w/time, date, and internet time -EAPI=5 -HOMEPAGE=http://www.dockapps.net/wmitime -KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm -SLOT=0 -SRC_URI=https://dev.gentoo.org/~voyageur/distfiles/wmitime-0.4.tar.gz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7ad3bd50b26eeb93e766590da71e027d diff --git a/metadata/md5-cache/x11-plugins/wmlife-1.0.1 b/metadata/md5-cache/x11-plugins/wmlife-1.0.1 index 49d624d7a356..d161f83673b8 100644 --- a/metadata/md5-cache/x11-plugins/wmlife-1.0.1 +++ b/metadata/md5-cache/x11-plugins/wmlife-1.0.1 @@ -2,11 +2,11 @@ DEFINED_PHASES=configure prepare DEPEND=>=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=dockapp running Conway's Game of Life (and program launcher) EAPI=5 -HOMEPAGE=http://www.swanson.ukfsn.org/#wmlife +HOMEPAGE=http://www.improbability.net/#wmlife KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext SLOT=0 -SRC_URI=http://www.swanson.ukfsn.org/wmlife/wmlife-1.0.1.tar.gz +SRC_URI=http://www.improbability.net/wmlife/wmlife-1.0.1.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c4652683e5aaf5b678c9f37fc9640b9b +_md5_=09bc066906a9fee12425d159fd190c1d diff --git a/metadata/md5-cache/x11-plugins/wmlongrun-0.2.0 b/metadata/md5-cache/x11-plugins/wmlongrun-0.2.0 deleted file mode 100644 index 64cac61edca4..000000000000 --- a/metadata/md5-cache/x11-plugins/wmlongrun-0.2.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto -DESCRIPTION=A dockapp to monitor LongRun on a Transmeta Crusoe processor -EAPI=0 -HOMEPAGE=http://dockapps.windowmaker.org/file.php/id/38 -KEYWORDS=x86 -* -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm -SLOT=0 -SRC_URI=mirror://gentoo/wmlongrun-0.2.0.tar.gz -_md5_=cbb24924c59c56f95c3c3736a6460d0e diff --git a/metadata/md5-cache/x11-plugins/wmlongrun-0.3.0_pre1 b/metadata/md5-cache/x11-plugins/wmlongrun-0.3.0_pre1 deleted file mode 100644 index 501c656308c6..000000000000 --- a/metadata/md5-cache/x11-plugins/wmlongrun-0.3.0_pre1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto -DESCRIPTION=A dockapp to monitor LongRun on a Transmeta Crusoe processor -EAPI=0 -HOMEPAGE=http://dockapps.windowmaker.org/file.php/id/38 -KEYWORDS=~x86 -* -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm -SLOT=0 -SRC_URI=mirror://gentoo/wmlongrun-0.3.0pre1.tar.gz -_md5_=ed21ea0cf2bc3d739d9c016a4d3d7520 diff --git a/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a b/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a deleted file mode 100644 index 627d95c89c98..000000000000 --- a/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install unpack -DEPEND=x11-wm/windowmaker >=sys-apps/sed-4 x11-libs/libXpm -DESCRIPTION=dockapp for checking pop3 accounts -EAPI=0 -HOMEPAGE=http://www.cs.mun.ca/~scotth/ -KEYWORDS=amd64 ~sparc x86 -LICENSE=GPL-2 -RDEPEND=x11-wm/windowmaker >=sys-apps/sed-4 x11-libs/libXpm -SLOT=0 -SRC_URI=http://www.cs.mun.ca/~scotth/download/WMPop3-0.5.6a.tar.gz -_md5_=ff423f922f2d6461e143986265d060e2 diff --git a/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a-r1 b/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a-r1 index d5df0c6af58e..b660a0e6f0a3 100644 --- a/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a-r1 +++ b/metadata/md5-cache/x11-plugins/wmpop3-0.5.6a-r1 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install prepare DEPEND=x11-wm/windowmaker x11-libs/libXpm DESCRIPTION=dockapp for checking pop3 accounts EAPI=6 -HOMEPAGE=http://www.cs.mun.ca/~scotth/ +HOMEPAGE=http://www.dockapps.net/wmpop3 KEYWORDS=amd64 ~sparc x86 LICENSE=GPL-2 RDEPEND=x11-wm/windowmaker x11-libs/libXpm SLOT=0 -SRC_URI=http://www.cs.mun.ca/~scotth/download/WMPop3-0.5.6a.tar.gz +SRC_URI=http://www.dockapps.net/download/WMPop3-0.5.6a.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=da654961d599cf37b0e7dec15d73733e +_md5_=17803f497193b9822e79348cab607eac diff --git a/metadata/md5-cache/x11-plugins/wmtop-0.85 b/metadata/md5-cache/x11-plugins/wmtop-0.85 index 8d948de7f2fb..f5c07ab46fad 100644 --- a/metadata/md5-cache/x11-plugins/wmtop-0.85 +++ b/metadata/md5-cache/x11-plugins/wmtop-0.85 @@ -7,6 +7,6 @@ KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=>=x11-libs/libdockapp-0.7:= x11-libs/libX11 x11-libs/libXpm x11-libs/libXext SLOT=0 -SRC_URI=https://dev.gentoo.org/~voyageur/distfiles/wmtop-0.85.tar.gz +SRC_URI=http://www.dockapps.net/download/wmtop-0.85.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=3dcaab6af8ce2d541673fa40815ab3b3 +_md5_=9c7970710a91210d1c21351841715de7 diff --git a/metadata/md5-cache/x11-plugins/wmtop-0.9.0-r1 b/metadata/md5-cache/x11-plugins/wmtop-0.9.0-r1 deleted file mode 100644 index 01e6c5d2d3cb..000000000000 --- a/metadata/md5-cache/x11-plugins/wmtop-0.9.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=x11-libs/libX11 x11-libs/libXpm x11-libs/libXext x11-proto/xproto x11-proto/xextproto -DESCRIPTION=dockapp for monitoring the top three processes using cpu or memory -EAPI=4 -HOMEPAGE=http://www.swanson.ukfsn.org/#wmtop -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libX11 x11-libs/libXpm x11-libs/libXext -SLOT=0 -SRC_URI=http://www.swanson.ukfsn.org/wmdock/wmtop-0.9.0.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=36e89888780aab3c7363b9379f2a58b0 diff --git a/metadata/md5-cache/x11-plugins/wmtz-0.7 b/metadata/md5-cache/x11-plugins/wmtz-0.7 index e825154e49ce..aeeb88aabaf6 100644 --- a/metadata/md5-cache/x11-plugins/wmtz-0.7 +++ b/metadata/md5-cache/x11-plugins/wmtz-0.7 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile install prepare DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto DESCRIPTION=dockapp that shows the time in multiple timezones EAPI=3 -HOMEPAGE=https://www.gentoo.org/ +HOMEPAGE=http://www.dockapps.net/wmtz KEYWORDS=amd64 ppc sparc x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=mirror://gentoo/wmtz-0.7.tar.gz +SRC_URI=http://www.dockapps.net/download/wmtz-0.7.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=09ea945fba244cc55251ebc0805bd847 +_md5_=ecb449513cd840ca4f37ab23645af30b diff --git a/metadata/md5-cache/x11-plugins/wmwifi-0.6 b/metadata/md5-cache/x11-plugins/wmwifi-0.6 index 94b7d5e474d8..6b472200edf9 100644 --- a/metadata/md5-cache/x11-plugins/wmwifi-0.6 +++ b/metadata/md5-cache/x11-plugins/wmwifi-0.6 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile install DEPEND=x11-libs/libX11 x11-libs/libXt x11-libs/libXext x11-libs/libXpm x11-proto/xextproto x11-proto/xproto DESCRIPTION=wireless network interface monitor dockapp EAPI=0 -HOMEPAGE=http://wmwifi.digitalssg.net +HOMEPAGE=http://www.dockapps.net/wmwifi KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXt x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://digitalssg.net/debian/wmwifi-0.6.tar.gz -_md5_=07046db25ec2c770847a4e3f8042b30f +SRC_URI=http://www.dockapps.net/download/wmwifi-0.6.tar.gz +_md5_=8bbb8c1dbedbc0312b9d817aa8de1df5 diff --git a/metadata/md5-cache/x11-proto/Manifest.gz b/metadata/md5-cache/x11-proto/Manifest.gz new file mode 100644 index 000000000000..67de12c3e6ae Binary files /dev/null and b/metadata/md5-cache/x11-proto/Manifest.gz differ diff --git a/metadata/md5-cache/x11-terms/Manifest.gz b/metadata/md5-cache/x11-terms/Manifest.gz new file mode 100644 index 000000000000..907777078693 Binary files /dev/null and b/metadata/md5-cache/x11-terms/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz new file mode 100644 index 000000000000..0812340bec2c Binary files /dev/null and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz new file mode 100644 index 000000000000..5bae35f98232 Binary files /dev/null and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/lumina-1.4.0 b/metadata/md5-cache/x11-wm/lumina-1.4.0 new file mode 100644 index 000000000000..94119d0abf64 --- /dev/null +++ b/metadata/md5-cache/x11-wm/lumina-1.4.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtgui:5 dev-qt/qtdeclarative:5 x11-libs/libxcb:0 x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-wm desktop-utils? ( app-text/poppler[qt5] ) dev-qt/linguist-tools:5 +DESCRIPTION=Lumina desktop environment +EAPI=6 +HOMEPAGE=https://lumina-desktop.org/ +IUSE=desktop-utils +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtgui:5 dev-qt/qtdeclarative:5 x11-libs/libxcb:0 x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-wm desktop-utils? ( app-text/poppler[qt5] ) sys-fs/inotify-tools x11-misc/numlockx x11-wm/fluxbox || ( x11-apps/xbacklight sys-power/acpilight ) media-sound/alsa-utils sys-power/acpi app-admin/sysstat +SLOT=0 +SRC_URI=https://github.com/trueos/lumina/archive/v1.4.0.tar.gz -> lumina-1.4.0.tar.gz +_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=f5dd1c7eb8819040d37d0e48447ac56e diff --git a/metadata/md5-cache/x11-wm/lumina-9999 b/metadata/md5-cache/x11-wm/lumina-9999 index 1c98158e3362..5582eb712e9e 100644 --- a/metadata/md5-cache/x11-wm/lumina-9999 +++ b/metadata/md5-cache/x11-wm/lumina-9999 @@ -8,4 +8,4 @@ LICENSE=BSD RDEPEND=dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtmultimedia:5[widgets] dev-qt/qtsvg:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtgui:5 dev-qt/qtdeclarative:5 x11-libs/libxcb:0 x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-wm sys-fs/inotify-tools x11-misc/numlockx x11-wm/fluxbox || ( x11-apps/xbacklight sys-power/acpilight ) media-sound/alsa-utils sys-power/acpi app-admin/sysstat SLOT=0 _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f git-r3 52a888802d25387c2c74cb845d1219bc multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ce3e667faa02cb5eb5901dd9927d5c17 +_md5_=0168bc10e5236544f5c422278c03c15c diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz new file mode 100644 index 000000000000..cf26334245ed Binary files /dev/null and b/metadata/md5-cache/xfce-base/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz new file mode 100644 index 000000000000..5088c7631488 Binary files /dev/null and b/metadata/md5-cache/xfce-extra/Manifest.gz differ diff --git a/metadata/news/Manifest b/metadata/news/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index f2df4e7f24ed..a46dbcc0403e 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Fri, 24 Nov 2017 14:39:15 +0000 +Sat, 25 Nov 2017 02:39:03 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index e298f8190912..a0711b4db7a3 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Fri Nov 24 14:39:15 UTC 2017 +Sat Nov 25 02:39:03 UTC 2017 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index bf71141fe314..746904e4c2cb 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Fri, 24 Nov 2017 15:00:01 +0000 +Sat, 25 Nov 2017 06:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index aa0706c44894..b6cd3010ca3f 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -e6a6511562637e65555be2a67e6be7d7e1d62ade 1511532858 2017-11-24T14:14:18+00:00 +a0fde3824ef2eec2fc7d40439dec8396bba19705 1511576858 2017-11-25T02:27:38+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 0b6ffd872b99..9db804324f62 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1511534101 Fri 24 Nov 2017 02:35:01 PM UTC +1511577301 Sat 25 Nov 2017 02:35:01 AM UTC diff --git a/metadata/xml-schema/Manifest b/metadata/xml-schema/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index f2df4e7f24ed..a46dbcc0403e 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Fri, 24 Nov 2017 14:39:15 +0000 +Sat, 25 Nov 2017 02:39:03 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz new file mode 100644 index 000000000000..14535b1c972a Binary files /dev/null and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest index f624bbf53848..1b3800e794d7 100644 --- a/net-analyzer/nagios-check_rbl/Manifest +++ b/net-analyzer/nagios-check_rbl/Manifest @@ -1,2 +1 @@ -DIST check_rbl-1.3.7-r1.tar.gz 38565 SHA256 dbe76bd24ab9404817f74fd895dfeb1c55d296fe9a8264a4c631c5139ea31247 SHA512 a918090b2c1e93095b155215de559b0d7f35c949e9c9d27c7b6dc91e21391b03d716154dd90ea1a68deeabce5afde3c9e5746190910f18bf1d3e08ff20d02431 WHIRLPOOL 31a13de7cfc650deea83d8c7cf148358046260502c34e3d643ad53c1e96854b0194da80fac3d95cf5fa06b01d9224fb9716ce3e281148ce174f89e75bb418023 -DIST check_rbl-1.4.1.tar.gz 47585 SHA256 6121e01be4b65f4ed34e8387366a616ceef79f74e44322f68ea8d384c193a177 SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb WHIRLPOOL 535cbfad9cb300e51526ea7127ed5c25a2274a0ade4aaa98e3755793fc82ac7adc91a34adba6af2a8d0708869317c33aeccfaaf5bf6c6b2f44974c0db9f99406 +DIST check_rbl-1.4.1.tar.gz 47585 BLAKE2B 24979d1579ef46f6d0626700bb8b9aa3f3acd4b422398ecbfa98909248fd6ffe61a763e377e7942d3078d8b91488f3fc0e2ab25f7c4821bcfa5cde08d000bd5c SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb diff --git a/net-analyzer/nagios-check_rbl/files/nagios-check_rbl-1.3.7-perl526.patch b/net-analyzer/nagios-check_rbl/files/nagios-check_rbl-1.3.7-perl526.patch deleted file mode 100644 index b44ae74a0ea6..000000000000 --- a/net-analyzer/nagios-check_rbl/files/nagios-check_rbl-1.3.7-perl526.patch +++ /dev/null @@ -1,9 +0,0 @@ -diff -ruN check_rbl-1.3.7.orig/Makefile.PL check_rbl-1.3.7/Makefile.PL ---- check_rbl-1.3.7.orig/Makefile.PL 2015-10-24 13:06:09.000000000 -0000 -+++ check_rbl-1.3.7/Makefile.PL 2017-08-04 16:10:49.881515014 -0000 -@@ -1,4 +1,5 @@ - # Load the Module::Install bundled in ./inc/ -+use lib q[.]; - use inc::Module::Install; - - # File version information: diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild deleted file mode 100644 index af314b58ee8f..000000000000 --- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# Needed for perl_rm_files in src_prepare() only. -inherit perl-functions - -DESCRIPTION="Monitor whether or not a host is blacklisted" -HOMEPAGE="https://github.com/matteocorti/check_rbl" - -MY_P="${P/nagios-/}" - -# We rename the tarball here because the upstream source changed without -# a new release. That change happens to fix bug #583966, so we do want -# the newer tarball. But I think, without the rename, that user might -# have gotten a checksum failure. -SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz - -> ${MY_P}-r1.tar.gz" - -LICENSE="GPL-3" -SLOT="0" - -KEYWORDS="amd64 hppa sparc x86" -IUSE="" - -# The package's INSTALL/Makefile.PL files specify its dependencies. -# -# * Data::Validate::Domain (dev-perl/Data-Validate-Domain) -# * Data::Validate::IP (dev-perl/Data-Validate-IP) -# * IO::Select (dev-lang/perl) -# * Monitoring::Plugin (dev-perl/Monitoring-Plugin) -# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin) -# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin) -# * Net::DNS (dev-perl/Net-DNS) -# * Readonly (dev-perl/Readonly) -# -RDEPEND="dev-lang/perl - dev-perl/Data-Validate-Domain - dev-perl/Data-Validate-IP - dev-perl/Monitoring-Plugin - dev-perl/Net-DNS - dev-perl/Readonly" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( "${FILESDIR}/${P}-perl526.patch" ) - -src_prepare() { - default - - # The copy of version.pm that upstream ships causes problems and - # isn't necessary. They probably shouldn't be shipping it at all. - # See bug #583966 for more information. You should check on - # https://github.com/matteocorti/check_rbl/issues/6 every once - # in a while to see if this can be removed. - perl_rm_files inc/version.pm -} - -src_configure() { - perl Makefile.PL INSTALLDIRS=vendor || die -} - -src_install() { - default - - local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins - - # It's simplest to move this file after it's been installed. - dodir "${nagiosplugindir}" - mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die -} diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild index c307c420402b..2c96f81393b1 100644 --- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild +++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~hppa sparc x86" +KEYWORDS="amd64 hppa sparc x86" IUSE="" # No, this is not redundant -- see bug 627082. diff --git a/net-dialup/Manifest.gz b/net-dialup/Manifest.gz new file mode 100644 index 000000000000..378ce959c1b9 Binary files /dev/null and b/net-dialup/Manifest.gz differ diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz new file mode 100644 index 000000000000..02c2733feccf Binary files /dev/null and b/net-dns/Manifest.gz differ diff --git a/net-firewall/Manifest.gz b/net-firewall/Manifest.gz new file mode 100644 index 000000000000..36e0b63ededa Binary files /dev/null and b/net-firewall/Manifest.gz differ diff --git a/net-fs/Manifest.gz b/net-fs/Manifest.gz new file mode 100644 index 000000000000..ede6f7135398 Binary files /dev/null and b/net-fs/Manifest.gz differ diff --git a/net-ftp/Manifest.gz b/net-ftp/Manifest.gz new file mode 100644 index 000000000000..86a29bab581f Binary files /dev/null and b/net-ftp/Manifest.gz differ diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz new file mode 100644 index 000000000000..9f00c3e1e17e Binary files /dev/null and b/net-im/Manifest.gz differ diff --git a/net-irc/Manifest.gz b/net-irc/Manifest.gz new file mode 100644 index 000000000000..ff064bed52c9 Binary files /dev/null and b/net-irc/Manifest.gz differ diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz new file mode 100644 index 000000000000..15c8f8244265 Binary files /dev/null and b/net-libs/Manifest.gz differ diff --git a/net-mail/Manifest.gz b/net-mail/Manifest.gz new file mode 100644 index 000000000000..1ef1d96d6375 Binary files /dev/null and b/net-mail/Manifest.gz differ diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest index 0ff7da43c3c4..044fcb4bbdc5 100644 --- a/net-mail/mu/Manifest +++ b/net-mail/mu/Manifest @@ -1,8 +1,5 @@ DIST mu-0.9.15.tar.gz 2203193 SHA256 60c63fdf1b726696cb0028b86eaee2aa72e171493b2d5626ea173b912ff25d4c SHA512 36a0dcaa9b355c7a75f1d8c7730241ade979ec050e18f8609b840d6dff6befc96cf3fb649b8970649542724b2c20482099aaf9827b17a5e9618eb13cdda9c4b5 WHIRLPOOL e627d2553cc466725c3d1c339fb03fe08f784b069b01cc1da26c7761cc0cd03d28da5f8bf06e36e5d6dd23cee6ecbef232c45d4447b9b32b543efbb0a4cbb8eb -DIST mu-0.9.16.tar.gz 2212969 SHA256 af086880b00a6954bc1135b226b66a33205893600c8dd04139a6871c62c6f05c SHA512 8cf9b83aea287ee79b5160ed19e7dc6ef27f0784143b5eac9cf55d07b7718bc777624d752e0b407258b5078e998544d18dbb258a7eb03cafe55596f07a60d1f4 WHIRLPOOL 96a7a2fce4083d2bc3b583d59d04b26231fae67792e0d3846ff480020d481cfdeac0fb58b9e9122b5e1963380d493ef08a30fd3a03a8a7e9960c78a0932bf64c -DIST mu-0.9.18.tar.gz 2250319 SHA256 8dd35ab52774c4595077570e730989a2ef329204cd677ad1085f43cc1b89dc3d SHA512 47104d18547de0871782abc4e1c6dbf1f9b2489410e5716043861bf8d973d33d2138de7d7ac568b300ca86ae9f1a0fda0fa9555ad9a5938771336ef958183546 WHIRLPOOL 05cdd1a90aebd6c83b76e07ee864a2ff19c7a8ed7c0e9b9fe324f07ba70414b8b4e93d7c51a4394ebbbc156de2ce65edfcaa65c78bea3944c38e48bb7151e2c7 -DIST mu-0.9.9.5.tar.gz 1230322 SHA256 17e29a68c020a84441a38033067f6f538217b5d691b9c475f9593ab47ca493c3 SHA512 bd9814c670391f28a5be4b7c064f2bfc6a9428d94c88476539323688fc86df72f600cec30a87fb2b242dbeb717eb3a39c95ac09091c4c05c1886824e3052972b WHIRLPOOL bad0439b44524254a5113522cf2eafeb68604300dbc6822a9170c0ef4c336f1874428df0bfa25c7b2e7657b49d2a74cf06ce7ebb88e4e21458b87971fc178045 -DIST mu-0.9.9.6.tar.gz 2172349 SHA256 4ae4ca7f433dcfc6dfd85a41873914c1bda5c43de02ad2a030cd449f84d629cb SHA512 0213033aa7599a5120c38a4b9ec018357ebd63a3c4828e0f9d7af41529dc1b001db8d506408b0341e0efe9835fbd21dbf23c836920c98ae2caabcb0cdc7dac2b WHIRLPOOL 577e5eef5874d6cdc667e967a6722308d4e99035b8265f24030ced851d976a215bdd9ce209510a75d362af76d15116a475af6e5abb5d5be04b95f549d5ecb901 -DIST mu-0.9.9.tar.gz 1185624 SHA256 83f8e2814ba1a89a3153ab3dcd21105cc62e1386c176c5312ccb6bae0af02013 SHA512 1dc8608a77381d6ad0f26e3729f17a0c5bc2a90cbefa217159c8dc432c2bb9f7d495d08053852bf10451a3b5ac40e325ad44cb7d9f032f8337cd094b121da143 WHIRLPOOL de9406c0995bfe6592cb411eeb03b6681f79e15df0633857beb502bf2825b7974c79039298f5cf682be9e45d6237b463a5dcd3b5930ebb99456cbf0b1497890a -DIST mu4e-manual-0.9.9.5.pdf 396250 SHA256 581d2440f79caca197ac82b6b9a9077fdae7815adc503fb6e185cef78e2a9f99 SHA512 ef9d36a1d9c7a397d89ce5a01072408165dc37b1cc7bb90658f35421cd0dfe28c8fa932cc602f5150c7947aa09c94a470924c98fcae3d9caa7d92fb1d47f7e7e WHIRLPOOL 806bd735de7e0dee31375aa956436ea67b140bd65be0bbee13a2b85b4218133efd4a87d1281307fb43107a559745ce19803cdb5d51a0e965efcc595bbdf3c605 -DIST mu4e-manual-0.9.9.pdf 379708 SHA256 75c76d736d0e3df39f654e3343cd6b5d861946bc7f570237dcd677ef79c39455 SHA512 fb8f8e94694969fc9d616177ddbb78d17b103446b2859806578255eaa954368973ef3a4fa6d8b410c8143f0b8e7ff51374f9bd3de6292fc2fd4c5cc3479b6979 WHIRLPOOL ab0ca516486bd6bab29776d665991a1c2a9120c191066b6e564b620228f81bab97b6137d1972a61c8bf5b60131755ffe6f005c99ec1d95a60ce97d4f02e2a8f2 +DIST mu-0.9.16.tar.gz 2212969 BLAKE2B b56fe468ad1e077f7f66bdd0afb6e81f7ba500aaf55a867ea4b44f78f9b7f8d723905075515692da38918c3b7b89d3679e473774fe03efbea1210b3b75b954fd SHA512 8cf9b83aea287ee79b5160ed19e7dc6ef27f0784143b5eac9cf55d07b7718bc777624d752e0b407258b5078e998544d18dbb258a7eb03cafe55596f07a60d1f4 +DIST mu-0.9.18.tar.gz 2250319 BLAKE2B 7eb83a797eccff706ac6b264a7d56feae80e40f370e190e0a94f2524dd73a8bfdb35599909f90d0a2b87fc513bbcf2b00fa307a3e4d0b6718ebdc7f7fcdc6df0 SHA512 47104d18547de0871782abc4e1c6dbf1f9b2489410e5716043861bf8d973d33d2138de7d7ac568b300ca86ae9f1a0fda0fa9555ad9a5938771336ef958183546 +DIST mu-0.9.9.6.tar.gz 2172349 BLAKE2B 371db6a38e7a099e5d4f16b097c450be608390ebcd2edf02f316f308c06b102999be24c1ab3f29975a9a153ee2443e4833f404e5613123b7ed4e3d27bead9f67 SHA512 0213033aa7599a5120c38a4b9ec018357ebd63a3c4828e0f9d7af41529dc1b001db8d506408b0341e0efe9835fbd21dbf23c836920c98ae2caabcb0cdc7dac2b +DIST mu4e-manual-0.9.9.5.pdf 396250 BLAKE2B 83bcc3a5b70dc6480189a803748b530b7a3ba11187f418e45e81dc7e67501086ebccf82859600d123137901feede75270dbc1df9c59ce4020c4f75c2999e0a95 SHA512 ef9d36a1d9c7a397d89ce5a01072408165dc37b1cc7bb90658f35421cd0dfe28c8fa932cc602f5150c7947aa09c94a470924c98fcae3d9caa7d92fb1d47f7e7e diff --git a/net-mail/mu/mu-0.9.9.5.ebuild b/net-mail/mu/mu-0.9.9.5.ebuild deleted file mode 100644 index 4dc7ccc9b7bc..000000000000 --- a/net-mail/mu/mu-0.9.9.5.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit base elisp-common - -DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing" -HOMEPAGE="http://www.djcbsoftware.nl/code/mu/" -SRC_URI="https://mu0.googlecode.com/files/${P}.tar.gz - doc? ( https://mu0.googlecode.com/files/mu4e-manual-${PV}.pdf )" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc emacs gui" - -# net-mail/mailutils also installes /usr/bin/mu. Block it until somebody -# really wants both installed at the same time. -DEPEND=" - dev-libs/gmime:2.6 - dev-libs/xapian - dev-libs/glib:2 - gui? ( - x11-libs/gtk+:3 - net-libs/webkit-gtk:3 ) - emacs? ( >=virtual/emacs-23 ) - !net-mail/mailutils" -RDEPEND="${DEPEND}" - -SITEFILE="70mu-gentoo.el" - -src_unpack() { - unpack ${P}.tar.gz - if use doc ; then - cp "${DISTDIR}"/mu4e-manual-${PV}.pdf "${S}" || die - fi -} - -src_configure() { - # Todo: Make a guile USE-flag as soon as >=guile-2 is avaiable - # Note: --disable-silent-rules is included in EAPI-5 - econf --disable-guile \ - --disable-silent-rules \ - $(use_enable gui webkit) \ - $(use_enable gui gtk) \ - $(use_enable emacs mu4e) -} - -src_install () { - base_src_install - # Installing the guis is not supported by upstream - if use gui; then - dobin toys/mug/mug || die - fi - dodoc AUTHORS HACKING NEWS TODO README ChangeLog INSTALL - if use doc; then - dodoc mu4e-manual-${PV}.pdf - fi - if use emacs; then - elisp-install ${PN} mu4e/*.el mu4e/*.elc - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - fi -} - -src_test () { - emake check -} - -pkg_postinst() { - if use emacs; then - einfo "To use mu4e you need to configure it in your .emacs file" - einfo "See the manual for more information:" - einfo "http://www.djcbsoftware.nl/code/mu/mu4e/Getting-started.html" - fi - - elog "If you upgrade from an older major version," - elog "then you need to rebuild your mail index." - - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/net-mail/mu/mu-0.9.9.6.ebuild b/net-mail/mu/mu-0.9.9.6.ebuild index ce5b12b4561f..39345c09b4ea 100644 --- a/net-mail/mu/mu-0.9.9.6.ebuild +++ b/net-mail/mu/mu-0.9.9.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit autotools-utils base elisp-common DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing" HOMEPAGE="http://www.djcbsoftware.nl/code/mu/" SRC_URI="https://github.com/djcb/mu/archive/v${PV}.tar.gz -> ${P}.tar.gz - doc? ( https://mu0.googlecode.com/files/mu4e-manual-0.9.9.5.pdf )" + doc? ( https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mu0/mu4e-manual-0.9.9.5.pdf )" LICENSE="GPL-3" SLOT="0" diff --git a/net-mail/mu/mu-0.9.9.ebuild b/net-mail/mu/mu-0.9.9.ebuild deleted file mode 100644 index dd243052a7bd..000000000000 --- a/net-mail/mu/mu-0.9.9.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit base elisp-common - -DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing" -HOMEPAGE="http://www.djcbsoftware.nl/code/mu/" -SRC_URI="https://mu0.googlecode.com/files/${P}.tar.gz - doc? ( https://mu0.googlecode.com/files/mu4e-manual-${PV}.pdf )" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc emacs gui" - -# Without webkit-gtk there is no pdf-preview functionality, everything -# else works as of 0.9.8.5 -# net-mail/mailutils also installes /usr/bin/mu. Block it until somebody -# really wants both installed at the same time. -DEPEND=" - dev-libs/gmime:2.6 - dev-libs/xapian - dev-libs/glib:2 - gui? ( - x11-libs/gtk+:3 - net-libs/webkit-gtk:3 ) - emacs? ( >=virtual/emacs-23 ) - !net-mail/mailutils" -RDEPEND="${DEPEND}" - -SITEFILE="70mu-gentoo.el" - -src_unpack() { - unpack ${P}.tar.gz - if use doc ; then - cp "${DISTDIR}"/mu4e-manual-${PV}.pdf "${S}" || die - fi -} - -src_configure() { - local guiconf - if use gui; then - guiconf="--with-gui=gtk3" - else - guiconf="--with-gui=none" - fi - - # Todo: Make a guile USE-flag as soon as >=guile-2 is avaiable - # Note: --disable-silent-rules is included in EAPI-5 - econf --disable-guile \ - --disable-silent-rules \ - $(use_enable gui webkit) \ - $(use_enable emacs mu4e) \ - ${guiconf} -} - -src_install () { - base_src_install - # Installing the guis is not supported by upstream - if use gui; then - dobin toys/mug/mug || die - fi - dodoc AUTHORS HACKING NEWS TODO README ChangeLog INSTALL - if use doc; then - dodoc mu4e-manual-${PV}.pdf - fi - if use emacs; then - elisp-install ${PN} mu4e/*.el mu4e/*.elc - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - fi -} - -src_test () { - emake check -} - -pkg_postinst() { - if use emacs; then - einfo "To use mu4e you need to configure it in your .emacs file" - einfo "See the manual for more information:" - einfo "http://www.djcbsoftware.nl/code/mu/mu4e/Getting-started.html" - fi - - elog "If you upgrade from an older major version," - elog "then you need to rebuild your mail index." - - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz new file mode 100644 index 000000000000..11417c0eddc1 Binary files /dev/null and b/net-misc/Manifest.gz differ diff --git a/net-misc/nxplayer/metadata.xml b/net-misc/nxplayer/metadata.xml index 657a3a3df937..6fc125fcf509 100644 --- a/net-misc/nxplayer/metadata.xml +++ b/net-misc/nxplayer/metadata.xml @@ -1,9 +1,6 @@ - - voyageur@gentoo.org - Bernard Cafarelli - + Enterprise Client is a free easy-to-use connection interface to allow quick access to your remote host where you have installed one of the NoMachine products. It's available for those who prefer just a standalone client application, rather than the NoMachine server/client app, either because regulatory requirements dictate that thin clients must install \“client-side\” software only, or simply because a scaled-down client app is your personal preference. diff --git a/net-misc/tigervnc/Manifest b/net-misc/tigervnc/Manifest index a1dd114a37be..d6166e3e13d6 100644 --- a/net-misc/tigervnc/Manifest +++ b/net-misc/tigervnc/Manifest @@ -2,4 +2,4 @@ DIST tigervnc-1.4.2-patches-0.1.tar.bz2 7361 SHA256 21c77708d303192108ffeef02acc DIST tigervnc-1.7.1.tar.gz 1406032 SHA256 3c021ec0bee4611020c0bcbab995b0ef2f6f1a46127a52b368827f3275527ccc SHA512 babdc362b28d7af80c7efbb3a1aadf158d7f29621afe36d785748af45e515e2718cf1011359db7b39c218770b3f3ee2767e08abc58091f018c08ba9739a3e68d WHIRLPOOL 178d6b3fb7569cfb2de5dd144031b441b02a865574928d20f1589fd6f933b9276477292182cde56e948ab75d2fc0bea4d79f71bcddb33f6057970a7caa08b2cc DIST tigervnc-1.8.0.tar.gz 1433830 SHA256 9951dab0e10f8de03996ec94bec0d938da9f36d48dca8c954e8bbc95c16338f8 SHA512 c066e9781622e342667bf03fd6bbb94ed17b412b07c46764b7b73b2eb308c285e865cf1e901f7d218db05a0486fb3f8877e75da3c939ef0d020247713779327a WHIRLPOOL 4001182ec2da3551b0eb2d6ee863c225340b474dc6d32cbe4c0941e421852a10913ee80706009b1a59043b6983ac2bc42f070d1a5aa97eefe1cff3c97497b2f0 DIST tigervnc.png 4958 SHA256 e0828aeb92ccaaf93e690e9ee5e17803de1cb140d3ca79fb756fe08ebbc4492e SHA512 97f9a42e9b9f50f1c91de3b7d7991aa8965240fe4958d6da4e9f72f9baa4510ad615765f7c59d6e0a90c9d4b5fe53ad1547c766f2da45e4a6b6e29b03ced2b8b WHIRLPOOL bbf01f6702724bc4329d053bd3fbf856103371abce20f6f74aa3c2e5eed0eebcdcccd287788b1efbb8de3008cb484a8da5ccd1bd667727e4b0861f3bb550529c -DIST xorg-server-1.19.1.tar.bz2 6041792 SHA256 79ae2cf39d3f6c4a91201d8dad549d1d774b3420073c5a70d390040aa965a7fb SHA512 37d413fdd96ce6b15ae20ca5028331498586044cfc7a6ab0acb99201b04063c69bcd06867f2dc33237b244ce2870a1c5a4be3cbe4560f2461894f46f8d5dbdd7 WHIRLPOOL 9fab4118e866e11a7742ba63d7f681490d43718a329416fb742e268fdf56f348bc9f1f2b5229fbaac98ce78f41fc1e9e5aa7587ee120fcccaba752ff4bac1555 +DIST xorg-server-1.19.1.tar.bz2 6041792 BLAKE2B 1c67fe74812af15cb77d2e128c92466e11b3da7c984f585cdf58aa5f157a4b254ab2a58ce2f74e87d454ef1e0bf665f2b34a189c98b194c4c5e801b31f006d8c SHA512 37d413fdd96ce6b15ae20ca5028331498586044cfc7a6ab0acb99201b04063c69bcd06867f2dc33237b244ce2870a1c5a4be3cbe4560f2461894f46f8d5dbdd7 diff --git a/net-misc/tigervnc/tigervnc-1.8.0.ebuild b/net-misc/tigervnc/tigervnc-1.8.0.ebuild index 305e756aaf3b..167052d8bef3 100644 --- a/net-misc/tigervnc/tigervnc-1.8.0.ebuild +++ b/net-misc/tigervnc/tigervnc-1.8.0.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/TigerVNC/tigervnc/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86" IUSE="+drm gnutls nls java +opengl pam server systemd +xorgmodule" CDEPEND="virtual/jpeg:0 diff --git a/net-nds/Manifest.gz b/net-nds/Manifest.gz new file mode 100644 index 000000000000..25675f9558ff Binary files /dev/null and b/net-nds/Manifest.gz differ diff --git a/net-news/Manifest.gz b/net-news/Manifest.gz new file mode 100644 index 000000000000..cf4f6ae7567b Binary files /dev/null and b/net-news/Manifest.gz differ diff --git a/net-nntp/Manifest.gz b/net-nntp/Manifest.gz new file mode 100644 index 000000000000..08ad2e955019 Binary files /dev/null and b/net-nntp/Manifest.gz differ diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz new file mode 100644 index 000000000000..75d41611fdc8 Binary files /dev/null and b/net-p2p/Manifest.gz differ diff --git a/net-print/Manifest.gz b/net-print/Manifest.gz new file mode 100644 index 000000000000..ec4f78dafb85 Binary files /dev/null and b/net-print/Manifest.gz differ diff --git a/net-proxy/Manifest.gz b/net-proxy/Manifest.gz new file mode 100644 index 000000000000..28afa5950410 Binary files /dev/null and b/net-proxy/Manifest.gz differ diff --git a/net-voip/Manifest b/net-voip/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz new file mode 100644 index 000000000000..0883b9af32da Binary files /dev/null and b/net-vpn/Manifest.gz differ diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz new file mode 100644 index 000000000000..3d0deeea6405 Binary files /dev/null and b/net-wireless/Manifest.gz differ diff --git a/perl-core/Manifest.gz b/perl-core/Manifest.gz new file mode 100644 index 000000000000..f86853be88b3 Binary files /dev/null and b/perl-core/Manifest.gz differ diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz new file mode 100644 index 000000000000..cb21729d4040 Binary files /dev/null and b/profiles/Manifest.gz differ diff --git a/ros-meta/Manifest.gz b/ros-meta/Manifest.gz new file mode 100644 index 000000000000..62b3c119703f Binary files /dev/null and b/ros-meta/Manifest.gz differ diff --git a/sci-astronomy/Manifest.gz b/sci-astronomy/Manifest.gz new file mode 100644 index 000000000000..e8e3cdef99b8 Binary files /dev/null and b/sci-astronomy/Manifest.gz differ diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz new file mode 100644 index 000000000000..a5c696314f2d Binary files /dev/null and b/sci-biology/Manifest.gz differ diff --git a/sci-calculators/Manifest.gz b/sci-calculators/Manifest.gz new file mode 100644 index 000000000000..92ec4962039e Binary files /dev/null and b/sci-calculators/Manifest.gz differ diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz new file mode 100644 index 000000000000..efbf3ed0b05e Binary files /dev/null and b/sci-chemistry/Manifest.gz differ diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz new file mode 100644 index 000000000000..b12bc299731d Binary files /dev/null and b/sci-electronics/Manifest.gz differ diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz new file mode 100644 index 000000000000..204dae1356d7 Binary files /dev/null and b/sci-geosciences/Manifest.gz differ diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz new file mode 100644 index 000000000000..0268c9b5826e Binary files /dev/null and b/sci-libs/Manifest.gz differ diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz new file mode 100644 index 000000000000..52a6bccf7f34 Binary files /dev/null and b/sci-mathematics/Manifest.gz differ diff --git a/sci-misc/Manifest.gz b/sci-misc/Manifest.gz new file mode 100644 index 000000000000..af595f5c0676 Binary files /dev/null and b/sci-misc/Manifest.gz differ diff --git a/sci-physics/Manifest.gz b/sci-physics/Manifest.gz new file mode 100644 index 000000000000..238a81474f40 Binary files /dev/null and b/sci-physics/Manifest.gz differ diff --git a/sci-visualization/Manifest.gz b/sci-visualization/Manifest.gz new file mode 100644 index 000000000000..d1fbdb16293d Binary files /dev/null and b/sci-visualization/Manifest.gz differ diff --git a/sec-policy/Manifest.gz b/sec-policy/Manifest.gz new file mode 100644 index 000000000000..c92e5973f453 Binary files /dev/null and b/sec-policy/Manifest.gz differ diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz new file mode 100644 index 000000000000..1cffd63aae0c Binary files /dev/null and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/coreutils/coreutils-8.28-r1.ebuild b/sys-apps/coreutils/coreutils-8.28-r1.ebuild index e2dfe9ab91b3..93eeaf22318f 100644 --- a/sys-apps/coreutils/coreutils-8.28-r1.ebuild +++ b/sys-apps/coreutils/coreutils-8.28-r1.ebuild @@ -24,7 +24,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux" IUSE="acl caps gmp hostname kill multicall nls selinux static test userland_BSD vanilla xattr" LIB_DEPEND="acl? ( sys-apps/acl[static-libs] ) diff --git a/sys-apps/rkflashtool/Manifest b/sys-apps/rkflashtool/Manifest index 5357e4472dd3..92357d69cc3f 100644 --- a/sys-apps/rkflashtool/Manifest +++ b/sys-apps/rkflashtool/Manifest @@ -1,2 +1 @@ -DIST rkflashtool-5.1-src.tar.xz 10548 SHA256 b802b4bd634a614df23f45f65cda8620695282e2646fb5eacd6a69001a110ed6 SHA512 0dbe69dc7fc224e91e170d5630e770e82257121c2215c6e196b2a8450a9e22bab583b57de50acb9aaad223b9d216b731a92260638c648018c319917705983fb2 WHIRLPOOL 6b1de8a5365e55eadb21d2c96c229a2876b31ae9c4a9dade50bebb8eb4e2cc5642ce33213b150487ca546215d47d2cd062f73b958508a6569f3f85c8c396017d DIST rkflashtool-6.1-src.tar.xz 13924 SHA256 d005f6cc5653a8367e4cabdd6b736a7e6f1d4d8dbe0f2ad1e1ce878505b42dfa SHA512 d7054e61a706ed3e51539556a1441f64cb20a2dafa6f625df384cec9296bdee30714a1c98cfd69d2a656e370387a2bdb86c258fe6b1216bd9c57831ed3de8ea7 WHIRLPOOL 1693043748d70be4563f41cd225b9abea0ff35dc300c22e9d5d9dbde53e604c74bea60bdacda69eb5dae222f9c498456fc8c6ea826856c86c46cdd6e0bf15eb2 diff --git a/sys-apps/rkflashtool/rkflashtool-5.1.ebuild b/sys-apps/rkflashtool/rkflashtool-5.1.ebuild deleted file mode 100644 index 685e3259bfea..000000000000 --- a/sys-apps/rkflashtool/rkflashtool-5.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit toolchain-funcs - -DESCRIPTION="Tool for flashing Rockchip devices" -HOMEPAGE="https://sourceforge.net/projects/rkflashtool/" -SRC_URI="mirror://sourceforge/project/${PN}/${P}/${P}-src.tar.xz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -S=${WORKDIR}/${P}-src - -RDEPEND="virtual/libusb:1" -DEPEND="${RDEPEND}" - -src_prepare(){ - cp "${FILESDIR}"/${P}-missing-version.h version.h || die - sed -i -e "s/CC =/CC ?=/"\ - -e "s/CFLAGS =/CFLAGS ?=/"\ - -e "s/LDFLAGS =/LDFLAGS ?=/" Makefile || die - tc-export CC -} - -src_install(){ - dodoc README - dobin ${PN} rkcrc rkflashtool rkmisc rkpad rkparameters rkparametersblock rkunpack rkunsign -} diff --git a/sys-apps/sandbox/Manifest b/sys-apps/sandbox/Manifest index b4efad9fa3d7..00d82c8aa3a1 100644 --- a/sys-apps/sandbox/Manifest +++ b/sys-apps/sandbox/Manifest @@ -1,2 +1,2 @@ -DIST sandbox-2.10.tar.xz 417068 SHA256 019d6a2646b3a5f9b6fc3fcb6ff99332901017eb845442bec8573b9901506fa6 SHA512 178b3b8fcb54e6ff67df1c8101866739b49e4d31a66717c21ef502dd2ab609fca70f1a0c662b913e207bfc1ba6994cefdcf5c92ff32add9dd98bd9707f301305 WHIRLPOOL 5d6cffa7317cafeba02af75de9ae914d4365a62b54d3dfcc14cb272e621f2f76a60a945591ccb57dd59d6750152087cb2f21e43ded3ec181d6b42df173147192 -DIST sandbox-2.12.tar.xz 424252 SHA256 265a490a8c528237c55ad26dfd7f62336fa5727c82358fc9cfbaa2e52c47fc50 SHA512 98bd2ee8807d81e65ee0c9f11cfaf2b37da2ee4d8763c68d18c0ff6b14f3cc847ae2d3a0aa30cbe86063a2108ed4d4dcf7cc3fc4f37cb7549d266d4c1989c2a9 WHIRLPOOL 4f3089746a11616c60057165f387122b74e8d2f30a2d77db296405a2b6f401fc625645bca73092436162f5d98a88bfb2a3b42909b0eceb9a59ab810d803441b0 +DIST sandbox-2.10.tar.xz 417068 BLAKE2B 78bb5b29b520d41c582e7f7cb444ce580f9f8f05ce80795986ff8e1f84f9320e21fda0c5ae092cce8e5a3dc1c0efa48e1ce69c21107e541d2c569e6369ccb5b0 SHA512 178b3b8fcb54e6ff67df1c8101866739b49e4d31a66717c21ef502dd2ab609fca70f1a0c662b913e207bfc1ba6994cefdcf5c92ff32add9dd98bd9707f301305 +DIST sandbox-2.12.tar.xz 424252 BLAKE2B 55eb06cbc15ad9ff8b0c272b8d071591ce3533a6ff807719df79131e6c966d60c3b37d9d8e4e1d466df0992836c4594bf6927b496ecb343a71d7b0656219a6d7 SHA512 98bd2ee8807d81e65ee0c9f11cfaf2b37da2ee4d8763c68d18c0ff6b14f3cc847ae2d3a0aa30cbe86063a2108ed4d4dcf7cc3fc4f37cb7549d266d4c1989c2a9 diff --git a/sys-apps/sandbox/sandbox-2.10-r4.ebuild b/sys-apps/sandbox/sandbox-2.10-r4.ebuild index 8562d18076cc..d36170cde987 100644 --- a/sys-apps/sandbox/sandbox-2.10-r4.ebuild +++ b/sys-apps/sandbox/sandbox-2.10-r4.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~sparc-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~sparc-fbsd ~x86-fbsd" IUSE="" DEPEND="app-arch/xz-utils diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz new file mode 100644 index 000000000000..a7bbab85c9b8 Binary files /dev/null and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/yubico-piv-tool/Manifest b/sys-auth/yubico-piv-tool/Manifest index 8b94609c658e..945c3342f96b 100644 --- a/sys-auth/yubico-piv-tool/Manifest +++ b/sys-auth/yubico-piv-tool/Manifest @@ -1,2 +1 @@ -DIST yubico-piv-tool-1.4.3.tar.gz 108262 SHA256 e2e46681716cde14be84f68a8b455bde0a6bef2c1703fd043763050c4e65fe5f SHA512 86b2564fe96a8b4dbcf3f122316c4e258628c97bf6917953d93c6e0265df866c6b3ef5a6c7572177d26ef74265ef39db8e15348a08e6eb0be1e145978affd16b WHIRLPOOL 19ad5e09db318d72dca9c63af85e5b6e7a196c4fa6a591faed91702051284ede40f04d3ad7ee8eeff695a040c4cb2e5479f2620e4bcc0e3f67e2f47d58db0684 DIST yubico-piv-tool-1.4.4.tar.gz 109397 SHA256 dc6253f1812cb29c66be1f194ca2ad8c2d019b8ce6564a0308ca9cf219e0be33 SHA512 3edc341fdbeeacfbf541adc37d0bd2b1df9777ca04e13bc1825e99a151008213b816ff811e83e623f52eb1400a8146c36a5a874fc5e26a89c9398e79a0e234e1 WHIRLPOOL 61636a8807d374af09f06a589cf268e5ff9b578db0d911042ca6715f9be5fd118575badad40e5acc0556656f1ad94f58518ca1681dbc69e29f39f22fb187ba41 diff --git a/sys-auth/yubico-piv-tool/yubico-piv-tool-1.4.3.ebuild b/sys-auth/yubico-piv-tool/yubico-piv-tool-1.4.3.ebuild deleted file mode 100644 index 9d5c1a2d8804..000000000000 --- a/sys-auth/yubico-piv-tool/yubico-piv-tool-1.4.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Command line tool for the YubiKey PIV application" -SRC_URI="https://github.com/Yubico/yubico-piv-tool/archive/yubico-piv-tool-${PV}.tar.gz" -HOMEPAGE="https://developers.yubico.com/yubico-piv-tool/ https://github.com/Yubico/yubico-piv-tool" - -LICENSE="BSD-2" -SLOT="0/1" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="dev-libs/openssl:0= - sys-apps/pcsc-lite" -DEPEND="dev-util/gengetopt - sys-apps/help2man - virtual/pkgconfig - ${RDEPEND}" - -S=${WORKDIR}/${PN}-${P} - -src_prepare() { - default - eautoreconf -} diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz new file mode 100644 index 000000000000..53ae80386371 Binary files /dev/null and b/sys-block/Manifest.gz differ diff --git a/sys-boot/Manifest.gz b/sys-boot/Manifest.gz new file mode 100644 index 000000000000..6764703e9bee Binary files /dev/null and b/sys-boot/Manifest.gz differ diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz new file mode 100644 index 000000000000..a4c5f3bd7107 Binary files /dev/null and b/sys-cluster/Manifest.gz differ diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz new file mode 100644 index 000000000000..655e31de2c9e Binary files /dev/null and b/sys-devel/Manifest.gz differ diff --git a/sys-fabric/Manifest.gz b/sys-fabric/Manifest.gz new file mode 100644 index 000000000000..081c3bf7fe2a Binary files /dev/null and b/sys-fabric/Manifest.gz differ diff --git a/sys-firmware/Manifest.gz b/sys-firmware/Manifest.gz new file mode 100644 index 000000000000..7c2c887ed1fc Binary files /dev/null and b/sys-firmware/Manifest.gz differ diff --git a/sys-freebsd/Manifest.gz b/sys-freebsd/Manifest.gz new file mode 100644 index 000000000000..b2ef4f2df0f6 Binary files /dev/null and b/sys-freebsd/Manifest.gz differ diff --git a/sys-fs/Manifest.gz b/sys-fs/Manifest.gz new file mode 100644 index 000000000000..ab5c83a5c43b Binary files /dev/null and b/sys-fs/Manifest.gz differ diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz new file mode 100644 index 000000000000..5482deb99aaf Binary files /dev/null and b/sys-kernel/Manifest.gz differ diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz new file mode 100644 index 000000000000..fda256933688 Binary files /dev/null and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/argp-standalone/Manifest b/sys-libs/argp-standalone/Manifest index ad37c1e0e29c..ba5599b7e5b8 100644 --- a/sys-libs/argp-standalone/Manifest +++ b/sys-libs/argp-standalone/Manifest @@ -1 +1 @@ -DIST argp-standalone-1.3.tar.gz 130255 SHA256 dec79694da1319acd2238ce95df57f3680fea2482096e483323fddf3d818d8be SHA512 58c3feb8852b90248fff39e49b5019bd0dcf646790c3eaf70c3262eb81dda31a61dc0a45963c7b4a010e80fc14b37288dcb3b3ef48d02f2d33dd72c1c62e62d9 WHIRLPOOL aedcf1ae31ea9484ca10fe028490624b5e17ae2b484f6e31effdc5119aea6affb6f61140bd10ac28c5395f0374df0c46a1d35ed6b7cdea7ce02fd7a4781db456 +DIST argp-standalone-1.3.tar.gz 130255 BLAKE2B 0848a0e7a98cfa09de52fa152eb9a793a9bf25c1edfc7401851ef134b62c051ad6ef2134d6f528e167046be582be23f311e74614c5511d659060addc14de6b2f SHA512 58c3feb8852b90248fff39e49b5019bd0dcf646790c3eaf70c3262eb81dda31a61dc0a45963c7b4a010e80fc14b37288dcb3b3ef48d02f2d33dd72c1c62e62d9 diff --git a/sys-libs/argp-standalone/argp-standalone-1.3-r2.ebuild b/sys-libs/argp-standalone/argp-standalone-1.3-r2.ebuild index 6e23f64515a6..e58529ad3df3 100644 --- a/sys-libs/argp-standalone/argp-standalone-1.3-r2.ebuild +++ b/sys-libs/argp-standalone/argp-standalone-1.3-r2.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Standalone argp library for use with uclibc" HOMEPAGE="http://www.lysator.liu.se/~nisse/misc/" SRC_URI="http://www.lysator.liu.se/~nisse/misc/argp-standalone-1.3.tar.gz" -LICENSE="public-domain" +LICENSE="public-domain GPL-2 GPL-3 XC" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~m68k ~mips ~ppc ~s390 ~sh x86" IUSE="static-libs" diff --git a/sys-power/Manifest.gz b/sys-power/Manifest.gz new file mode 100644 index 000000000000..32dca0b6ab7a Binary files /dev/null and b/sys-power/Manifest.gz differ diff --git a/sys-process/Manifest.gz b/sys-process/Manifest.gz new file mode 100644 index 000000000000..ecddab626ffc Binary files /dev/null and b/sys-process/Manifest.gz differ diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz new file mode 100644 index 000000000000..71ac691f3211 Binary files /dev/null and b/virtual/Manifest.gz differ diff --git a/www-apache/Manifest.gz b/www-apache/Manifest.gz new file mode 100644 index 000000000000..a93e03f38ba4 Binary files /dev/null and b/www-apache/Manifest.gz differ diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz new file mode 100644 index 000000000000..fd8dc14e25d8 Binary files /dev/null and b/www-apps/Manifest.gz differ diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz new file mode 100644 index 000000000000..51a3678cc9d6 Binary files /dev/null and b/www-client/Manifest.gz differ diff --git a/www-misc/Manifest.gz b/www-misc/Manifest.gz new file mode 100644 index 000000000000..7c131986f6c2 Binary files /dev/null and b/www-misc/Manifest.gz differ diff --git a/www-plugins/Manifest b/www-plugins/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz new file mode 100644 index 000000000000..4d9fd4820674 Binary files /dev/null and b/www-servers/Manifest.gz differ diff --git a/x11-apps/Manifest.gz b/x11-apps/Manifest.gz new file mode 100644 index 000000000000..9bfdb0d18354 Binary files /dev/null and b/x11-apps/Manifest.gz differ diff --git a/x11-base/Manifest b/x11-base/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/x11-drivers/Manifest.gz b/x11-drivers/Manifest.gz new file mode 100644 index 000000000000..a4b8c7661fc8 Binary files /dev/null and b/x11-drivers/Manifest.gz differ diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz new file mode 100644 index 000000000000..402ebbe148b9 Binary files /dev/null and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/qscintilla/Manifest b/x11-libs/qscintilla/Manifest index 4138c7636c89..e59930c4912e 100644 --- a/x11-libs/qscintilla/Manifest +++ b/x11-libs/qscintilla/Manifest @@ -1,3 +1,3 @@ -DIST QScintilla_gpl-2.10.1.tar.gz 2663446 SHA256 97f98a9d91f908db6ce37fecc6d241d955b388a1c487173b60726cba9a3dfa64 SHA512 ea9b95ca371a8af9262493ab59ecaef77e1697ba21d1d594aab39e836917884fd829aa4f6c4e72cce60b0d3f40eac654157cc507d027945f0034881855123ccc WHIRLPOOL 96261f2c2c38458891afad057716bdfee05f74e9f15a8b8ce2eab4445b8c56256cbcb33326631ac1f3624e2c998d490f5e057c348b3a3eb44a9260c938beda61 -DIST QScintilla_gpl-2.9.2.tar.gz 2491222 SHA256 f2c8ccdc9d3dbb90764ceed53ea096da9bb13b6260da1324e6ab4ecea29e620a SHA512 28f88111d7eb6a016a4b87f04d2b7f5d6481b521a3361a526b3b45a56240f5c8de10310e819234fcba773c6df73bf398ae2dce622976a8e760f506be1defb7c8 WHIRLPOOL a04420c66fd417e5304c92a1ee3c1998f6849bccb9088dae96ed48c06cab0a9b1c012f073aafb1e05aaee46564de9ac89ae07145f3ded35cf47beac78065650a +DIST QScintilla_gpl-2.10.1.tar.gz 2663446 BLAKE2B 720ce990b4e3dd65d47cd26b473bffc07240d76b2c10d393cba41331c6f160472d87b9b22985fd45b5b8064d5358b3b25f0decfe8759542a9c987381249bca42 SHA512 ea9b95ca371a8af9262493ab59ecaef77e1697ba21d1d594aab39e836917884fd829aa4f6c4e72cce60b0d3f40eac654157cc507d027945f0034881855123ccc +DIST QScintilla_gpl-2.10.2.tar.gz 2665138 BLAKE2B 1c6349ea717997681e678cdfa6cc590a6a1cfbe652f2dd52d57fefff71229251c46cd4554b546d2e272deb7c3f970c44f657966ad08e45279813215a775c637d SHA512 755f486d62275acb5908262c4a50ad31dd9d8fca0501eb1eeec1aa2181872f8d16179b42f4213b207fd6b46fd8a72d25af7ce6c5cc10eabb363a92c0600ca972 DIST QScintilla_gpl-2.9.4.tar.gz 2557199 SHA256 8b3a23023e9f0573caed6f9cee86f898d87b768ee15b8c211a423783a4cfa4e6 SHA512 5a2eebbe523a0f2f1c7bc63ce5ee9cb8793a597d00eea5b638f18f90d6e798e92c281be23ee5e7072d5afced9e1fccb6ae51526a3623d373d57c3db64d026b16 WHIRLPOOL 68aacdcd0fc7102494ccae1f0ea3e222845bdd3f9bef603d89fe50d50dba6ac77471228a84c1c281a46ccf74bdb6902aa3bb21f89388ec5408bdde5876cf8655 diff --git a/x11-libs/qscintilla/qscintilla-2.10.2.ebuild b/x11-libs/qscintilla/qscintilla-2.10.2.ebuild new file mode 100644 index 000000000000..eb99746332b8 --- /dev/null +++ b/x11-libs/qscintilla/qscintilla-2.10.2.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic multibuild qmake-utils + +MY_P=QScintilla_gpl-${PV/_pre/.dev} + +DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class" +HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro" +SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0/13" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="designer doc +qt4 qt5" + +REQUIRED_USE="|| ( qt4 qt5 )" + +DEPEND=" + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + designer? ( dev-qt/designer:4 ) + ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtwidgets:5 + designer? ( dev-qt/designer:5 ) + ) +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + default + + # Sub-slot sanity check + local subslot=${SLOT#*/} + local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' "${S}"/Qt4Qt5/qscintilla.pro) + local major=${version%%.*} + if [[ ${subslot} != ${major} ]]; then + eerror + eerror "Ebuild sub-slot (${subslot}) does not match QScintilla major version (${major})" + eerror "Please update SLOT variable as follows:" + eerror " SLOT=\"${SLOT%%/*}/${major}\"" + eerror + die "sub-slot sanity check failed" + fi + + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) + multibuild_copy_sources +} + +qsci_run_in() { + pushd "$1" >/dev/null || die + shift || die + "$@" || die + popd >/dev/null || die +} + +src_configure() { + use qt4 && append-cxxflags -std=gnu++0x + + if use designer; then + # prevent building against system version (bug 466120) + append-cxxflags -I../Qt4Qt5 + append-ldflags -L../Qt4Qt5 + fi + + qsci_configure() { + qsci_run_in Qt4Qt5 eqmake${MULTIBUILD_VARIANT#qt} + use designer && qsci_run_in designer-Qt4Qt5 eqmake${MULTIBUILD_VARIANT#qt} + } + multibuild_foreach_variant run_in_build_dir qsci_configure +} + +src_compile() { + qsci_compile() { + qsci_run_in Qt4Qt5 emake + use designer && qsci_run_in designer-Qt4Qt5 emake + } + multibuild_foreach_variant run_in_build_dir qsci_compile +} + +src_install() { + qsci_install() { + qsci_run_in Qt4Qt5 emake INSTALL_ROOT="${D}" install + use designer && qsci_run_in designer-Qt4Qt5 emake INSTALL_ROOT="${D}" install + } + multibuild_foreach_variant run_in_build_dir qsci_install + + DOCS=( ChangeLog NEWS ) + use doc && HTML_DOCS=( doc/html-Qt4Qt5/. ) + einstalldocs +} diff --git a/x11-libs/qscintilla/qscintilla-2.9.2-r1.ebuild b/x11-libs/qscintilla/qscintilla-2.9.2-r1.ebuild deleted file mode 100644 index c6c36a38c427..000000000000 --- a/x11-libs/qscintilla/qscintilla-2.9.2-r1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic qmake-utils - -MY_P=QScintilla_gpl-${PV} - -DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class" -HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro" -SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0/12" -KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="designer doc +qt4" - -DEPEND=" - dev-qt/qtcore:4 - dev-qt/qtgui:4 - designer? ( dev-qt/designer:4 ) -" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - default - - # Sub-slot sanity check - local subslot=${SLOT#*/} - local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' "${S}"/Qt4Qt5/qscintilla.pro) - local major=${version%%.*} - if [[ ${subslot} != ${major} ]]; then - eerror - eerror "Ebuild sub-slot (${subslot}) does not match QScintilla major version (${major})" - eerror "Please update SLOT variable as follows:" - eerror " SLOT=\"${SLOT%%/*}/${major}\"" - eerror - die "sub-slot sanity check failed" - fi -} - -qsci_run_in() { - pushd "$1" >/dev/null || die - shift || die - "$@" || die - popd >/dev/null || die -} - -src_configure() { - qsci_run_in Qt4Qt5 eqmake4 - - if use designer; then - # prevent building against system version (bug 466120) - append-cxxflags -I../Qt4Qt5 - append-ldflags -L../Qt4Qt5 - - qsci_run_in designer-Qt4Qt5 eqmake4 - fi -} - -src_compile() { - qsci_run_in Qt4Qt5 emake - - use designer && qsci_run_in designer-Qt4Qt5 emake -} - -src_install() { - qsci_run_in Qt4Qt5 emake INSTALL_ROOT="${D}" install - - use designer && qsci_run_in designer-Qt4Qt5 emake INSTALL_ROOT="${D}" install - - dodoc ChangeLog NEWS - - if use doc; then - docinto html - dodoc -r doc/html-Qt4Qt5/* - fi -} diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz new file mode 100644 index 000000000000..433238239373 Binary files /dev/null and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/tint2/Manifest b/x11-misc/tint2/Manifest index 39629e4168af..bc8c2ac7d6af 100644 --- a/x11-misc/tint2/Manifest +++ b/x11-misc/tint2/Manifest @@ -1,2 +1,3 @@ DIST tint2-0.12.12.tar.gz 469724 SHA256 e4c6ffb67eb1242f19d94037b072602bc751ac71ca61352dea3465168e643450 SHA512 10a1f42df6a66f6e092d69cd0ea3d900dcef57b06391206d950a1d7f576a880829bb44d00828a030d3172184db238a22f205169c12cc32cf42c6321d61929a8c WHIRLPOOL 197b92a93eb0368708824159bde41bd81143d0423a1f9ab83b2af4a11b3e3055a40481b9746f095e10cca84f7d772237a92d06bf267761021be308c0b3b5d553 DIST tint2-0.14.6.tar.gz 466533 SHA256 1770e2a37dc8066a33af7385ba1bbe7405101bced8e9fc7ee95d48cef53cd351 SHA512 eb1505bef932aa0cd0291dc762d3c9cbe760e3fea0684fc604aa3cae3f5ddf63e5b791db745eb29384e4732e6de09a01084f3ce2a92931b431cdf69a59b1f6da WHIRLPOOL ae9a00d866f868842600355fd463556b55405d13c2cf6344f4a72b541b445cdb22e6d576ae202452f5502caba17ddba33d008b5d4f763f53c72fb7d87afa79c8 +DIST tint2-15.3.tar.gz 500301 BLAKE2B b8b405f1c56c3de41f672dc02acef893b0650fadca9a4823c7b249661e8675e01c92c9c1588d32c2836596f34c4dbc1e5d2608cff3c75590d7eeac9e925eb874 SHA512 41ae8f8e3aac6fe55539c531889ec2883534072ad398f0693e4bfd39c80dd4c64d635a36e063f741fe89fd461f66f92adf6acdde553e0f8b169992d94dc0e344 diff --git a/x11-misc/tint2/tint2-15.3.ebuild b/x11-misc/tint2/tint2-15.3.ebuild new file mode 100644 index 000000000000..c34f97885496 --- /dev/null +++ b/x11-misc/tint2/tint2-15.3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils gnome2-utils vcs-snapshot + +DESCRIPTION="tint2 is a lightweight panel/taskbar for Linux." +HOMEPAGE="https://gitlab.com/o9000/tint2" +SRC_URI="https://gitlab.com/o9000/${PN}/repository/archive.tar.gz?ref=v${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="battery svg startup-notification tint2conf" + +DEPEND=" + dev-libs/glib:2 + svg? ( gnome-base/librsvg:2 ) + >=media-libs/imlib2-1.4.2[X,png] + x11-libs/cairo[X] + x11-libs/pango + tint2conf? ( x11-libs/gtk+:2 ) + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXinerama + >=x11-libs/libXrandr-1.3 + x11-libs/libXrender + startup-notification? ( x11-libs/startup-notification ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" + -DENABLE_BATTERY="$(usex battery)" + -DENABLE_TINT2CONF="$(usex tint2conf)" + -DENABLE_SN="$(usex startup-notification)" + -DENABLE_RSVG="$(usex svg)" + ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz new file mode 100644 index 000000000000..52b799ab55db Binary files /dev/null and b/x11-plugins/Manifest.gz differ diff --git a/x11-plugins/cputnik/Manifest b/x11-plugins/cputnik/Manifest index fb909c83c0fc..851a98bcf9e5 100644 --- a/x11-plugins/cputnik/Manifest +++ b/x11-plugins/cputnik/Manifest @@ -1 +1 @@ -DIST cputnik-0.2.0.tar.gz 17850 SHA256 b8a11fbfc5b1ce60cf8b50ad94e395aedf31c81d43ea1a0f277c4cac5c8b61df SHA512 829d9d63f82a2d41c0160be575b3fb7840a5c295c6dd16702240a6aa104e557bff83936c46243e850edf918b41ddc22fd123dab7f5ffd6492302d60c374df55f WHIRLPOOL a30221c4a1d69aac95510acbb8ccae905d9e0729150f8ce7fb7e61c0761158a1d8ef8680a1b8236235d9ca7e379ceca4ca8d45c7b75e9adbaca847ef73d951d4 +DIST cputnik-0.2.0.tar.gz 17850 BLAKE2B 90824218a349d9b6cdf592cafe8dd29674f975a190a19a3dd6b941383d47f4fc492af339cbbb88240499363a1048b2564855d5a17caeaf53437fe34bf0d55ee1 SHA512 829d9d63f82a2d41c0160be575b3fb7840a5c295c6dd16702240a6aa104e557bff83936c46243e850edf918b41ddc22fd123dab7f5ffd6492302d60c374df55f diff --git a/x11-plugins/cputnik/cputnik-0.2.0.ebuild b/x11-plugins/cputnik/cputnik-0.2.0.ebuild index 5ec972c89f15..4f3cb860871d 100644 --- a/x11-plugins/cputnik/cputnik-0.2.0.ebuild +++ b/x11-plugins/cputnik/cputnik-0.2.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils toolchain-funcs DESCRIPTION="cputnik is a simple cpu monitor dockapp" -HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/273" -SRC_URI="http://dockapps.windowmaker.org/download.php/id/576/${P}.tar.gz" +HOMEPAGE="http://www.dockapps.net/cputnik" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmCalClock/Manifest b/x11-plugins/wmCalClock/Manifest index 8475ee93fafe..9ebe287e3671 100644 --- a/x11-plugins/wmCalClock/Manifest +++ b/x11-plugins/wmCalClock/Manifest @@ -1 +1 @@ -DIST wmCalClock-1.25.tar.gz 71574 SHA256 4b42b55bb7c1d7c58b5ee1f0058c683d3e4f3e3380d3a69c54a50b983c7c1b3f SHA512 499f91856e79fee4fb776b3fa8cbcc70cae2e28a1e9ea5d2c1dbf5a7684cff4be4e5e9362d672aa7cf459d0bfe14f68ec51a10376558a9635d77e5e6ce7f149f WHIRLPOOL 40229d12f861e164aacb8625326fb671a4bd35a77c4138b99e30200c5763fda1ba01e60806ddf50fdc7adc158992ad6a4dc65aaa8e0fa3aef91f4c8db81c4fae +DIST wmCalClock-1.25.tar.gz 71574 BLAKE2B b1e308d99ee1b66fa9bb7cfcf0c83ae5e637ff7f17a2d07bb43a57d941c654d53f37ee9941e0fafedd617d64cde8c2880cfcbf664c03e109e80fa523ea9a6e09 SHA512 499f91856e79fee4fb776b3fa8cbcc70cae2e28a1e9ea5d2c1dbf5a7684cff4be4e5e9362d672aa7cf459d0bfe14f68ec51a10376558a9635d77e5e6ce7f149f diff --git a/x11-plugins/wmCalClock/wmCalClock-1.25-r2.ebuild b/x11-plugins/wmCalClock/wmCalClock-1.25-r2.ebuild index 14619bf27d90..92b31d7ada04 100644 --- a/x11-plugins/wmCalClock/wmCalClock-1.25-r2.ebuild +++ b/x11-plugins/wmCalClock/wmCalClock-1.25-r2.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils multilib toolchain-funcs DESCRIPTION="WMaker DockApp: A Calendar clock with antialiased text" -SRC_URI="http://dockapps.windowmaker.org/download.php/id/16/${P}.tar.gz" -HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/9" +HOMEPAGE="http://www.dockapps.net/wmcalclock" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" RDEPEND="x11-libs/libX11 x11-libs/libXext diff --git a/x11-plugins/wmSMPmon/wmSMPmon-3.1-r1.ebuild b/x11-plugins/wmSMPmon/wmSMPmon-3.1-r1.ebuild index d411e8713759..75c97998bf53 100644 --- a/x11-plugins/wmSMPmon/wmSMPmon-3.1-r1.ebuild +++ b/x11-plugins/wmSMPmon/wmSMPmon-3.1-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils multilib toolchain-funcs DESCRIPTION="SMP system monitor dockapp" -HOMEPAGE="http://lancre.ribbrock.org/binabit/wmSMPmon/" -SRC_URI="http://lancre.ribbrock.org/binabit/wmSMPmon/src/${P}.tar.gz" +HOMEPAGE="http://www.dockapps.net/wmsmpmon" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmbio/Manifest b/x11-plugins/wmbio/Manifest index 7c02ab90ff24..d4baad65ab19 100644 --- a/x11-plugins/wmbio/Manifest +++ b/x11-plugins/wmbio/Manifest @@ -1 +1 @@ -DIST wmbio-1.02.tar.gz 21799 SHA256 165483b121f2af7ce2f09a62f0f9fbe02118960c281fe5f4eacad62de39a0dbf SHA512 bebe8de364f782c38164fdd3910c3f63ff8313fa46fce1215218a4d14b9be0c793ee1d234fdb694798c1ab49b17eca90957d22c076920bf50ecf24b563a07d5b WHIRLPOOL 9f2260817f93359e5982b91b740c1b3d2ee8b79480967c761b204676ecbe149029d70e2ca9a08dc3ac0b3b1946db61153f7ff55ae3d15fb1797fb60069747bda +DIST wmbio-1.02.tar.gz 21799 BLAKE2B f3736ad83e4441f027b8091d398f7f819de79d29d9d48dff0f1ab3c159e1da2fc367f8faa92addedb770d7137e7a93f8e91a29935264a6505d16c9598daad64b SHA512 bebe8de364f782c38164fdd3910c3f63ff8313fa46fce1215218a4d14b9be0c793ee1d234fdb694798c1ab49b17eca90957d22c076920bf50ecf24b563a07d5b diff --git a/x11-plugins/wmbio/wmbio-1.02.ebuild b/x11-plugins/wmbio/wmbio-1.02.ebuild index d88c092cbef8..7c9d8fdf8607 100644 --- a/x11-plugins/wmbio/wmbio-1.02.ebuild +++ b/x11-plugins/wmbio/wmbio-1.02.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=2 inherit eutils DESCRIPTION="A Window Maker applet that shows your biorhythm" -SRC_URI="http://wmbio.sourceforge.net/${P}.tar.gz" HOMEPAGE="http://wmbio.sourceforge.net/" +SRC_URI="mirror://sourceforge/wmbio/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmitime/Manifest b/x11-plugins/wmitime/Manifest index 1ac993ad12a9..d85ab49efb4f 100644 --- a/x11-plugins/wmitime/Manifest +++ b/x11-plugins/wmitime/Manifest @@ -1,3 +1 @@ -DIST wmitime-0.3.tar.gz 21442 SHA256 fcec441bac183ac2fbbbf9d577c2eaaf9b9e0292a6041256e5a4286a76cddc61 SHA512 69506d7619008bdc169f64326cb185a714055d4f030cd583f39144379cb35ed07959e1a09b3a4da33483f337ed8afb4761f34b6d6a5a28a06eff98a9bf14efc7 WHIRLPOOL 4d86a7219c4efdbcb39d7860505661693c256335c2742df98a84b717053417575dee1a318d8fd5f59a66953848d02bebe4e7bf36d610c027c32255528ebc0714 -DIST wmitime-0.4.tar.gz 21092 SHA256 aa4557833d2661d841befc0d3c0f940195af11c7a96802647907f5fe46a69846 SHA512 ae0d3d5942ec5258e69298874563c9faafbca63f60f6f57f1859bb58094fb6c64255bbf231b00208c58cb103229a9be8ea2ba60259cb5adb33105ea3a9c570ec WHIRLPOOL 4bf88a20512b294f46caa267a081a58dd70f33801ff926e5b44a9c3a9804e77c6a4936f557974e31ed9cd633feabef3c30f0ed1a9fd6be8c59ad554cd37bc66b DIST wmitime-0.5.tar.gz 15099 SHA256 cd71975e2bb7a65d2ff9d54afc4ee6fb82140ddf4edcb77366ee1de6d08fa7e0 SHA512 ae7d36eaf92e1a5f7481fc92685b87c2ee1092e73ed85450686b0c22e3502cd2ff82787a24bf396bf346d6e3bdb3950306fd237ea750c4ada87f0b56d3b23cab WHIRLPOOL 99e30ef24a15ba779868bace14d73873d2e043d49e0a340c2112abcdffeedd9e3e66d0a641bdd7c5b7647a427b327bda8bf4cf68ae2063d0ed8ca92f4c52db25 diff --git a/x11-plugins/wmitime/files/makefile.diff b/x11-plugins/wmitime/files/makefile.diff deleted file mode 100644 index 343c247a3ed5..000000000000 --- a/x11-plugins/wmitime/files/makefile.diff +++ /dev/null @@ -1,26 +0,0 @@ -diff -urN wmitime/wmitime/Makefile wmitime-modified/wmitime/Makefile ---- wmitime/wmitime/Makefile 1999-03-28 21:51:39.000000000 -0600 -+++ wmitime-modified/wmitime/Makefile 2002-10-04 10:35:16.000000000 -0500 -@@ -1,7 +1,6 @@ --#LANG = fr - LIBDIR = -L/usr/X11R6/lib - LIBS = -lXpm -lXext -lX11 -lm --FLAGS = -O2 -+FLAGS = $(CFLAGS) - OBJS = wmitime.o \ - ../wmgeneral/wmgeneral.o \ - ../wmgeneral/misc.o \ -@@ -9,11 +8,10 @@ - - - .c.o: -- cc -I/usr/X11R6/share/include $(FLAGS) -D$(LANG) -c -Wall $< -o $*.o -+ gcc -I/usr/X11R6/share/include $(FLAGS) -c -Wall $< -o $*.o - - wmtime: $(OBJS) -- cc $(FLAGS) -D$(LANG) -o wmitime $^ -lXext $(LIBDIR) $(LIBS) -- -+ gcc $(FLAGS) $(LDFLAGS) -o wmitime $^ -lXext $(LIBDIR) $(LIBS) - all:: wmtime - - clean:: diff --git a/x11-plugins/wmitime/wmitime-0.3.ebuild b/x11-plugins/wmitime/wmitime-0.3.ebuild deleted file mode 100644 index 667e83a2c0e6..000000000000 --- a/x11-plugins/wmitime/wmitime-0.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -S=${WORKDIR}/${PN} -IUSE="" -DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time" -HOMEPAGE="http://www.neotokyo.org/illusion/" -SRC_URI="http://www.neotokyo.org/illusion/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 sparc x86" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xextproto" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/makefile.diff -} - -src_compile() { - cd "${S}"/wmitime - make || die "make failed" -} - -src_install() { - cd "${S}"/wmitime - dobin wmitime - - cd "${S}" - dodoc BUGS CHANGES README -} diff --git a/x11-plugins/wmitime/wmitime-0.4.ebuild b/x11-plugins/wmitime/wmitime-0.4.ebuild deleted file mode 100644 index c3c33f2fb3ec..000000000000 --- a/x11-plugins/wmitime/wmitime-0.4.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit toolchain-funcs - -DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time" -HOMEPAGE="http://www.dockapps.net/wmitime" -SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/dockapps - -src_compile() { - emake CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - - dodoc BUGS CHANGES README -} diff --git a/x11-plugins/wmlife/Manifest b/x11-plugins/wmlife/Manifest index def9f1ad9a83..feb4fad36561 100644 --- a/x11-plugins/wmlife/Manifest +++ b/x11-plugins/wmlife/Manifest @@ -1 +1 @@ -DIST wmlife-1.0.1.tar.gz 92142 SHA256 4db33af31f661e1057d809413f679860bfb6e1d03d064f89792e84d1054ef8a1 SHA512 07cf6428e4d103e203b2e228e35bea13fe580de674d0ea61ab227e5e9bbc406495dbe0f2b7d6647b5d48930cc2d4c3fc097da115995619fdf25a7367b4fd9e84 WHIRLPOOL 60ce082fc2da0a413986ff553ba01f16cc78d8b807fbdc2e41d99292ecfa51bdd32eb9e8c94337bae85622fc541f339d781ce0b6d20145c5c89cb3ff100e1133 +DIST wmlife-1.0.1.tar.gz 92142 BLAKE2B 8f5415ef2cc30e1ac58bb3c93aa764290ef28da8d2919cfb15c644070e0cfa8f3bd5e3bdef0f8ab06f01f40ab62af2611242fe58c95a492d85ab018f387fbe77 SHA512 07cf6428e4d103e203b2e228e35bea13fe580de674d0ea61ab227e5e9bbc406495dbe0f2b7d6647b5d48930cc2d4c3fc097da115995619fdf25a7367b4fd9e84 diff --git a/x11-plugins/wmlife/wmlife-1.0.1.ebuild b/x11-plugins/wmlife/wmlife-1.0.1.ebuild index a2523343e623..e5eb92e15089 100644 --- a/x11-plugins/wmlife/wmlife-1.0.1.ebuild +++ b/x11-plugins/wmlife/wmlife-1.0.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit autotools eutils DESCRIPTION="dockapp running Conway's Game of Life (and program launcher)" -HOMEPAGE="http://www.swanson.ukfsn.org/#wmlife" -SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.improbability.net/#wmlife" +SRC_URI="http://www.improbability.net/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmlongrun/Manifest b/x11-plugins/wmlongrun/Manifest index 596f48b62a7e..69b3f24d7c73 100644 --- a/x11-plugins/wmlongrun/Manifest +++ b/x11-plugins/wmlongrun/Manifest @@ -1,3 +1 @@ -DIST wmlongrun-0.2.0.tar.gz 74725 SHA256 b618d863673ca44ee26d2b96b401a66b9552e9f72566628c3e05278ab7da5837 SHA512 736b6e3c4532bf4b4be04a5ec27a665d1ab86ca301059e37af1fc70b611119e367137b8018b8b395b98a417fae9410ea3504399ebe9fb3d7fcea4a214a0e16f8 WHIRLPOOL 1bffffbbdd52758ae6fdc2824919d3ca4ea6062c7fff9115ec84bb2cbe7d98a0d7afc1203dfd9f7a8d097d8f8ac8e39e4f7b4ee32bbcbe9f0b45c3681538b7ae -DIST wmlongrun-0.3.0pre1.tar.gz 75257 SHA256 f6161344878ff668bc558379f67c24f468effb7be6e6310f8fd3f81834ecea48 SHA512 34d8b68b75cebb3b67a9271f565c195e89ce23d3770958c241daa6685b64715e40b1e8f86e91350e7ee613eb4075d849fee1ccf91755ed0cd20c4e451d7a999f WHIRLPOOL d08fb1c47851f6f38bc8c389c79f44ad7860b88b8d88a841910ac844501d7a7fdb3a73e3356c2780b77d0dfcc36d88a85414f6038de4bdf5fb4211a3cb2af750 DIST wmlongrun-0.3.1.tar.gz 147511 SHA256 9e10cb13ebbf9dab61fc6929e8631669106c4edbbbf116f2f4b9eeb2a235ca52 SHA512 8bbd6b50ef566f5a7e1cc5f3f183ba74c43fa39accdb5c740e5a6f00a62c1f1c2298053705a24f2f6c8adabd99465be85d927fb9dd45899a65a5efa936fc2f56 WHIRLPOOL 6d82dd4f946c5cc5d660ab0f15605b818384fafe8d337b6a2d71c22d570a4bf756c52695bcb9d9a6574e3c953be0ffe7bb7930b229a68d7d2bdb350f43e8100a diff --git a/x11-plugins/wmlongrun/wmlongrun-0.2.0.ebuild b/x11-plugins/wmlongrun/wmlongrun-0.2.0.ebuild deleted file mode 100644 index 5a9b02edb6df..000000000000 --- a/x11-plugins/wmlongrun/wmlongrun-0.2.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="A dockapp to monitor LongRun on a Transmeta Crusoe processor" -HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/38" -SRC_URI="mirror://gentoo/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xextproto" - -# Since this will only work with a Crusoe processor, it's safe to assume that -# the functionality is only available on x86. -KEYWORDS="x86 -*" - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README AUTHORS TODO MAKEDEV-cpuid-msr -} diff --git a/x11-plugins/wmlongrun/wmlongrun-0.3.0_pre1.ebuild b/x11-plugins/wmlongrun/wmlongrun-0.3.0_pre1.ebuild deleted file mode 100644 index dd57f4e8aab5..000000000000 --- a/x11-plugins/wmlongrun/wmlongrun-0.3.0_pre1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="A dockapp to monitor LongRun on a Transmeta Crusoe processor" -HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/38" -SRC_URI="mirror://gentoo/${P/_/}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 -*" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xextproto" - -S=${WORKDIR}/${P/_/} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc AUTHORS ChangeLog MAKEDEV* NEWS README TODO -} diff --git a/x11-plugins/wmpop3/Manifest b/x11-plugins/wmpop3/Manifest index 97af64738c26..b3154b6138e3 100644 --- a/x11-plugins/wmpop3/Manifest +++ b/x11-plugins/wmpop3/Manifest @@ -1 +1 @@ -DIST WMPop3-0.5.6a.tar.gz 23532 SHA256 98bdaa3ec253e94f4460672ea37b277d70157a6e1d6236df135346175f07b645 SHA512 127dfd3d4dec8a58c991a9bc0d2d1d1c0e9c0ef36af9b2894283bbda129db9b3464c43aa053152f9c0d25eee31b94ffec329784ffa256ce04cb233b809791c2f WHIRLPOOL 813395f8242c95d6f9c3e7d4e0bf3a966dae802954f3c3b264980f590244fa79dbf4506efdd0e55fe7ddff88b10f045f923851aeadea7236d6246a6f322197cd +DIST WMPop3-0.5.6a.tar.gz 23532 BLAKE2B faef591c9280cb7e37a5071cd2226b84bfb7a49d8b4639085d5b6a44bac8bb3763ca51bd1923d47b8d971010f9b8a7d5d48c6f9a6c76fd3db5cbc00333edc63d SHA512 127dfd3d4dec8a58c991a9bc0d2d1d1c0e9c0ef36af9b2894283bbda129db9b3464c43aa053152f9c0d25eee31b94ffec329784ffa256ce04cb233b809791c2f diff --git a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild index 415c09b92980..5e1cfb0329ef 100644 --- a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild +++ b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild @@ -5,8 +5,8 @@ EAPI=6 inherit eutils toolchain-funcs DESCRIPTION="dockapp for checking pop3 accounts" -HOMEPAGE="http://www.cs.mun.ca/~scotth/" -SRC_URI="http://www.cs.mun.ca/~scotth/download/${P/wmpop3/WMPop3}.tar.gz" +HOMEPAGE="http://www.dockapps.net/wmpop3" +SRC_URI="http://www.dockapps.net/download/${P/wmpop3/WMPop3}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmpop3/wmpop3-0.5.6a.ebuild b/x11-plugins/wmpop3/wmpop3-0.5.6a.ebuild deleted file mode 100644 index f134ac7bacfb..000000000000 --- a/x11-plugins/wmpop3/wmpop3-0.5.6a.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="dockapp for checking pop3 accounts" -HOMEPAGE="http://www.cs.mun.ca/~scotth/" -SRC_URI="http://www.cs.mun.ca/~scotth/download/${P/wmpop3/WMPop3}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~sparc x86" -IUSE="" -DEPEND="x11-wm/windowmaker - >=sys-apps/sed-4 - x11-libs/libXpm" - -src_unpack() { - unpack ${A} - cd "${S}"/wmpop3 - sed -i -e "s:-O2:${CFLAGS}:" Makefile - sed -i -e "s:-o wmpop3:${LDFLAGS} -o wmpop3:" Makefile -} - -src_compile() { - emake -C wmpop3 || die -} - -src_install() { - dobin wmpop3/wmpop3 - dodoc CHANGE_LOG README -} diff --git a/x11-plugins/wmtop/Manifest b/x11-plugins/wmtop/Manifest index 1e21743aa13c..5c5559253db5 100644 --- a/x11-plugins/wmtop/Manifest +++ b/x11-plugins/wmtop/Manifest @@ -1,2 +1 @@ -DIST wmtop-0.85.tar.gz 21554 SHA256 4d2de9fc4a372751a45f16bb487d8625d383550a08252fcdcd8f927b291626d0 SHA512 fd41bcb6799d2c24a43ab906f70138984781c1184e83aca68dcaee9af2bd5e49c50c6dbe2775852152c7d459bc30c074ba3d67f499e033da1646e207d6a02830 WHIRLPOOL c1a1cd22edd660b74ffee97859f2b71a96a7b75f9d22f0ff42a1cdca2b58d75b8c75441ba6476a1916c5ecf66e20e438a92c6edc91ae044bac22e993c0e65475 -DIST wmtop-0.9.0.tar.gz 25833 SHA256 b141e608b32c1d58c03c31c18b420d25a490bfe49a63a56cef5b8f86935752de SHA512 f0308b10e94350c51b6782c1399e6583e493b74a261834fd3c8ec75d7c8bbf643a7df5663a8c2645a9167e6718f141ee163039b1f559cbe6c0c154bc1ab1d2d8 WHIRLPOOL 1e2c2b3890c56c3a8afc6de06446bdee9daa48a77b24626550c3a1db2e2c246d830d36083bf3586ba16d4570a409c46e2302ac04ed04b5e7c4ad6367f8bb4988 +DIST wmtop-0.85.tar.gz 21165 BLAKE2B d114391a987395ae2defcfe03bc4dc022b8d9e4163b310cb4294e34097d8b950fff44c09035265ed152a1a86d2aadd67dcca7a50cd1230c0cf5c49d2b2cb49c1 SHA512 0a251b1ae32fe8c9a09ed1aeb19315d2eab42a7b2264d637de57f2ca946af69f68fec43d921a21ea0cb25b5fa6e24206bf1321ce59dd0ed6c187a5327c7ec70a diff --git a/x11-plugins/wmtop/files/wmtop-0.9.0-list.patch b/x11-plugins/wmtop/files/wmtop-0.9.0-list.patch deleted file mode 100644 index e6a77a3faf60..000000000000 --- a/x11-plugins/wmtop/files/wmtop-0.9.0-list.patch +++ /dev/null @@ -1,127 +0,0 @@ -diff -Naur wmgeneral.orig/list.c wmgeneral/list.c ---- wmgeneral.orig/list.c 2016-01-04 13:25:53.717286654 +0100 -+++ wmgeneral/list.c 2016-01-04 13:26:06.948290980 +0100 -@@ -38,7 +38,7 @@ - - /* Return a cons cell produced from (head . tail) */ - --INLINE LinkedList* -+LinkedList* - list_cons(void* head, LinkedList* tail) - { - LinkedList* cell; -@@ -51,7 +51,7 @@ - - /* Return the length of a list, list_length(NULL) returns zero */ - --INLINE int -+int - list_length(LinkedList* list) - { - int i = 0; -@@ -66,7 +66,7 @@ - /* Return the Nth element of LIST, where N count from zero. If N - larger than the list length, NULL is returned */ - --INLINE void* -+void* - list_nth(int index, LinkedList* list) - { - while(index-- != 0) -@@ -81,7 +81,7 @@ - - /* Remove the element at the head by replacing it by its successor */ - --INLINE void -+void - list_remove_head(LinkedList** list) - { - if (!*list) return; -@@ -101,7 +101,7 @@ - - /* Remove the element with `car' set to ELEMENT */ - /* --INLINE void -+void - list_remove_elem(LinkedList** list, void* elem) - { - while (*list) -@@ -112,7 +112,7 @@ - } - }*/ - --INLINE LinkedList * -+LinkedList * - list_remove_elem(LinkedList* list, void* elem) - { - LinkedList *tmp; -@@ -132,7 +132,7 @@ - - /* Return element that has ELEM as car */ - --INLINE LinkedList* -+LinkedList* - list_find(LinkedList* list, void* elem) - { - while(list) -@@ -146,7 +146,7 @@ - - /* Free list (backwards recursive) */ - --INLINE void -+void - list_free(LinkedList* list) - { - if(list) -@@ -158,7 +158,7 @@ - - /* Map FUNCTION over all elements in LIST */ - --INLINE void -+void - list_mapcar(LinkedList* list, void(*function)(void*)) - { - while(list) -diff -Naur wmgeneral.orig/list.h wmgeneral/list.h ---- wmgeneral.orig/list.h 2016-01-04 13:25:53.717286654 +0100 -+++ wmgeneral/list.h 2016-01-04 13:25:56.934287706 +0100 -@@ -29,31 +29,25 @@ - #ifndef __LIST_H_ - #define __LIST_H_ - --#if defined(__GNUC__) && !defined(__STRICT_ANSI__) --# define INLINE inline --#else --# define INLINE --#endif -- - typedef struct LinkedList { - void *head; - struct LinkedList *tail; - } LinkedList; - --INLINE LinkedList* list_cons(void* head, LinkedList* tail); -+LinkedList* list_cons(void* head, LinkedList* tail); - --INLINE int list_length(LinkedList* list); -+int list_length(LinkedList* list); - --INLINE void* list_nth(int index, LinkedList* list); -+void* list_nth(int index, LinkedList* list); - --INLINE void list_remove_head(LinkedList** list); -+void list_remove_head(LinkedList** list); - --INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem); -+LinkedList *list_remove_elem(LinkedList* list, void* elem); - --INLINE void list_mapcar(LinkedList* list, void(*function)(void*)); -+void list_mapcar(LinkedList* list, void(*function)(void*)); - --INLINE LinkedList*list_find(LinkedList* list, void* elem); -+LinkedList*list_find(LinkedList* list, void* elem); - --INLINE void list_free(LinkedList* list); -+void list_free(LinkedList* list); - - #endif diff --git a/x11-plugins/wmtop/files/wmtop-0.9.0-meminfo.patch b/x11-plugins/wmtop/files/wmtop-0.9.0-meminfo.patch deleted file mode 100644 index 541ab6a1d697..000000000000 --- a/x11-plugins/wmtop/files/wmtop-0.9.0-meminfo.patch +++ /dev/null @@ -1,189 +0,0 @@ ---- wmtop.c.orig 2001-01-19 15:41:20.000000000 -0600 -+++ wmtop.c 2012-03-29 22:36:49.906684353 -0500 -@@ -182,12 +182,12 @@ - pid_t pid; - char *name; - float amount; -- int user_time; -- int kernel_time; -- int previous_user_time; -- int previous_kernel_time; -- int vsize; -- int rss; -+ unsigned long user_time; -+ unsigned long kernel_time; -+ unsigned long previous_user_time; -+ unsigned long previous_kernel_time; -+ unsigned long vsize; -+ long rss; - int time_stamp; - int counted; - }; -@@ -236,8 +236,8 @@ - - process->pid = p; - process->time_stamp = 0; -- process->previous_user_time = INT_MAX; -- process->previous_kernel_time = INT_MAX; -+ process->previous_user_time = ULONG_MAX; -+ process->previous_kernel_time = ULONG_MAX; - process->counted = 1; - - /* process_find_name(process);*/ -@@ -256,11 +256,11 @@ - void process_cleanup(void); - void delete_process(struct process *); - inline void draw_processes(void); --int calc_cpu_total(void); --void calc_cpu_each(int); -+unsigned long calc_cpu_total(void); -+void calc_cpu_each(unsigned long total); - #if defined(LINUX) --int calc_mem_total(void); --void calc_mem_each(int); -+unsigned long calc_mem_total(void); -+void calc_mem_each(unsigned long total); - #endif - int process_find_top_three(struct process **); - void draw_bar(int, int, int, int, float, int, int); -@@ -457,13 +457,15 @@ - char line[WMTOP_BUFLENGTH],filename[WMTOP_BUFLENGTH],procname[WMTOP_BUFLENGTH]; - int ps; - struct stat sbuf; -- int user_time,kernel_time; -+ unsigned long user_time,kernel_time; - int rc; - #if defined(LINUX) - char *r,*q; - char deparenthesised_name[WMTOP_BUFLENGTH]; - #endif /* defined(LINUX) */ - #if defined(FREEBSD) -+ /* TODO: needs analysis. Probably needs same data type fix as LINUX (use -+ * long types). Need to check FreeBSD docs and test. -wbk */ - int us,um,ks,km; - #endif /* defined(FREEBSD) */ - -@@ -501,9 +503,10 @@ - - #if defined(LINUX) - /* -- * Extract cpu times from data in /proc filesystem -+ * Extract cpu times from data in /proc filesystem. -+ * For conversion types see man proc(5). - */ -- rc = sscanf(line,"%*s %s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %d %d %*s %*s %*s %*s %*s %*s %*s %d %d", -+ rc = sscanf(line,"%*s %s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %lu %lu %*s %*s %*s %*s %*s %*s %*s %lu %ld", - procname, - &process->user_time,&process->kernel_time, - &process->vsize,&process->rss); -@@ -527,6 +530,9 @@ - /* - * Extract cpu times from data in /proc//stat - * XXX: Process name extractor for FreeBSD is untested right now. -+ * -+ * [TODO: FREEBSD code probably needs similar data type changes to -+ * those made for LINUX above. Need to check docs. -wbk] - */ - rc = sscanf(line,"%s %*s %*s %*s %*s %*s %*s %*s %d,%d %d,%d", - procname, -@@ -540,11 +546,14 @@ - process->kernel_time = ks*1000+km/1000; - #endif /* defined(FREEBSD) */ - -+ /* not portable (especially unsuitable for redistributable executables. -+ * On some systems, getpagesize() is a preprocessor macro). -+ */ - process->rss *= getpagesize(); - -- if (process->previous_user_time==INT_MAX) -+ if (process->previous_user_time==ULONG_MAX) - process->previous_user_time = process->user_time; -- if (process->previous_kernel_time==INT_MAX) -+ if (process->previous_kernel_time==ULONG_MAX) - process->previous_kernel_time = process->kernel_time; - - user_time = process->user_time-process->previous_user_time; -@@ -686,7 +695,7 @@ - void draw_processes() { - int i,n; - struct process *best[3] = { 0, 0, 0 }; -- int total; -+ unsigned long total; - - /* - * Invalidate time stamps -@@ -743,21 +752,21 @@ - /* Calculate cpu total */ - /******************************************/ - --int calc_cpu_total() { -- int total,t; -- static int previous_total = INT_MAX; -+unsigned long calc_cpu_total() { -+ unsigned long total,t; -+ static unsigned long previous_total = ULONG_MAX; - #if defined(LINUX) - int rc; - int ps; - char line[WMTOP_BUFLENGTH]; -- int cpu,nice,system,idle; -+ unsigned long cpu,nice,system,idle; - - ps = open("/proc/stat",O_RDONLY); - rc = read(ps,line,sizeof(line)); - close(ps); - if (rc<0) - return 0; -- sscanf(line,"%*s %d %d %d %d",&cpu,&nice,&system,&idle); -+ sscanf(line,"%*s %lu %lu %lu %lu",&cpu,&nice,&system,&idle); - total = cpu+nice+system+idle; - #endif /* defined(LINUX) */ - -@@ -780,7 +789,7 @@ - /* Calculate each processes cpu */ - /******************************************/ - --void calc_cpu_each(int total) { -+void calc_cpu_each(unsigned long total) { - struct process *p = first_process; - while (p) { - -@@ -798,7 +807,8 @@ - /******************************************/ - - #if defined(LINUX) --int calc_mem_total() { -+/* INT_MAX won't always hold total system RAM, especially on a 64 bit system. */ -+unsigned long calc_mem_total() { - int ps; - char line[512]; - char *ptr; -@@ -810,11 +820,12 @@ - if (rc<0) - return 0; - -- if ((ptr = strstr(line, "Mem:")) == NULL) { -+ if ((ptr = strstr(line, "MemTotal:")) == NULL) { - return 0; - } else { -- ptr += 4; -- return atoi(ptr); -+ ptr += 9; /* move into whitespace */ -+ /* wbk - old Mem: Total was bytes. MemTotal: is KB */ -+ return (unsigned long)atoi(ptr) * 1024; - } - - } -@@ -825,10 +836,10 @@ - /******************************************/ - - #if defined(LINUX) --void calc_mem_each(int total) { -+void calc_mem_each(unsigned long total) { - struct process *p = first_process; - while (p) { -- p->amount = 100*(float)p->rss/total; -+ p->amount = 100*(double)p->rss/total; - p = p->next; - } - } diff --git a/x11-plugins/wmtop/wmtop-0.85.ebuild b/x11-plugins/wmtop/wmtop-0.85.ebuild index 8a3119963afa..5242a13685cc 100644 --- a/x11-plugins/wmtop/wmtop-0.85.ebuild +++ b/x11-plugins/wmtop/wmtop-0.85.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ inherit autotools DESCRIPTION="dockapp for monitoring the top three processes using cpu or memory" HOMEPAGE="http://www.dockapps.net/wmtop" -SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmtop/wmtop-0.9.0-r1.ebuild b/x11-plugins/wmtop/wmtop-0.9.0-r1.ebuild deleted file mode 100644 index 58122706d4df..000000000000 --- a/x11-plugins/wmtop/wmtop-0.9.0-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils multilib toolchain-funcs - -DESCRIPTION="dockapp for monitoring the top three processes using cpu or memory" -HOMEPAGE="http://www.swanson.ukfsn.org/#wmtop" -SRC_URI="http://www.swanson.ukfsn.org/wmdock/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXpm - x11-libs/libXext" -DEPEND="${RDEPEND} - x11-proto/xproto - x11-proto/xextproto" - -src_prepare() { - sed -ie "s/\$(FLAGS) -o wmtop/\$(DEBUG) \$(LDFLAGS) -D\$(OS) -o wmtop/" Makefile || die "sed failed" - epatch "${FILESDIR}"/${P}-meminfo.patch - epatch "${FILESDIR}"/${P}-list.patch -} - -src_compile() { - emake CC="$(tc-getCC)" OPTS="${CFLAGS}" \ - LIBDIR="-L/usr/$(get_libdir)" \ - INCS="-I/usr/include/X11" linux -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - dodoc BUGS CHANGES README TODO -} diff --git a/x11-plugins/wmtz/Manifest b/x11-plugins/wmtz/Manifest index 327baad6d53d..b0df331c1cac 100644 --- a/x11-plugins/wmtz/Manifest +++ b/x11-plugins/wmtz/Manifest @@ -1 +1 @@ -DIST wmtz-0.7.tar.gz 26350 SHA256 cb09e64a9823b3da71e542d7cc66e6cbd0135809bee1e565d18acdcf0565823a SHA512 5de721231c7d7bcccc8a9b962069f4adad85158b39df2e77c6015ed3f24d4f8e43c90f91645e186d7f7c656bc6fb937b435925caff4e55abcfa0a8b0a9e75da0 WHIRLPOOL b2a1660f024b8ea2a50e1c0c2bce614aee4a0b1a85f36be7c9e6c9c6edecd361307577c95c7ba7b437319225aea6d0d46148b56a9ec33c52e4f1dd51cb72024c +DIST wmtz-0.7.tar.gz 26350 BLAKE2B c0cad5c7bbca9ddfb8168ef360385305e99298a076e5c317504f646dbf372e1b3af704960a0d3b8e528e3cf97414cc8e3b2cff3d4c37739c81744254411b03f3 SHA512 5de721231c7d7bcccc8a9b962069f4adad85158b39df2e77c6015ed3f24d4f8e43c90f91645e186d7f7c656bc6fb937b435925caff4e55abcfa0a8b0a9e75da0 diff --git a/x11-plugins/wmtz/wmtz-0.7.ebuild b/x11-plugins/wmtz/wmtz-0.7.ebuild index bbda82fcb2df..e7714e1ab041 100644 --- a/x11-plugins/wmtz/wmtz-0.7.ebuild +++ b/x11-plugins/wmtz/wmtz-0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=3 @@ -6,8 +6,8 @@ EAPI=3 inherit eutils multilib toolchain-funcs DESCRIPTION="dockapp that shows the time in multiple timezones" -HOMEPAGE="https://www.gentoo.org/" -SRC_URI="mirror://gentoo/${P}.tar.gz" +HOMEPAGE="http://www.dockapps.net/wmtz" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/x11-plugins/wmwifi/Manifest b/x11-plugins/wmwifi/Manifest index 797f686fd756..2323fb0b33f7 100644 --- a/x11-plugins/wmwifi/Manifest +++ b/x11-plugins/wmwifi/Manifest @@ -1 +1 @@ -DIST wmwifi-0.6.tar.gz 150482 SHA256 b01f62f05aae476353e12cb48f9f914a40df7b00285fdd4349ca314b5a019f54 SHA512 ae0a66b68f991907b7e8434a872cc8b1fd9219d633260183a6917e1d34dd4ddc7be91dd71b6cb0ed20781ca4eaa6a0cfc2adcb7a838b734050264a5fae4cadd0 WHIRLPOOL e28949d90e7b1633f5d9be4adc32224458809de9fe8b1458c427d3428b7dca74541d339e58a7b2ca4d517bdf07d1cbac7c892c7a659e8aa46ab571f9059f11f9 +DIST wmwifi-0.6.tar.gz 150482 BLAKE2B 213f56897527b57ea2fd6123d9147c8d4547323104e940b632c2290fc6941478a9ee5d0aefbe5a06e2b20bd524b84eebd9d75bedc83054066975459b770fbc56 SHA512 ae0a66b68f991907b7e8434a872cc8b1fd9219d633260183a6917e1d34dd4ddc7be91dd71b6cb0ed20781ca4eaa6a0cfc2adcb7a838b734050264a5fae4cadd0 diff --git a/x11-plugins/wmwifi/wmwifi-0.6.ebuild b/x11-plugins/wmwifi/wmwifi-0.6.ebuild index fc5c69c35c0b..0488e9ee47cb 100644 --- a/x11-plugins/wmwifi/wmwifi-0.6.ebuild +++ b/x11-plugins/wmwifi/wmwifi-0.6.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -IUSE="" -HOMEPAGE="http://wmwifi.digitalssg.net" DESCRIPTION="wireless network interface monitor dockapp" -SRC_URI="http://digitalssg.net/debian/${P}.tar.gz" +HOMEPAGE="http://www.dockapps.net/wmwifi" +SRC_URI="http://www.dockapps.net/download/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 ppc x86" +IUSE="" RDEPEND="x11-libs/libX11 x11-libs/libXt diff --git a/x11-proto/Manifest.gz b/x11-proto/Manifest.gz new file mode 100644 index 000000000000..77585d423765 Binary files /dev/null and b/x11-proto/Manifest.gz differ diff --git a/x11-terms/Manifest.gz b/x11-terms/Manifest.gz new file mode 100644 index 000000000000..25f343413a77 Binary files /dev/null and b/x11-terms/Manifest.gz differ diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz new file mode 100644 index 000000000000..d09d217a424e Binary files /dev/null and b/x11-themes/Manifest.gz differ diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz new file mode 100644 index 000000000000..8f7f8cfb0950 Binary files /dev/null and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/lumina/Manifest b/x11-wm/lumina/Manifest index 1b2ad87c4fc3..4a69ab661798 100644 --- a/x11-wm/lumina/Manifest +++ b/x11-wm/lumina/Manifest @@ -1,2 +1,3 @@ DIST lumina-1.2.0_p1.tar.gz 56032695 SHA256 f8366212fe3f29039c5febef5b4de97a92eb72483e2d97f5c086edf8fc65bd49 SHA512 8490e2b0f2fa08b2d63ec688f9993771ea935129a2947ef7bfa1874424cbede6d8877083ce90658c283858e67397383b5bab536388e9222b440015ebdf8b2919 WHIRLPOOL 6a7fc95022c4f9cc372c4fafc87cbda70a5f3ebcb52dc1f96516460df928e6e2f02ea380104bd7df9f7df33b1d098b24d8e73ec7ffe77e82a633c920634f9c70 -DIST lumina-1.3.0_p1.tar.gz 86451718 SHA256 76f2b6d45d37d154426cb100d46e3ca4e5e7eca51a7f9f9e442261bfe61b1c31 SHA512 93fb195f26984a2ba6e62dbe1ea619e4ab8e936d1cf1d335db8a7e51058c9be8d3e389146259f8229fb5dc6477610dcc2e1278c4e2a348f27904a318ba095707 WHIRLPOOL 6f3af86b66adc66a1b76732e23189946ad35e4897e4bd00912742e3d972bcf0d816b60055098c8ac1104e7e20ce938e7e4727c7501b5e7c92dcb49794c1bb38e +DIST lumina-1.3.0_p1.tar.gz 86451718 BLAKE2B 7834fad1541144524fc44d5e2cc1af21e82878c05f0cc2da4cf90f8f7e51614f535bab1bcb81c6d5929e14b2fa7ba7df8e66e53a9a81b55c973511f3b3e7cc17 SHA512 93fb195f26984a2ba6e62dbe1ea619e4ab8e936d1cf1d335db8a7e51058c9be8d3e389146259f8229fb5dc6477610dcc2e1278c4e2a348f27904a318ba095707 +DIST lumina-1.4.0.tar.gz 22489118 BLAKE2B 547d062826a6b253cb361db3fb030c182485d335dea3baff7e30f1331c67fbffca619dbee4688f79ac04ff04e5ef2ceeae0c1146d18730a25b7d01125bc62fd3 SHA512 7243fc366a851832d9431df8ae8cac0f70a7bc92bed1282e78e5775c6593d799a07e2cac7042d770c8d6c4758bb142523027d67227a2282b47ed945b0e617cb0 diff --git a/x11-wm/lumina/lumina-1.4.0.ebuild b/x11-wm/lumina/lumina-1.4.0.ebuild new file mode 100644 index 000000000000..e77758c2ea9f --- /dev/null +++ b/x11-wm/lumina/lumina-1.4.0.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit qmake-utils +DESCRIPTION="Lumina desktop environment" +HOMEPAGE="https://lumina-desktop.org/" +SRC_URI="https://github.com/trueos/${PN}/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="desktop-utils" + +COMMON_DEPEND="dev-qt/qtcore:5 + dev-qt/qtconcurrent:5 + dev-qt/qtmultimedia:5[widgets] + dev-qt/qtsvg:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + dev-qt/qtgui:5 + dev-qt/qtdeclarative:5 + x11-libs/libxcb:0 + x11-libs/xcb-util + x11-libs/xcb-util-image + x11-libs/xcb-util-wm + desktop-utils? ( app-text/poppler[qt5] )" + +DEPEND="$COMMON_DEPEND + dev-qt/linguist-tools:5" + +RDEPEND="$COMMON_DEPEND + sys-fs/inotify-tools + x11-misc/numlockx + x11-wm/fluxbox + || ( x11-apps/xbacklight + sys-power/acpilight ) + media-sound/alsa-utils + sys-power/acpi + app-admin/sysstat" + +S="${WORKDIR}/${P/_/-}" + +PATCHES=( + "${FILESDIR}/1.2.0-desktop-files.patch" + "${FILESDIR}/1.3.0-OS-detect.patch" +) + +src_prepare(){ + default + + if use !desktop-utils ; then + rm -rf src-qt5/desktop-utils || die + sed -e "/desktop-utils/d" -i src-qt5/src-qt5.pro || die + fi +} + +src_configure(){ + eqmake5 PREFIX="${EPREFIX}/usr" LIBPREFIX="${EPREFIX}/usr/$(get_libdir)" \ + DESTDIR="${D}" CONFIG+=WITH_I18N QMAKE_CFLAGS_ISYSTEM= +} + +src_install(){ + # A hack to avoid sandbox violation and install liblthemeengine*.so to the correct places + emake install INSTALL_ROOT="${D}" + rm "${ED%/}"/${PN}-* "${ED%/}"/start-${PN}-desktop "${ED%/}"/liblthemeengine*.so "${ED%/}"/lthemeengine || die + mv "${D}/${D}/etc" "${D}/etc" || die + mv "${D}/${D}/usr/bin" "${D}/usr/bin" || die + mv "${D}/${D}/usr/share" "${D}/usr/share" || die + rm -rf "${D}/var" || die + mv "${ED%/}"/etc/luminaDesktop.conf{.dist,} || die +} diff --git a/x11-wm/lumina/lumina-9999.ebuild b/x11-wm/lumina/lumina-9999.ebuild index 11c8d155760b..276d1056a915 100644 --- a/x11-wm/lumina/lumina-9999.ebuild +++ b/x11-wm/lumina/lumina-9999.ebuild @@ -6,7 +6,7 @@ EAPI=6 inherit git-r3 qmake-utils DESCRIPTION="Lumina desktop environment" HOMEPAGE="https://lumina-desktop.org/" -EGIT_REPO_URI="https://github.com/pcbsd/lumina" +EGIT_REPO_URI="https://github.com/trueos/lumina" LICENSE="BSD" SLOT="0" diff --git a/xfce-base/Manifest.gz b/xfce-base/Manifest.gz new file mode 100644 index 000000000000..251dc366e0f2 Binary files /dev/null and b/xfce-base/Manifest.gz differ diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz new file mode 100644 index 000000000000..8ee8765825e3 Binary files /dev/null and b/xfce-extra/Manifest.gz differ